/* Poolee Store Custom Premium Stylesheet - Exact Alignment */

:root {
    --poolee-burgundy: #B91C1C;
    --poolee-burgundy-hover: #991B1B;
    --poolee-burgundy-light: #FFF5F5;
    --poolee-burgundy-border: #FEE2E2;
    --poolee-dark: #22252A;
    --poolee-dark-light: #2D3238;
    --poolee-gray: #718096;
    --poolee-light-gray: #F7F7F7;
    --poolee-border: #E2E8F0;
    --poolee-rating: #FFC000;
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-secondary);
    color: var(--poolee-dark);
    background-color: #FFF;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: var(--font-primary);
    font-weight: 700;
}

/* Top Utility Bar */
.top-bar {
    background-color: var(--poolee-burgundy);
    color: #FFF;
    font-size: 0.8rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.top-bar a {
    color: #FFF;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.top-bar a:hover {
    color: rgba(255, 255, 255, 0.8);
}
.vertical-divider {
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.35);
    margin: 0 0.5rem;
}

/* Main Navigation Header */
.main-header {
    background-color: var(--poolee-burgundy);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.logo-text {
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #FFF;
    text-decoration: none;
    display: inline-block;
}
.search-wrapper .form-control {
    border-radius: 4px 0 0 4px;
    border: none;
    padding: 0.75rem 1.2rem;
    font-size: 0.95rem;
}
.search-wrapper .btn-search {
    background-color: #1E2022;
    color: #FFF;
    border-radius: 0 4px 4px 0;
    border: none;
    padding: 0 1.8rem;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}
.search-wrapper .btn-search:hover {
    background-color: #000;
}
.header-actions .action-item {
    color: #FFF;
    position: relative;
    font-size: 1.4rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.header-actions .badge-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: #FFF;
    color: var(--poolee-burgundy);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 460px;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    min-height: 460px;
    display: flex !important;
    align-items: center;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(185, 28, 28, 0.95) 0%, rgba(20, 4, 4, 0.8) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    color: #FFF;
}
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
}
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: #FFF;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.hero-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #FFF;
}
.hero-arrow.prev { left: 30px; }
.hero-arrow.next { right: 30px; }

/* Hero Indicator Dots */
.hero-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #FFF;
    border: none;
    cursor: pointer;
    opacity: 0.9;
    transition: var(--transition-smooth);
}
.hero-indicator-dot.active {
    background-color: var(--poolee-burgundy) !important;
    width: 8px;
    border-radius: 50%;
}

/* Hero Badge Bar */
.hero-badge-bar {
    background-color: var(--poolee-burgundy);
    color: #FFF;
    padding: 0.95rem 0;
    font-size: 0.88rem;
    font-weight: 500;
    font-family: var(--font-secondary);
}
.hero-badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.35);
}
.hero-badge-item:last-child {
    border-right: none;
}
.hero-badge-item i {
    font-size: 1.1rem;
}

/* Trusted Section */
.trusted-section {
    padding: 5rem 0;
    background-color: #FFF;
}
.trusted-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--poolee-dark);
    line-height: 1.1;
    letter-spacing: -1px;
}
.trusted-text {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.7;
}
.teaser-card {
    border: 1px solid var(--poolee-border);
    border-radius: 12px;
    background-color: #FFF;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.teaser-close-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    background-color: #000;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    font-size: 1.1rem;
    cursor: pointer;
}
.teaser-logo-top-right {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--poolee-burgundy);
    z-index: 5;
    letter-spacing: 0.5px;
}
.teaser-bullets li {
    font-size: 0.85rem;
    color: #4A5568;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.teaser-bullets li i {
    font-weight: 900;
}
.teaser-img-top-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 110px;
    background-image: url('https://images.unsplash.com/photo-1576243345690-4e4b79b63288?auto=format&fit=crop&q=80&w=350');
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 16px;
    z-index: 1;
}
.teaser-watch-graphic {
    position: absolute;
    bottom: -15px;
    right: 15px;
    z-index: 3;
}
.feature-box-card {
    background-color: #FFF;
    border: 1px solid var(--poolee-border);
    border-radius: 8px;
    padding: 2rem 1.75rem;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}
.feature-box-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.feature-icon-wrapper {
    color: var(--poolee-burgundy);
    font-size: 2rem;
}

/* Product Card Grid */
.product-card {
    border: 1px solid var(--poolee-border);
    border-radius: 12px;
    background-color: #FFF;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-img-wrapper {
    padding: 2.5rem 1.5rem;
    background-color: var(--poolee-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
}
.product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.product-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--poolee-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    min-height: 48px;
    transition: var(--transition-smooth);
}
.product-title-link:hover .product-title {
    color: var(--poolee-burgundy) !important;
}
.product-img-link {
    transition: var(--transition-smooth);
}
.product-img-link:hover {
    opacity: 0.9;
}
.rating-stars {
    color: var(--poolee-rating);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
.price-container {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 1.25rem;
}
.price-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--poolee-burgundy);
}
.price-old {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--poolee-gray);
}
.btn-buy-now {
    background-color: var(--poolee-burgundy);
    color: #FFF;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    padding: 0.6rem 1.25rem;
    transition: var(--transition-smooth);
}
.btn-buy-now:hover {
    background-color: var(--poolee-burgundy-hover);
}

/* Testimonials exact red-bottom layout */
.testimonials-section {
    padding: 5rem 0;
    background-color: #FFF;
}
.testimonials-scroll-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none;  /* Hide scrollbar IE/Edge */
}
.testimonials-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari/Opera */
}
.testimonial-card-item {
    flex: 0 0 320px;
    max-width: 320px;
    scroll-snap-align: start;
}
.testimonial-card {
    background-color: #FFF;
    border: 1px solid var(--poolee-border);
    border-top: 3px solid var(--poolee-burgundy); /* Top red accent line */
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.testimonial-rating {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    color: var(--poolee-burgundy);
    font-size: 0.9rem;
}
.testimonial-text {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
    flex-grow: 1;
}
.testimonial-footer {
    background-color: var(--poolee-burgundy);
    color: #FFF;
    padding: 1.25rem 1.5rem;
}
.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}
.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    object-fit: cover;
}
.user-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}
.user-role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

.testimonial-dots .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #E2E8F0;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.testimonial-dots .dot.active {
    background-color: var(--poolee-burgundy);
    width: 24px;
    border-radius: 4px;
}

/* FAQ Block styling */
.faq-card {
    background-color: #FFF; /* Pure white container matching mockup */
    border-radius: 12px;
    border: 1px solid var(--poolee-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    background: none;
}
.faq-accordion .accordion-button {
    background-color: #FFF;
    color: var(--poolee-dark);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--poolee-border);
    border-radius: 8px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01);
}
.faq-accordion .accordion-button::after {
    display: none !important; /* Remove standard chevrons */
}
.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #FFF;
    color: var(--poolee-dark);
    box-shadow: none;
}
.faq-icon-badge {
    background-color: #000;
    color: #FFF;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    transition: var(--transition-smooth);
}
.faq-accordion .accordion-button:not(.collapsed) .faq-icon-badge {
    background-color: #000;
    transform: rotate(45deg); /* Plus sign becomes cancellation 'x' */
}
.faq-accordion .accordion-body {
    border: 1px solid var(--poolee-border);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 1.25rem;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #4A5568;
    background-color: #FFF;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
}
.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--poolee-border);
}

/* SEO Description Section */
.seo-section {
    padding: 4rem 0;
    border-top: 1px solid var(--poolee-border);
}
.seo-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.3;
}
.seo-subtitle {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2D3748;
}
.seo-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4A5568;
}
.btn-read-more {
    color: var(--poolee-burgundy);
    text-decoration: underline;
    font-weight: 700;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

/* Footer Section */
.main-footer {
    background-color: #1A1D20;
    color: #FFF;
    padding: 4rem 0 2rem 0;
}
.footer-contact-block {
    background-color: #23272B;
    border-radius: 8px;
    padding: 1.75rem;
    height: 100%;
}
.btn-whatsapp {
    background-color: #25D366;
    color: #FFF;
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    color: #FFF;
}
.footer-divider {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 2.5rem 0 1.5rem 0;
}

/* Shopping Cart Sidebar Drawer */
.cart-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
}
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: #FFF;
    z-index: 1050;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.open {
    right: 0;
}
.cart-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--poolee-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--poolee-burgundy-light);
}
.cart-body {
    padding: 1.5rem;
    flex-grow: 1;
    overflow-y: auto;
}
.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--poolee-border);
    background-color: var(--poolee-light-gray);
}
.cart-item {
    display: flex;
    gap: 12px;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--poolee-border);
}
.cart-item-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background-color: var(--poolee-light-gray);
    border-radius: 4px;
}
.cart-item-details {
    flex-grow: 1;
}
.cart-item-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.cart-item-price {
    font-size: 0.9rem;
    color: var(--poolee-burgundy);
    font-weight: 700;
}
.cart-qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid var(--poolee-border);
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.cart-qty-btn:hover {
    background-color: var(--poolee-burgundy);
    color: #FFF;
    border-color: var(--poolee-burgundy);
}

/* Toast Notifications */
.poolee-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1060;
    background-color: var(--poolee-dark);
    color: #FFF;
    border-left: 4px solid var(--poolee-burgundy);
    border-radius: 4px;
    padding: 1rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: none;
    animation: slideUp 0.3s ease-out;
}
@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
