/* ==========================================================================
   Design System & Variable Definitions (Casa da Limpeza Palette)
   ========================================================================== */
:root {
    --primary-color: #12354E;      /* Deep Navy Slate Blue */
    --secondary-color: #3797E1;    /* Bright Sky Blue */
    --accent-color: #56ADF0;       /* Light Blue Links/Accents */
    
    --bg-color: #F7F9FB;           /* Light Soft Grayish Blue Background */
    --card-bg: #FFFFFF;            /* Pure White */
    --border-color: #E6ECF0;       /* Border Grey-Blue */
    
    --text-dark: #143349;          /* Near Black Navy for Headings */
    --text-main: #3e505c;          /* Muted Grayish Navy for Body Text */
    --text-light: #8899a6;         /* Light Gray for Muted Elements */
    
    --whatsapp-green: #25D366;     /* Official WhatsApp Green */
    --whatsapp-hover: #20BA5A;
    --whatsapp-dark: #128C7E;
    
    --shadow-sm: 0 2px 4px rgba(18, 53, 78, 0.05);
    --shadow-md: 0 8px 16px rgba(18, 53, 78, 0.08);
    --shadow-lg: 0 16px 32px rgba(18, 53, 78, 0.12);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Reset & Global Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input {
    font-family: inherit;
    outline: none;
    border: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: #CCD4DB;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

/* ==========================================================================
   Header Component
   ========================================================================== */
.main-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    height: 120px;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-area {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.main-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.main-logo:hover {
    transform: scale(1.02);
}

/* Store Info Box on Header Right - Styled in solid Black as requested */
.store-info-box {
    display: flex;
    flex-direction: column;
    text-align: right;
    color: #000000;
    font-size: 12px;
    line-height: 1.4;
    padding: 4px 12px;
    border-right: 2px solid rgba(0, 0, 0, 0.2);
    margin-right: -12px;
}

.store-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2px;
    color: #000000;
}

.store-detail {
    font-weight: 600;
    color: #000000;
}

.store-detail a {
    color: #000000;
}

.store-detail a:hover {
    color: var(--secondary-color);
}

.store-detail i, .whatsapp-detail i {
    margin-right: 4px;
    color: #000000 !important;
}

.whatsapp-detail {
    font-weight: 700;
    color: #000000;
}

/* Header Search */
.search-bar-container {
    flex-grow: 1;
    max-width: 600px;
}

/* Search Box with black border as requested */
.search-box {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    border: 2px solid #000000;
    border-radius: var(--radius-lg);
    padding: 0 16px;
    height: 46px;
    width: 100%;
    transition: var(--transition-fast);
}

.search-box:focus-within {
    border-color: var(--secondary-color);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(55, 151, 225, 0.15);
}

.search-icon {
    color: #000000;
    margin-right: 12px;
    font-size: 16px;
}

.search-box input {
    background: transparent;
    border: none;
    width: 100%;
    font-size: 15px;
    color: #000000;
    font-weight: 500;
}

.search-box input::placeholder {
    color: #555555;
}

.clear-search-btn {
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 50%;
}

.clear-search-btn:hover {
    color: var(--text-dark);
    background-color: rgba(0, 0, 0, 0.05);
}

/* Contact Area */
.contact-area {
    display: none; /* Removed header button */
}

/* Mobile Toggle */
.mobile-menu-toggle {
    background: transparent;
    color: var(--text-dark);
    font-size: 22px;
    cursor: pointer;
    display: none;
    padding: 8px;
}

/* ==========================================================================
   Banner Slider Component
   ========================================================================== */
.banner-slider-wrapper {
    margin-top: 120px; /* Clear the header height */
    padding: 24px 0;
    width: 100%;
    /* Gradient fading from dark navy at sides to transparent in the center with bg texture tiled */
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        rgba(18, 53, 78, 0.95) 8%, 
        rgba(247, 249, 251, 0) 25%, 
        rgba(247, 249, 251, 0) 75%, 
        rgba(18, 53, 78, 0.95) 92%, 
        var(--primary-color) 100%
    ), url(images/bg.jpg) repeat-x;
    box-shadow: inset 0 8px 16px rgba(18, 53, 78, 0.08), inset 0 -8px 16px rgba(18, 53, 78, 0.08);
}

.banner-slider-container {
    max-width: 710px;
    height: 342px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background-color: var(--primary-color);
    color: var(--card-bg);
    box-shadow: var(--shadow-md);
}

.prev-btn {
    left: 16px;
}

.next-btn {
    right: 16px;
}

/* Navigation Indicator Dots */
.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background-color: var(--card-bg);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   Layout Area
   ========================================================================== */
.layout-container {
    max-width: 1600px;
    margin: 0 auto; /* Floats naturally under the banner slider */
    min-height: calc(100vh - 180px);
    display: flex;
    padding: 24px;
    gap: 24px;
}

/* ==========================================================================
   Sidebar Navigation Accordion
   ========================================================================== */
.sidebar {
    width: 300px;
    flex-shrink: 0;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 144px; /* header (120px) + padding (24px) */
    box-shadow: var(--shadow-sm);
    max-height: calc(100vh - 170px);
    overflow-y: auto;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1.5px solid var(--border-color);
}

.sidebar-header h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
}

.close-menu-btn {
    display: none;
}

/* Categories List Styling */
.categories-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    background: transparent;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.category-item:hover {
    background-color: var(--bg-color);
    color: var(--primary-color);
}

.category-item.active-category {
    background-color: rgba(55, 151, 225, 0.08);
    color: var(--primary-color);
    font-weight: 600;
}

.cat-icon {
    font-size: 16px;
    width: 24px;
    color: var(--secondary-color);
}

/* Accordion Group for Category with Subcategories */
.category-group {
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: transparent;
    transition: var(--transition-fast);
}

.category-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.category-group-header:hover {
    background-color: var(--bg-color);
    color: var(--primary-color);
}

.category-group.active-group .category-group-header {
    background-color: rgba(18, 53, 78, 0.03);
    color: var(--primary-color);
    font-weight: 600;
}

.category-title {
    display: flex;
    align-items: center;
}

.chevron-icon {
    font-size: 11px;
    color: var(--text-light);
    transition: transform var(--transition-fast);
}

.category-group.active-group .chevron-icon {
    transform: rotate(90deg);
}

/* Subcategories Panel */
.subcategories-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
    padding-left: 36px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-left: 1.5px solid var(--border-color);
    margin-left: 25px;
    margin-bottom: 4px;
}

.category-group.active-group .subcategories-list {
    max-height: 500px; /* high value to allow expansion */
}

.subcategory-item {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    font-size: 13px;
    padding: 8px 12px;
    color: var(--text-main);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.subcategory-item:hover {
    color: var(--secondary-color);
    background-color: var(--bg-color);
}

.subcategory-item.active-subcat {
    color: var(--secondary-color);
    font-weight: 600;
}

/* ==========================================================================
   Main Content Panel
   ========================================================================== */
.content-panel {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Breadcrumbs & Result Count Header */
/* Brand Distributor Bar (Blue bar above content-header) */
.brand-distributor-bar {
    background: linear-gradient(90deg, #12354e, #0e293c);
    border: 1px solid #1c4b6e;
    border-radius: var(--radius-lg);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: var(--shadow-md);
    min-height: 80px;
    height: auto;
    overflow: hidden;
    gap: 24px;
    margin-bottom: 8px;
}

.distributor-label {
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.distributor-brands {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    flex-grow: 1;
    justify-content: center;
}

.distributor-brand-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
    filter: brightness(1) contrast(1.1);
}

.distributor-brand-img:hover {
    transform: scale(1.08);
}

/* Original Breadcrumbs & Result Count Header (White/Grey bar) */
.content-header {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

.breadcrumb .separator {
    font-size: 10px;
    color: var(--text-light);
}

.breadcrumb span.active {
    color: var(--primary-color);
    font-weight: 600;
}

.results-count {
    font-size: 13px;
    color: var(--text-main);
    font-family: inherit;
}

.results-count strong {
    color: var(--primary-color);
    font-size: inherit;
    font-weight: 700;
}

/* ==========================================================================
   Products Grid & Cards
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(55, 151, 225, 0.3);
}

/* Image Container */
.product-image-container {
    width: 100%;
    height: 220px;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.product-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform var(--transition-smooth);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Loading Skeleton or Fallback Placeholder */
.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    gap: 12px;
    font-size: 14px;
}

.image-placeholder i {
    font-size: 48px;
    color: #CCD4DB;
}

/* Card Content Info */
.product-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    gap: 16px;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px; /* Fixed height for 2 lines */
}

/* Footer Section of Product Box */
.product-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.order-only-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.order-only-text i {
    color: var(--secondary-color);
}

.product-whatsapp-btn {
    background-color: var(--whatsapp-green);
    color: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
}

.product-whatsapp-btn:hover {
    background-color: var(--whatsapp-hover);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.product-whatsapp-btn i {
    font-size: 16px;
}

/* ==========================================================================
   Empty & Error States
   ========================================================================== */
.empty-state {
    text-align: center;
    padding: 60px 24px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.empty-icon {
    font-size: 56px;
    color: var(--text-light);
}

.empty-state h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    font-size: 20px;
}

.empty-state p {
    color: var(--text-light);
    font-size: 14px;
    max-width: 400px;
}

.reset-search-btn {
    background-color: var(--primary-color);
    color: var(--card-bg);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 8px;
}

.reset-search-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
}

/* ==========================================================================
   Floating Widgets & Footer
   ========================================================================== */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: var(--whatsapp-green);
    color: var(--card-bg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg), 0 0 0 0 rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-fast);
    animation: pulse 2s infinite;
}

.floating-whatsapp-btn:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.08);
}

@keyframes pulse {
    0% {
        box-shadow: var(--shadow-lg), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: var(--shadow-lg), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: var(--shadow-lg), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.main-footer {
    background-color: var(--primary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 24px;
    margin-top: 48px;
    box-shadow: 0 -8px 24px rgba(18, 53, 78, 0.15);
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.footer-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

.footer-copyright {
    font-size: 13px;
    color: #CCD4DB;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.designer-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #CCD4DB;
}

.designer-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.designer-logo:hover {
    transform: scale(1.05);
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 992px) {
    .header-container {
        position: relative;
        justify-content: center;
    }
    
    .sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        width: 280px;
        height: 100vh;
        max-height: 100vh;
        z-index: 2000;
        border-radius: 0;
        background-color: var(--card-bg);
        transition: left var(--transition-smooth);
    }
    
    .sidebar.open {
        left: 0;
    }
    
    .close-menu-btn {
        display: flex;
        background: transparent;
        color: var(--text-dark);
        font-size: 20px;
        cursor: pointer;
        padding: 4px;
    }
    
    .mobile-menu-toggle {
        display: block;
        color: #000000;
        position: absolute;
        left: 24px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
    
    .logo-area {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .layout-container {
        padding: 16px;
        margin-top: 24px; /* Flows naturally after banner wrapper */
    }

    .store-info-box {
        display: none; /* Hide store text info box on mobile/tablet to save space */
    }
    
    .main-logo {
        height: 70px; /* Make it slightly smaller but readable */
    }
    
    .main-header {
        height: 100px;
    }
    
    .banner-slider-wrapper {
        margin-top: 100px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-menu-toggle {
        position: absolute;
        left: 16px;
        top: 28px; /* Centered vertically relative to the centered logo */
        transform: translateY(-50%);
    }
    
    .logo-area {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 4px;
    }
    
    .main-logo {
        height: 55px;
    }
    
    .search-bar-container {
        width: 100%;
        max-width: 100%;
        margin-top: 4px;
    }
    
    .main-header {
        height: auto;
        padding: 10px 0;
    }
    
    .banner-slider-wrapper {
        margin-top: 155px; /* Clear wrapped mobile header height and leave space */
        padding: 12px 0;
    }
    
    .banner-slider-container {
        height: auto;
        aspect-ratio: 710/342; /* Preserve image aspect ratio */
    }
    
    .layout-container {
        margin-top: 12px; /* Flows naturally */
    }
    
    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 16px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-left {
        text-align: center;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card {
        border-radius: var(--radius-md);
    }
    
    .product-image-container {
        height: 140px;
    }
    
    .product-info {
        padding: 10px;
        gap: 8px;
    }
    
    .product-title {
        font-size: 13px;
        height: 36px;
        line-height: 1.4;
    }
    
    .product-footer {
        gap: 4px;
    }
    
    .order-only-text {
        font-size: 9px;
    }
    
    .product-whatsapp-btn {
        font-size: 11px;
        padding: 8px;
        border-radius: var(--radius-sm);
        gap: 4px;
    }
}

/* Sidebar Backdrop Blur on Mobile overlay */
.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(18, 53, 78, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1999;
    display: none;
}
.sidebar-backdrop.show {
    display: block;
}

/* ==========================================================================
   Marcas Section (Marquee)
   ========================================================================== */
.brands-section {
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 24px;
    text-align: center;
    overflow: hidden;
}

.brands-title {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brands-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.brands-slider {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scroll-brands 25s linear infinite;
}

.brands-slider:hover {
    animation-play-state: paused;
}

.brand-logo-item {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--text-light);
    opacity: 0.7;
    transition: var(--transition-smooth);
    white-space: nowrap;
    user-select: none;
    cursor: default;
    padding: 12px 28px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: var(--bg-color);
    box-shadow: var(--shadow-sm);
}

.brand-logo-item:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-page-wrapper {
    max-width: 1200px;
    margin: 160px auto 60px auto;
    padding: 0 24px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 48px;
    border: 1px solid var(--border-color);
}

.contact-info-col h2, .contact-form-col h2 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-info-col p {
    color: var(--text-main);
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-item i {
    font-size: 20px;
    color: var(--secondary-color);
    margin-top: 4px;
}

.contact-detail-content h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-detail-content p, .contact-detail-content a {
    color: var(--text-main);
    font-size: 15px;
}

.contact-detail-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 250px;
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.form-group input, .form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--secondary-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(55, 151, 225, 0.15);
}

.btn-submit-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.btn-submit-contact:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 32px;
    }
    
    .contact-page-wrapper {
        margin-top: 140px;
    }
}

