/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Variables */
    --primary-blue: #003399;
    --primary-purple: #6b46c1;
    --accent-purple: #9333ea;
    --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-full {
    width: 100%;
    margin: 0;

}

/* ============================================
   AGE VERIFICATION MODAL
   ============================================ */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-modal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.age-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
}

.age-modal-content {
    position: relative;
    background: #0d0b14;
    background-image:
        radial-gradient(circle at center, rgba(100, 70, 200, 0.45) 0%, transparent 70%),
        repeating-radial-gradient(circle at center, transparent 0, transparent 4px, rgba(0, 0, 0, 0.5) 5px, rgba(0, 0, 0, 0.5) 6px);
    border-radius: 40px;
    padding: 70px 60px;
    max-width: 800px;
    width: 92%;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(40px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.age-modal-content h2 {
    color: var(--text-light);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.age-modal-content p {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 45px;
    line-height: 1.5;
    opacity: 0.9;
}

.age-modal-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-modal-buttons button {
    padding: 18px 45px;
    font-size: 22px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    min-width: 260px;
}

.btn-yes {
    background: var(--text-light);
    color: #234195;
}

.btn-yes:hover {
    transform: translateY(-3px);
    background: #f0f0f0;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-no {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-no:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
/* ============================================
   HEADER & NAVIGATION (IMAGE DESIGN)
   ============================================ */
.header {
    background: transparent;
    position: absolute;
    top: 90px;
    /* Shifted down for announcement bar + utility bar */
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.sticky {
    position: fixed;
    top: 0;
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header.sticky .nav-container {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.header.sticky .navbar-inner {
    background: transparent;
    padding: 5px 20px;
}

/* Announcement Bar Styles */
.announcement-bar {
    background: #000;
    color: #fff;
    height: 40px;
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2001;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 13s linear infinite;
}

.marquee-item {
    flex-shrink: 0;
    padding: 0 60px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

.marquee-item a {
    width: 600px;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    margin-left: 10px;
    line-height: 1.6;
    letter-spacing: .02em;

}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Utility Bar Styles (from Image) */
.utility-bar {
    color: #fff;
    height: 50px;
    width: 100%;
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 2000;

}

.utility-container {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.welcome-text {
    font-size: 16px;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.95;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.utility-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
}

.header-search input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 6px 35px 6px 12px;
    color: #fff;
    font-size: 13px;
    width: 220px;
    transition: all 0.3s ease;
}

.header-search input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #0ff0fc;
    outline: none;
    width: 260px;
}

.header-search button {
    position: absolute;
    right: 8px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.header-search button:hover {
    color: #fff;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #234195;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-selector:hover {
    background: #f0f0f0;
}

.flag-icon {
    font-size: 16px;
}

.chevron {
    margin-left: 2px;
    opacity: 0.7;
}

@media screen and (max-width: 1024px) {
    .utility-bar {
        display: none;
    }

    .header {
        top: 40px;
    }
}

.nav-container {
    max-width: 1440px !important;
    margin: 0 auto;
    padding: 7px;
    position: relative;
    border-radius: 15px;
    background: linear-gradient(90deg, #26439a 10%, #fbed00, #4968b1, #72beac, #ffaca6 90%);
    box-shadow: 4px 4px 4px #00000040;
}

.navbar-inner {
    background: var(--bg-white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 30px;
    position: relative;
}

.logo-img {
    height: 100px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.nav-menu {
    max-width: 1090px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: space-between;
    /* Spread items across */
    padding: 0 20px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 15px;
    align-items: center;
    justify-content: center;
    /* Center all links and the button */
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #234195;
    font-weight: 700;
    font-size: 14px;
    font-style: italic;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: -0.2px;
    padding: 10px;
}

.nav-links li a:hover {
    color: var(--primary-purple);
}

.nav-links li a.clearance-link {
    color: #ff0000;
}


/* HURT Button - Animated Gradient Design */
.btn-hurt {
    margin: 10px auto !important;
    padding: 15px 40px !important;
    background-color: #ffffff1a !important;
    color: #f5f5f5 !important;
    border-radius: 10px;
    position: relative;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    cursor: pointer;
    background: linear-gradient(90deg, #08ff08, #50e3fc, #bc13fe, #03a9f4, #0ff0fc);
    background-size: 500%;
    z-index: 1;
    animation: flowLeft 6s linear infinite;
    box-shadow: 5px 5px #00000047;
    text-decoration: none;
    display: inline-block;
    opacity: 1;
    -webkit-font-smoothing: antialiased;
    transition: all 0.3s ease;

}

.btn-hurt:after,
.btn-hurt:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: inherit;
    border-radius: 10px;
    filter: blur(50px);
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.btn-hurt:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.btn-hurt:hover:before {
    opacity: 0.6;
}

/* Color animation flow right to left */
@keyframes flowLeft {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 500% 50%;
    }
}



.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #234195;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.icon-btn:hover {
    background: var(--primary-purple);
    transform: translateY(-2px);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ff0000;
    color: white;
    font-size: 11px;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* Hamburger remains for mobile but hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 35px;
    height: 35px;
    background: #234195;
    /* Add a solid background to the button for visibility */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 0 5px;
    /* Side padding for the lines */
    z-index: 2001;
    transition: var(--transition);
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    /* White lines on the blue background */
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Active State for Hamburger */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ============================================
   MOBILE MENU STYLES (320px and up)
   ============================================ */
@media screen and (max-width: 1024px) {
    .hamburger {
        display: flex;
        order: 2;
        /* Ensure it stays on the right */
    }

    .nav-logo {
        order: 1;
    }

    .nav-actions {
        display: none;
        /* Hide account/cart from header on mobile */
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        gap: 0;
        z-index: 2000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
        margin-bottom: 30px;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
    }

    .nav-links li a::after {
        display: none;
    }

    /* Mobile Menu Overlay */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    min-height: 100vh;
    padding-top: 0;
}

/* Full Screen Slider Styles */
.slider-section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.slider-container {
    width: 100%;
    position: relative;
    height: auto;
    border-radius: 0;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide a {
    display: block;
    width: 100%;
    height: 100%;
}

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

@media screen and (max-width: 768px) {
    .slider-section {
        margin: 0;
        width: 100%;
    }

    .slider-container {
        aspect-ratio: 1 / 1;
        border-radius: 0;
    }
}

/* Wholesale Bar Styles */
.wholesale-bar {
    background-color: #e0e7ff;
    /* Light lavender/blue */
    width: 100%;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.wholesale-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1440px;
    padding: 0 30px;
    width: 100%;
    justify-content: center;
}

.wholesale-text {
    font-size: 18px;
    font-weight: 800;
    font-style: italic;
    color: #1a1a1a;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
}

.btn-wholesale {
    background: linear-gradient(to right, #00d9ff 40%, #00ff55 40%);
    color: #fff;
    padding: 10px 30px;
    border-radius: 8px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-wholesale:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.wholesale-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.7;
}

.shape-1 {
    width: 150px;
    height: 75px;
    background-color: #4ade80;
    /* Green */
    border-radius: 0 0 150px 150px;
    top: -10px;
    left: 10%;
    transform: rotate(-10deg);
}

.shape-2 {
    width: 100px;
    height: 100px;
    background-color: #fbbf24;
    /* Yellow */
    border-radius: 50%;
    bottom: -50px;
    left: 5%;
    opacity: 0.6;
}

.shape-3 {
    width: 120px;
    height: 60px;
    background-color: #f87171;
    /* Coral/Red */
    border-radius: 120px 120px 0 0;
    bottom: -10px;
    right: 15%;
    transform: rotate(15deg);
}

@media screen and (max-width: 1024px) {
    .wholesale-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .wholesale-text {
        font-size: 15px;
    }

    .shape {
        display: none;
        /* Hide shapes on small screens for clarity */
    }
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.products-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.product-image {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.btn-secondary {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    transform: scale(1.05);
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.info-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.info-card p {
    font-size: 14px;
    color: #666;
}

/* ============================================
   FOOTER
   ============================================ */
/* New Premium Footer Styles */
.footer {
    background: #0d1326;
    /* Deep Navy */
    color: #fff;
    padding: 0;
    position: relative;
}

/* Newsletter Bar Overlap */
.newsletter-bar {
    background: linear-gradient(90deg, #234195 0%, #3452a5 100%);
    border-radius: 20px;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-50%);
    margin-bottom: -50px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.newsletter-info h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
}

.newsletter-info p {
    font-size: 14px;
    opacity: 0.9;
    color: #fff;
}

.newsletter-form {
    background: #fff;
    border-radius: 30px;
    padding: 5px 5px 5px 20px;
    display: flex;
    align-items: center;
    width: 400px;
}

.newsletter-form input {
    border: none;
    outline: none;
    flex-grow: 1;
    font-size: 14px;
    padding: 10px 0;
}

.newsletter-form button {
    background: #0d1326;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #234195;
    transform: scale(1.05);
}

.footer-main {
    padding: 80px 0 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo img {
    height: 150px;
    margin-bottom: 25px;
}

.get-social {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    margin-top: 40px;
}

.social-icon {
    color: #fbed00;
    /* Yellow accent like the logo */
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.footer-nav-col h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #4968b1;
    /* Muted blue for headings */
    letter-spacing: 1px;
}

.footer-nav-col ul {
    list-style: none;
}

.footer-nav-col ul li {
    margin-bottom: 15px;
}

.footer-nav-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav-col ul li a:hover {
    color: #fff;
}

.footer-payments-bar {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-contact-info span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.footer-bottom-tape {
    background: #234195;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom-tape p {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .products-section h2,
    .info-section h2 {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .nav-container {
        padding: 12px 15px;
    }

    .logo-img {
        height: 40px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 14px;
    }

    .products-section,
    .info-section {
        padding: 50px 0;
    }

    .products-section h2,
    .info-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer {
        padding: 40px 0 0;
        /* Reduced from 100px top padding */
    }

    .newsletter-bar {
        display: none;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 40px 0 30px;
        /* Reduced from 80px 0 60px */
    }

    .footer-brand-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo img {
        height: 80px;
    }

    .footer-payments-bar {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
        padding: 20px 0;
    }

    .age-modal-content {
        padding: 40px 25px;
    }

    .age-modal-content h2 {
        font-size: 24px;
    }

    .age-modal-buttons {
        flex-direction: column;
    }

    .age-modal-buttons button {
        width: 100%;
    }
}

/* Categories Section Styles */
.categories-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.categories-title {
    font-size: 42px;
    font-weight: 800;
    font-style: italic;
    color: #234195;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    display: flex;
    flex-direction: column;
    background: #fff;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cat-image {
    width: 100%;
    height: auto;
    display: flex;
}

.cat-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .cat-image img {
    transform: scale(1.1);
}

/* Brand Specific Colors */
.cat-randm {
    border-color: #add8e6;
}

.cat-jnr {
    border-color: #bca0dc;
}

.cat-ghost {
    border-color: #ffb6c1;
}

.cat-hayati {
    border-color: #f4a460;
}

.cat-fakher {
    border-color: #ffe4b5;
}

@media screen and (max-width: 1100px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-title {
        font-size: 32px;
    }
}

@media screen and (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Popular Sets Section Styles */
.popular-sets-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.section-title-italic {
    font-size: 38px;
    font-weight: 800;
    font-style: italic;
    color: #234195;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.popular-sets-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    padding: 0 40px;
}

.set-card {
    background: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.set-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #234195;
}

.set-card-top {
    padding: 30px 20px 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
}

.corner-logo {
    position: absolute;
    top: 10px;
    left: 10px;
}

.corner-logo img {
    height: 45px;
    width: auto;
    opacity: 0.8;
}

.set-main-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
}



.set-card-bottom {
    padding: 20px;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.set-name-price {
    display: flex;
    justify-content: center;
    text-align: center;
}

.set-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.btn-buy-now {
    background: #234195;
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    transition: var(--transition);
    display: block;
    text-align: center;
}

.btn-buy-now:hover {
    background: var(--primary-purple);
    transform: scale(1.02);
}

@media screen and (max-width: 1200px) {
    .popular-sets-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .popular-sets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title-italic {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .popular-sets-grid {
        grid-template-columns: 1fr;
    }
}

/* Desktop Only Full-Screen Banner */
.desktop-banner-section {
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.desktop-banner-section img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 768px) {
    .desktop-banner-section {
        display: none;
    }
}

/* Best Brands Section */
.best-brands-section {
    padding: 60px 0 100px;
    background: #fff;
    text-align: center;
}

.brands-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
    padding: 20px 0;
    /* Space for box-shadow visibility */
}

.brands-track {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: scrollBrands 40s linear infinite;
}

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

.brand-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 180px;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    flex-shrink: 0;
    text-decoration: none;
}

.brand-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 51, 153, 0.15);
    border-color: var(--primary-blue);
}

.brand-box img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
        /* 15px is half of the 30px gap */
    }
}

@media screen and (max-width: 1024px) {
    .brand-box {
        width: 220px;
        height: 160px;
    }
}

@media screen and (max-width: 768px) {
    .brand-box {
        width: 180px;
        height: 130px;
    }

    .brands-track {
        gap: 20px;
    }

    @keyframes scrollBrands {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-50% - 10px));
        }
    }
}

@media screen and (max-width: 480px) {
    .brand-box {
        width: 150px;
        height: 110px;
    }
}

/* Info Scroll Section */
.info-scroll-section {
    padding: 60px 0;
    background-color: #fff;
}

.info-scroll-box {
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 40px;
    height: 400px;
    overflow-y: scroll;
    background: #fff;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.info-scroll-box h2 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.4;
    max-width: 900px;
}

.info-scroll-box h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #234195;
}

.info-scroll-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Custom Scrollbar */
.info-scroll-box::-webkit-scrollbar {
    width: 6px;
}

.info-scroll-box::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 10px;
}

.info-scroll-box::-webkit-scrollbar-thumb {
    background: #234195;
    border-radius: 10px;
}

.info-scroll-box::-webkit-scrollbar-thumb:hover {
    background: #1a306b;
}

@media screen and (max-width: 768px) {
    .info-scroll-box {
        padding: 25px;
        height: 350px;
    }

    .info-scroll-box h2 {
        font-size: 18px;
    }
}