@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Satisfy&display=swap');

:root {
    --primary-bg: #0f0c08;
    /* Rich Dark Brown/Black */
    --text-color: #f5f5f5;
    --accent-color: #d4af37;
    /* Metallic Gold */
    --hover-color: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --header-height: 90px;
}

@media (max-width: 992px) {
    :root {
        --header-height: 65px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 60px;
    }
}

@media (max-width: 375px) {
    :root {
        --header-height: 55px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

html {
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    padding-top: 0;
    /* Removed header height padding to allow banner to flow behind transparent header */
}

/* Header Styles */
.header {
    background-color: transparent;
    backdrop-filter: none;
    color: #000;
    /* Initial text/content color set to black */
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    border-bottom: none;
    box-shadow: none;
    transition: all 0.4s ease;
}

.header.scrolled {
    background-color: rgba(15, 12, 8, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 0.5px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    color: #fff;
    /* Scrolled text/content color set to white */
}

.header.scrolled .logo img {
    filter: brightness(0) invert(1);
    transition: filter 0.4s ease;
}

/* Ensure links and icons inherit the header's color state, excluding dropdown items */
.header a:not(.dropdown-item),
.header .icon-link,
.header .mobile-toggle i {
    color: inherit;
    transition: color 0.4s ease;
}

/* Dropdown items should always be white/light since the dropdown background is dark */
.nav-dropdown .dropdown-item {
    color: #fff !important;
}

/* Desktop: logo + nav grouped together in the center-left area */
.header-center-group {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
}

/* Mobile toggle — hidden on desktop by default */
.mobile-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-color);
    background: none;
    border: none;
    padding: 5px;
    transition: var(--transition);
    z-index: 1100;
    align-items: center;
    justify-content: center;
}

.mobile-toggle:hover {
    color: var(--accent-color);
}

/* Hide mobile-only sections on desktop */
@media (min-width: 993px) {

    .mobile-menu-label,
    .mobile-nav-actions {
        display: none !important;
    }
}

/* Mobile hide utility – e.g. wishlist icon */
.mobile-hide {
    display: flex;
}

/* ── Mobile / Tablet header layout (≤ 992px) ── */
@media (max-width: 992px) {
    .header {
        padding: 0 15px;
        height: var(--header-height);
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        border: none;
    }

    /* Show hamburger on mobile */
    .mobile-toggle {
        display: flex !important;
        order: 1;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: flex-start;
        font-size: 1.6rem;
        cursor: pointer;
        color: var(--text-color);
        background: none;
        border: none;
        z-index: 2200;
        /* Higher than nav z-index 2100 */
        flex-shrink: 0;
        transition: var(--transition);
    }

    .mobile-toggle.active {
        display: none !important;
    }

    /* Logo + nav group: Placed to the right of hamburger on mobile */
    .header-center-group {
        position: static;
        transform: none;
        display: flex;
        align-items: center;
        order: 2;
        flex: 1;
        margin-left: 10px;
        z-index: 1005;
    }

    .header-center-group>* {
        pointer-events: auto;
    }

    /* Hide nav on mobile menu */
    .header-center-group nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 70%;
        /* Half-ish screen of mobile */
        height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
        background: var(--primary-bg);
        z-index: 2100;
        padding: 20px 0 2rem;
        /* space for the top header area if needed */
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    }

    /* Show nav when hamburger menu is active */
    .header-center-group nav:has(.nav-links.active) {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        padding: 0.5rem 15px 1rem;
        gap: 0.8rem;
    }

    .nav-links.active li {
        width: 100%;
    }

    .nav-links.active li a::after {
        display: none !important;
    }

    .nav-links.active li:last-child {
        border-bottom: none;
    }

    /* Logo adjustments */
    .logo {
        font-size: 1.5rem;
    }

    .logo span {
        font-size: 0.85rem;
    }

    /* Currency selector hidden on mobile */
    .currency-selector {
        display: none !important;
    }

    /* Icons right-aligned */
    .right-section {
        order: 3;
        display: flex;
        align-items: center;
        gap: 0.6rem;
        justify-content: flex-end;
        z-index: 1100;
        flex-shrink: 0;
    }

    .icon-group {
        display: none !important;
    }

    .right-section .icon-group {
        display: flex !important;
        align-items: center;
    }

    .right-section .icon-group #notification-btn,
    .right-section .icon-group #user-btn,
    .right-section .icon-group #wishlist-btn {
        display: none !important;
    }

    .right-section .icon-group #cart-btn {
        display: flex !important;
    }

    .mobile-search-wrap {
        display: none;
        position: relative;
        padding: 1.5rem 15px 0.5rem;
    }

    .mobile-search-wrap i {
        position: absolute;
        left: 25px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255, 255, 255, 0.5);
        font-size: 1.1rem;
    }

    .mobile-search-wrap input {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 30px;
        padding: 12px 15px 12px 45px;
        color: #fff;
        font-family: inherit;
        outline: none;
        transition: var(--transition);
    }

    .mobile-search-wrap input:focus {
        border-color: var(--accent-color);
        background: rgba(255, 255, 255, 0.08);
    }

    /* Mobile-only menu labels */
    .mobile-menu-label {
        display: none;
        font-size: 0.75rem;
        color: var(--accent-color);
        text-transform: uppercase;
        letter-spacing: 3px;
        opacity: 0.8;
        font-weight: 600;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.75rem;
        width: calc(100% - 30px);
        margin-left: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Restore gap for the second label specifically */
    .mobile-nav-actions .mobile-menu-label {
        margin-top: 1rem;
    }

    .header-center-group nav:has(.nav-links.active) .mobile-menu-label {
        display: flex;
    }

    .mobile-nav-actions {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 15px 2rem;
        margin-top: 0;
        gap: 0.8rem;
    }

    .header-center-group nav:has(.nav-links.active) .mobile-nav-actions {
        display: flex;
    }

    .mobile-nav-actions .icon-link {
        font-size: 1rem;
        color: var(--text-color);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
        width: 100%;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 500;
        padding: 0.5rem 0;
        position: relative;
    }

    .mobile-nav-actions .icon-link i {
        font-size: 1.5rem;
        width: 24px;
        text-align: center;
    }

    /* Hide notification badge for Account on mobile */
    #mobile-user-btn .mobile-notify-count-badge {
        display: none !important;
    }

    .mobile-nav-actions .icon-link .notify-count,
    .mobile-nav-actions .icon-link .wish-count,
    .mobile-nav-actions .icon-link .cart-count {
        position: relative;
        top: 0;
        right: 0;
        margin-left: auto;
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--accent-color);
        color: #000;
        border-radius: 50%;
        font-weight: 700;
    }

    .mobile-nav-actions .icon-link:hover {
        color: var(--accent-color);
    }

    /* Show wishlist on mobile */
    .mobile-hide {
        display: flex !important;
    }

    /* Icon sizing */
    .icon-link {
        font-size: 1.2rem;
        padding: 5px;
    }
}

@media (max-width: 768px) {

    .right-section,
    .icon-group {
        gap: 0.4rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0 10px;
        height: var(--header-height);
    }

    .logo {
        font-size: 1.35rem;
    }

    .logo span {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .right-section,
    .icon-group {
        gap: 0.25rem;
    }

    .icon-link {
        font-size: 1.1rem;
    }

    .mobile-toggle {
        font-size: 1.3rem;
        width: 32px;
    }
}

/* Extra small screens fix for overlap and visibility */
@media (max-width: 375px) {
    .header {
        padding: 0 4px;
        height: var(--header-height);
        /* Slightly shorter to gain vertical space if needed */
    }

    .mobile-toggle {
        width: 30px;
        font-size: 1.25rem;
    }

    .header-center-group {
        margin-left: 5px;
        flex: 0 1 auto;
        /* Don't force growth */
    }

    .logo {
        font-size: 1.05rem;
        gap: 1px;
    }

    .logo span {
        font-size: 0.6rem;
        letter-spacing: -0.5px;
    }

    .right-section {
        gap: 0.1rem;
        margin-left: auto;
        /* Push to right */
    }

    .icon-group {
        gap: 0.1rem;
    }

    .icon-link {
        font-size: 1.05rem;
        padding: 3px;
        flex-shrink: 0;
        /* Never hide */
    }

    .right-section #user-btn,
    .right-section #notification-btn {
        display: flex !important;
    }
}

@media (max-width: 340px) {
    .header {
        padding: 0 2px;
    }

    .logo {
        font-size: 1rem;
    }

    .logo span {
        display: none;
        /* Hide .com on ultra-narrow surfaces */
    }

    .icon-link {
        font-size: 1rem;
        padding: 2px;
    }

    .icon-group,
    .right-section {
        gap: 0.15rem;
    }

    .mobile-toggle {
        width: 25px;
        font-size: 1.15rem;
    }
}


.logo {
    font-family: 'Satisfy', cursive;
    font-size: 2.2rem;
    color: inherit;
    /* Inherit from header (black or white) */
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 5px;
    transition: var(--transition);
    letter-spacing: -1px;
    white-space: nowrap;
}

.logo img {
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.logo span {
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    text-transform: lowercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    position: relative;
    top: -2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links li a {
    color: inherit;
    /* Inherit from header (black or white) */
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links li a i {
    font-size: 0.8rem;
    vertical-align: middle;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background-color: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links li a:hover {
    color: var(--accent-color);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a.active-nav {
    color: var(--accent-color);
}

.nav-links li a.active-nav::after {
    width: 100%;
}

/* Snack Dropdown */
.has-dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background: #070707;
    border-radius: 6px;
    min-width: 180px;
    padding: 8px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 1100;
}

.nav-dropdown.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

/* Hover bridge to prevent closing when moving to dropdown */
.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: 1;
    pointer-events: none;
    /* Don't block clicks on dropdown items */
}

@media (min-width: 993px) {
    .has-dropdown {
        padding-bottom: 16px;
        margin-bottom: -16px;
    }

    .has-dropdown::after {
        pointer-events: auto;
    }

    .has-dropdown .nav-dropdown {
        top: calc(100% + 4px);
    }

    .has-dropdown:hover .nav-dropdown {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }
}

.dropdown-trigger i {
    transition: transform 0.25s ease;
    display: inline-block;
    vertical-align: middle;
}

.dropdown-trigger.open i {
    transform: rotate(180deg);
}

.dropdown-item {
    display: block;
    padding: 12px 22px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    transition: background 0.15s ease, color 0.15s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.12);
    color: var(--accent-color);
}

.dropdown-item::after {
    display: none !important;
}

/* Center the dropdown container on desktop and mobile, but keep text left-aligned */
#snack-dropdown .dropdown-item,
#shop-dropdown .dropdown-item {
    text-align: center;
}

@media (min-width: 993px) {

    #snack-dropdown,
    #shop-dropdown {
        left: 50%;
        transform: translateX(-50%) translateY(8px);
    }

    #snack-dropdown .dropdown-item,
    #shop-dropdown .dropdown-item {
        text-align: left;
        padding-left: 20px;
    }

    .has-dropdown:hover #snack-dropdown,
    .has-dropdown:hover #shop-dropdown {
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 992px) {

    #snack-dropdown .dropdown-item,
    #shop-dropdown .dropdown-item {
        text-align: left;
        /* Keep left alignment on mobile as requested */
        padding-left: 30%;
        /* Push text towards center to simulate centering */
    }
}


.right-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.currency-selector {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.currency-selector:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

/* Currency Dropdown Styles */
.currency-selector {
    position: relative !important;
    cursor: pointer;
    user-select: none;
}

#currency-arrow {
    transition: transform 0.25s ease;
    display: inline-block;
    vertical-align: middle;
}

.currency-selector.open #currency-arrow {
    transform: rotate(180deg);
}

.currency-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 230px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    overflow: hidden;
}

.currency-dropdown.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.currency-search-wrap {
    padding: 12px 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.currency-search-wrap input {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 8px 12px;
    color: #fff;
    font-size: 0.88rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: border 0.2s ease;
}

.currency-search-wrap input::placeholder {
    color: #888;
}

.currency-search-wrap input:focus {
    border-color: rgba(212, 175, 55, 0.5);
}

.currency-list {
    list-style: none;
    max-height: 240px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
    padding: 6px 0;
    margin: 0;
}

.currency-list::-webkit-scrollbar {
    width: 5px;
}

.currency-list::-webkit-scrollbar-track {
    background: transparent;
}

.currency-list::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

.currency-list li {
    padding: 11px 18px;
    color: #ccc;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.currency-list li:hover {
    background: rgba(212, 175, 55, 0.12);
    color: var(--accent-color);
}

.currency-list li.active {
    color: var(--accent-color);
    font-weight: 600;
}

.currency-list li.hidden {
    display: none;
}

.icon-group {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.icon-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.3rem;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-link:hover {
    color: var(--accent-color);
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.cart-count,
.wish-count,
.notify-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: var(--accent-color);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Orbital Hero Styles */
.hero {
    height: calc(100vh - var(--header-height));
    background-color: #050505;
    /* Original dark hero */
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbital-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.center-logo-circle {
    width: 280px;
    height: 280px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background: radial-gradient(circle, #1a1a1a 0%, #000 70%);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.15);
}

.center-logo-circle h2 {
    font-family: 'Satisfy', cursive;
    font-size: 4.5rem;
    color: #fff;
    line-height: 0.8;
}

.center-logo-circle span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: var(--accent-color);
    letter-spacing: 5px;
    text-transform: lowercase;
}

.orbit {
    position: absolute;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-1 {
    width: 500px;
    height: 500px;
    --ortho-radius: 250px;
    --orbit-speed: 40s;
}

.orbit-2 {
    width: 800px;
    height: 800px;
    --ortho-radius: 400px;
    --orbit-speed: 60s;
}

.orbit-3 {
    width: 1100px;
    height: 1100px;
    --ortho-radius: 550px;
    --orbit-speed: 80s;
}

.orbit-item {
    width: 120px;
    height: 120px;
    background: transparent;
    /* border-radius removed for rectangle */
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
    border: none;
}

.orbit-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.orbit-item:hover,
.orbit-item:active {
    transform: scale(1.15);
    border-color: transparent;
    box-shadow: none;
    z-index: 100;
}

@media (max-width: 1200px) {
    .orbit-1 {
        width: 400px;
        height: 400px;
        --ortho-radius: 200px;
    }

    .orbit-2 {
        width: 650px;
        height: 650px;
        --ortho-radius: 325px;
    }

    .orbit-3 {
        width: 900px;
        height: 900px;
        --ortho-radius: 450px;
    }

    .orbit-item {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 992px) {
    .orbit-1 {
        width: 300px;
        height: 300px;
        --ortho-radius: 150px;
    }

    .orbit-2 {
        width: 500px;
        height: 500px;
        --ortho-radius: 250px;
    }

    .orbit-3 {
        width: 700px;
        height: 700px;
        --ortho-radius: 350px;
    }

    .orbit-item {
        width: 60px;
        height: 60px;
    }

    .center-logo-circle {
        width: 200px;
        height: 200px;
    }

    .center-logo-circle h2 {
        font-size: 3rem;
    }

    .curved-text {
        width: 280px;
        height: 280px;
    }
}


@media (max-width: 768px) {
    .orbit-1 {
        width: 220px;
        height: 220px;
        --ortho-radius: 110px;
    }

    .orbit-2 {
        width: 360px;
        height: 360px;
        --ortho-radius: 180px;
    }

    .orbit-3 {
        width: 520px;
        height: 520px;
        --ortho-radius: 260px;
    }

    .orbit-item-wrapper,
    .upright-counter,
    .orbit-item {
        -webkit-tap-highlight-color: transparent !important;
        background: transparent !important;
    }

    .orbit-item {
        width: 50px;
        height: 50px;
        box-shadow: none !important;
        border: none !important;
    }

    .orbit-item:hover,
    .orbit-item:active {
        box-shadow: none !important;
        border-color: transparent !important;
        transform: scale(1.2);
    }

    .center-logo-circle {
        width: 140px;
        height: 140px;
    }

    .center-logo-circle h2 {
        font-size: 2.2rem;
    }

    .center-logo-circle span {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }

    .curved-text {
        width: 200px;
        height: 200px;
    }

    .curved-text text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .orbit-1 {
        width: 180px;
        height: 180px;
        --ortho-radius: 90px;
    }

    .orbit-2 {
        width: 280px;
        height: 280px;
        --ortho-radius: 140px;
    }

    .orbit-3 {
        width: 400px;
        height: 400px;
        --ortho-radius: 200px;
    }

    .orbit-item {
        width: 40px;
        height: 40px;
    }

    .center-logo-circle {
        width: 110px;
        height: 110px;
    }

    .center-logo-circle h2 {
        font-size: 1.8rem;
    }

    .curved-text {
        width: 160px;
        height: 160px;
    }
}

/* Rotation container for multiple items on one orbit */
.orbit-container {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateSlow var(--orbit-speed) linear infinite;
}

.orbit-2 .orbit-container {
    animation: rotateReverse var(--orbit-speed) linear infinite;
}

.orbit-item-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
    pointer-events: auto;
    /* Use the responsive --ortho-radius variable if --radius is not explicitly overriding with relative units */
    transform: rotate(var(--angle)) translate(var(--ortho-radius)) rotate(calc(-1 * var(--angle)));
}

@media (min-width: 769px) {
    .orbit-item-wrapper {
        width: 96px;
        height: 96px;
        margin-top: -48px;
        margin-left: -48px;
        overflow: visible;
    }

    .upright-counter {
        overflow: visible !important;
    }

    .orbit-item {
        width: 160px;
        height: 160px;
        /* border-radius removed for rectangle */
        overflow: hidden;
    }
}

/* This nested container counters the parent orbit rotation to keep items upright */
.upright-counter {
    width: 100%;
    height: 100%;
    overflow: hidden;
    animation: rotateReverse var(--orbit-speed) linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-2 .upright-counter {
    animation: rotateSlow var(--orbit-speed) linear infinite;
}



.curved-text {
    position: absolute;
    width: 400px;
    height: 400px;
    animation: rotateSlow 25s linear infinite;
    pointer-events: none;
}

.curved-text svg {
    overflow: visible;
    width: 100%;
    height: 100%;
}

.curved-text text {
    fill: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color) !important;
}

.product-card:hover img {
    transform: scale(1.1);
}

/* Offers Section Styles */
.offers-section {
    padding: 80px 8%;
    background-color: #ffffff;
    color: #333;
}

.offers-header {
    margin-bottom: 40px;
    padding: 0 5%;
}

.offers-header h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.offers-header p {
    font-size: 1rem;
    color: #666;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    padding: 0 5%;
}

@media (max-width: 1600px) {
    .offers-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 400px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
}

.offer-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    transition: var(--transition);
}

.offer-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-bottom: 12px;
}

.offer-image img {
    max-width: 50%;
    max-height: 90%;
    object-fit: contain;
    transition: var(--transition);
    border: none !important;
    box-shadow: none !important;
}

.offer-card:hover .offer-image img {
    transform: scale(1.02);
}

/* Product link wrapper inside offer-image for clickable cards */
.product-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.product-link img {
    max-width: 50%;
    max-height: 90%;
    object-fit: contain;
    transition: var(--transition);
    border: none !important;
    box-shadow: none !important;
}

.offer-image:hover,
.offer-image[style*="cursor: pointer"]:hover {
    cursor: pointer;
}


.badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.sale {
    background-color: #000;
    color: #fff;
}

.badge.sold-out {
    background-color: #f5f5f5;
    color: #999;
    border: 1px solid #ddd;
}

.offer-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.offer-info h3 {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.3;
    color: #333;
    min-height: 2.6em;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offer-pricing {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.old-price {
    font-size: 0.75rem;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
}

.add-to-cart-btn,
.sold-out-btn {
    width: 100%;
    padding: 8px;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
    margin-top: auto;
    text-transform: capitalize;
}

/* Categories Section Styles */
.categories-section {
    padding: 60px 8% 100px 8%;
    background-color: #ffffff;
    color: #333;
}

.categories-header {
    margin-bottom: 50px;
    padding: 0 5%;
}

.categories-header h2 {
    font-size: 2.2rem;
    font-weight: 500;
}



.category-card {
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.category-image {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
}

.category-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
}

.category-card h3 i {
    font-size: 1rem;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: translateY(-10px) scale(1.05);
}

.category-card:hover h3 {
    color: var(--accent-color);
}

.category-card:hover h3 i {
    transform: translateX(5px);
}

.categories-grid {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 5%;
    scroll-behavior: smooth;
    /* Hide scrollbar completely, use buttons for navigation */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

/* Hide scrollbar for Chrome/Safari/Opera */
.categories-grid::-webkit-scrollbar {
    display: none;
}

.category-card {
    min-width: 200px;
    flex: 0 0 auto;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

@media (max-width: 992px) {
    .categories-grid {
        /* Keep slider behavior but adjust spacing */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 40px 5%;
    }

    .categories-grid {
        /* Ensuring single row slider on mobile too */
        gap: 15px;
    }
}

/* Combo Specific Image Styling */
.combos-section .offer-image {
    background: transparent;
    padding: 10px 5px;
}

.combos-section .offer-card:hover .offer-image img {
    transform: scale(1.1) rotate(-5deg);
}

.combos-section .offer-card:hover .offer-image img:nth-child(2) {
    transform: scale(1.15) rotate(5deg) translateX(15px);
}

.combos-section .offer-card:hover .offer-image img:nth-child(3) {
    transform: scale(1.1) rotate(-3deg) translateX(-15px);
}

.add-to-cart-btn:hover {
    background: #333;
    color: #fff;
}

/* ── Premium Combos Section V2 ──────────────────────────────────────── */

/* Section header */
.combo-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    padding: 0 5%;
}

.combo-header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.combo-eyebrow-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b07d3a;
    background: #fdf3e3;
    border: 1px solid #f0d9b0;
    padding: 3px 10px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 4px;
}

.combo-section-header h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin: 0;
    color: #111;
    line-height: 1.15;
}

.combo-section-header p {
    font-size: 0.92rem;
    color: #777;
    margin: 0;
}

.combo-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    border-bottom: 1.5px solid #111;
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
    margin-bottom: 6px;
}

.combo-view-all-link i {
    transition: transform 0.2s;
}

.combo-view-all-link:hover {
    color: #b07d3a;
    border-color: #b07d3a;
}

.combo-view-all-link:hover i {
    transform: translateX(4px);
}

/* Card base override for combo-card-v2 */
.combos-section .combo-card-v2 {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #efefef;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.combos-section .combo-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.11);
}

/* Image area */
.combos-section .combo-img-wrap {
    position: relative;
    background: linear-gradient(145deg, #fdf8f0 0%, #f5ece0 100%);
    border-radius: 0;
    border: none;
    padding: 20px 12px 16px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    min-height: 180px;
}

/* Inner container that holds the fanned images */
.combo-imgs-inner {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.combo-imgs-inner img {
    width: 52%;
    max-height: 140px;
    object-fit: contain;
    border: none !important;
    box-shadow: none !important;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.3s;
    position: relative;
}

.combo-imgs-inner img:nth-child(1) {
    transform: rotate(-7deg) translateX(14px);
    z-index: 1;
}

.combo-imgs-inner img:nth-child(2) {
    transform: rotate(0deg) scale(1.06);
    z-index: 3;
}

/* Three-item fan */
.combo-imgs-three img {
    width: 36%;
    max-height: 130px;
}

.combo-imgs-three img:nth-child(1) {
    transform: rotate(-12deg) translateX(18px);
    z-index: 1;
}

.combo-imgs-three img:nth-child(2) {
    transform: rotate(0deg) scale(1.08);
    z-index: 3;
}

.combo-imgs-three img:nth-child(3) {
    transform: rotate(12deg) translateX(-18px);
    z-index: 2;
}

/* Hover fan animation — 2-item */
.combos-section .combo-card-v2:hover .combo-imgs-inner img:nth-child(1) {
    transform: rotate(-14deg) translateX(22px) scale(1.04);
}

.combos-section .combo-card-v2:hover .combo-imgs-inner img:nth-child(2) {
    transform: rotate(0deg) scale(1.1);
}

/* Hover fan animation — 3-item */
.combos-section .combo-card-v2:hover .combo-imgs-three img:nth-child(1) {
    transform: rotate(-20deg) translateX(28px) scale(1.04);
}

.combos-section .combo-card-v2:hover .combo-imgs-three img:nth-child(2) {
    transform: rotate(0deg) scale(1.12);
}

.combos-section .combo-card-v2:hover .combo-imgs-three img:nth-child(3) {
    transform: rotate(20deg) translateX(-28px) scale(1.04);
}

/* Save % badge */
.combo-save-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #e84040 0%, #c62828 100%);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(200, 40, 40, 0.35);
    z-index: 10;
}

/* Pack/combo count pill */
.combo-count-dot {
    position: absolute;
    bottom: 10px;
    left: 12px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(4px);
    color: #555;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 10;
}

/* Info area */
.combos-section .combo-info-v2 {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0;
}

.combos-section .combo-info-v2 h3 {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 10px 0;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pricing row */
.combos-section .combo-pricing-v2 {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.combos-section .combo-pricing-v2 .new-price {
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a1a;
}

.combos-section .combo-pricing-v2 .old-price {
    font-size: 0.75rem;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 400;
}

/* Add to cart button */
.combos-section .combo-btn-v2 {
    width: 100%;
    padding: 10px 12px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: background 0.25s ease, transform 0.18s ease, box-shadow 0.25s ease;
    margin-top: auto;
    text-transform: uppercase;
}

.combos-section .combo-btn-v2 i {
    font-size: 1rem;
    transition: transform 0.2s;
}

.combos-section .combo-btn-v2:hover {
    background: #b07d3a;
    box-shadow: 0 4px 16px rgba(176, 125, 58, 0.4);
    transform: translateY(-1px);
}

.combos-section .combo-btn-v2:hover i {
    transform: scale(1.15) rotate(-8deg);
}

.combos-section .combo-btn-v2:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .combo-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .combo-view-all-link {
        margin-bottom: 0;
    }

    .combos-section .combo-img-wrap {
        min-height: 150px;
        padding: 16px 8px 12px;
    }

    .combo-imgs-inner img {
        width: 48%;
        max-height: 110px;
    }

    .combo-imgs-three img {
        width: 34%;
        max-height: 100px;
    }

    .combos-section .combo-info-v2 {
        padding: 10px 10px 12px;
    }
}

.sold-out-btn {
    border-color: #ddd;
    color: #999;
    cursor: not-allowed;
}

/* Benefits Section Styles */
.benefits-section {
    padding: 80px 8%;
    background-color: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 5%;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.benefit-card {
    background: #fff;
    border: 1px solid #000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 30px 15px;
    position: relative;
    height: 560px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

@media (max-width: 768px) {
    .benefit-card {
        height: auto;
        min-height: 400px;
        padding: 20px 10px;
    }
}

.benefit-product {
    flex: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.benefit-product img {
    width: 140%;
    height: auto;
    object-fit: contain;
    transform: rotate(-10deg) translateX(30px);
    transition: transform 0.5s ease;
}

@media (max-width: 768px) {
    .benefit-product img {
        width: 100%;
        transform: rotate(0deg) translateX(0);
    }
}

.benefit-card:hover .benefit-product img {
    transform: rotate(0deg) scale(1.05);
}

.benefit-line {
    width: 1px;
    height: 80%;
    background-color: #000;
    margin: 0 10px;
    position: relative;
    z-index: 2;
}

.benefit-bubbles {
    flex: 0.6;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding: 0;
    position: relative;
    z-index: 3;
}

.benefit-bubbles li {
    width: 72px;
    height: 72px;
    border: 1.5px solid #000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    transition: var(--transition);
    padding: 5px;
}

.benefit-bubbles li strong {
    font-size: 0.9rem;
    font-weight: 800;
    color: #000;
    line-height: 1;
}

.benefit-bubbles li i {
    font-size: 1.2rem;
    color: #000;
}

.benefit-bubbles li span {
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-top: 1px;
    line-height: 1;
    max-width: 95%;
    display: block;
}

.benefit-bubbles li:hover {
    background: #000;
    transform: scale(1.1);
}

.benefit-bubbles li:hover strong,
.benefit-bubbles li:hover span,
.benefit-bubbles li:hover i {
    color: #fff;
}

/* Video Section Styles */
.video-section {
    padding: 60px 8% 100px 8%;
    background-color: #ffffff;
}

.video-section .offers-header {
    margin-bottom: 40px;
}

.video-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.video-track {
    display: flex;
    gap: 20px;
    padding: 20px 5%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: max-content;
}

.video-card {
    position: relative;
    width: 280px;
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    opacity: 0.9;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    gap: 15px;
}

.benefit-label {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.video-card:hover .benefit-label {
    transform: translateY(0);
    opacity: 1;
}

.video-overlay i {
    color: #fff;
    font-size: 2.2rem;
    background: rgba(255, 255, 255, 0.2);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff;
    transition: var(--transition);
}

.video-card:hover .video-overlay i {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.4);
}

.video-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.video-card:hover .video-overlay i {
    transform: scale(1.1);
    opacity: 1;
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.video-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    /* Mobile style vertical video */
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

.video-modal-carousel-btn,
.video-side-peek {
    display: none;
}

.video-side-peek {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 230px;
    height: 410px;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.video-side-peek img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-side-peek-left {
    left: calc(50% - 355px);
}

.video-side-peek-right {
    right: calc(50% - 355px);
}

.video-side-peek:hover {
    opacity: 0.8;
    transform: translateY(-50%) scale(1.01);
}

.video-modal-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #111;
    z-index: 10020;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.video-modal-carousel-btn i {
    font-size: 1.5rem;
}

.video-modal-prev {
    left: calc(50% - 430px);
}

.video-modal-next {
    right: calc(50% - 430px);
}

@media (min-width: 1024px) {

    .video-modal.active .video-side-peek,
    .video-modal.active .video-modal-carousel-btn {
        display: flex;
    }

    .video-modal.active .modal-content {
        z-index: 10030;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2010;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-modal:hover {
    transform: rotate(90deg);
    background: var(--accent-color);
}

.video-container {
    width: 100%;
    height: 100%;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

/* ── Video Actions Sidebar ─────────────────────────── */
.video-actions-sidebar {
    position: absolute;
    right: 12px;
    bottom: 240px;
    /* Elevated to sit above the checkout section */
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 2020;
    align-items: center;
}

.video-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-action-item:hover {
    transform: scale(1.15);
}

.video-action-item i {
    font-size: 2rem;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

.video-action-item .action-label {
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 4px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.video-action-item .ri-heart-fill {
    color: #ff3b30;
}

.video-cart-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
}

.video-cart-wrapper i {
    font-size: 1.5rem;
    filter: none;
}

.video-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #fff;
    color: #000;
    font-size: 0.68rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

@media (max-width: 480px) {
    .video-actions-sidebar {
        right: 10px;
        bottom: 220px;
        gap: 20px;
    }

    .video-action-item i {
        font-size: 1.8rem;
    }

    .video-cart-wrapper {
        width: 48px;
        height: 48px;
    }
}

/* ── Video Comment Overlay ───────────────────────── */
.video-comments-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 60%;
    background: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 2100;
    transition: bottom 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.video-comments-overlay.active {
    bottom: 0;
}

.video-comments-header {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-comments-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
}

.close-comments {
    cursor: pointer;
    font-size: 1.4rem;
    color: #888;
}

.video-comments-list {
    flex: 1;
    overflow-y: auto;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment-item {
    display: flex;
    gap: 12px;
}

.comment-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f0f0f0;
    flex-shrink: 0;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-user {
    font-size: 0.82rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
}

.comment-text {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
}

.video-comment-input-area {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.video-comment-input {
    flex: 1;
    border: 1px solid #eee;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
}

.video-comment-input:focus {
    border-color: #000;
}

.send-comment-btn {
    background: none;
    border: none;
    color: #d4af37;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.send-comment-btn:hover {
    transform: scale(1.1);
}

/* ── Video Shop Section (Refined) ───────────────── */
.video-shop-section {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 75px;
    /* Leave space for sidebar actions */
    z-index: 2025;
}

.mini-product-card-horizontal {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUpFade 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

@keyframes slideUpFade {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mini-product-card-horizontal img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mini-product-card-horizontal .prod-info {
    flex: 1;
    overflow: hidden;
}

.mini-product-card-horizontal h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-product-card-horizontal p {
    font-size: 0.9rem;
    font-weight: 800;
    color: #8b6e3d;
    /* Premium Gold-Brown */
    margin: 2px 0 0;
}

.video-checkout-now-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-checkout-now-btn:hover {
    background: #d4af37;
    /* Gold on hover */
    color: #000;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

@media (max-width: 480px) {
    .video-product-card {
        min-width: 240px;
    }

    .video-checkout-now-btn {
        padding: 12px;
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 15%;
    background: #fff;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 5%;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.stars {
    color: #ffb400;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.reviewer-info strong {
    display: block;
    font-size: 0.95rem;
    color: #000;
}

.reviewer-info span {
    font-size: 0.75rem;
    color: #888;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-controls button {
    background: #e0e0e0;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-controls button.next-btn {
    background: #000;
    color: #fff;
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
}

.dot.active {
    background: #000;
}

/* Healthy Features Section */
.healthy-features-section {
    padding: 80px 8%;
    text-align: left;
    /* Left aligned header */
    background: #fafafa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    padding: 0 5%;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left aligned items */
    gap: 15px;
}

.feature-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Left aligned icons */
    margin-bottom: 10px;
}

.circular-stamp {
    width: 80px;
    height: 80px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
    text-align: center;
    position: relative;
    padding: 10px;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    text-align: left;
}

.feature-item p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    max-width: 250px;
    text-align: left;
}

@media (max-width: 992px) {
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .testimonials-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .video-slide {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .video-slide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1400px) {
    .benefits-section {
        padding: 80px 10%;
    }
}

@media (max-width: 1200px) {
    .benefits-section {
        padding: 60px 5%;
    }

    .benefit-bubbles li {
        width: 68px;
        height: 68px;
    }
}

@media (max-width: 1400px) {
    .offers-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .offers-section {
        padding: 60px 8%;
    }
}

@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Mobile nav menu (slides down from header when toggled) */
    .nav-links {
        display: flex;
        flex-direction: column;
        padding: 20px 6% 40px;
        gap: 5px;
        max-height: calc(100vh - 65px);
        overflow-y: auto;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-dropdown {
        position: static;
        opacity: 1;
        pointer-events: all;
        transform: none;
        background: rgba(255, 255, 255, 0.03);
        box-shadow: none;
        display: none;
        width: 100%;
        margin-top: 5px;
        border-radius: 4px;
        padding: 5px 0;
    }

    .nav-dropdown.open {
        display: block;
    }

    .dropdown-item {
        padding: 10px 15px;
        border-bottom: none;
        font-size: 0.85rem;
    }
}

@media (max-width: 1200px) {

    .offers-section,
    .shop-section,
    .categories-section,
    .benefits-section,
    .video-section,
    .testimonials-section,
    .healthy-features-section {
        padding: 60px 8% !important;
    }
}

@media (max-width: 768px) {

    .offers-section,
    .shop-section,
    .categories-section,
    .benefits-section,
    .video-section,
    .testimonials-section,
    .healthy-features-section {
        padding: 40px 15px !important;
    }

    .offers-header,
    .shop-header,
    .categories-header,
    .benefits-grid,
    .video-section>*,
    .testimonials-section>* {
        padding-left: 0;
        padding-right: 0;
    }

    .offers-header,
    .shop-header,
    .categories-header {
        text-align: center;
        margin-bottom: 25px;
    }
}

/* ── Testimonials Section ─────────────────────────────── */
.testimonials-section {
    padding: 80px 15% 60px;
    background: #fff;
    overflow: hidden;
}

.testimonials-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonials-slide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    min-width: 100%;
    padding: 4px 2px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.25s ease;
}

.testimonial-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.65;
    flex-grow: 1;
}

.reviewer-info {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

.reviewer-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 3px;
}

.reviewer-info span {
    font-size: 0.78rem;
    color: #888;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.prev-btn,
.next-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.dot.active {
    background: #111;
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .testimonials-slide {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonials-slide {
        grid-template-columns: 1fr;
    }
}

/* ── Shop Dropdown Extra Width ───────────────────────── */
.shop-dropdown {
    min-width: 220px;
}

.shop-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-dropdown .dropdown-item i {
    font-size: 1rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.shop-dropdown .dropdown-item.active-filter,
.shop-dropdown .dropdown-item:hover {
    background: rgba(212, 175, 55, 0.12);
    color: var(--accent-color);
}

/* ── Shop Section ─────────────────────────────────────── */
.shop-section {
    padding: 80px 8%;
    background: #fafafa;
}

.shop-header {
    margin-bottom: 30px;
    padding: 0 5%;

}

.shop-header h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: #111;

}

.shop-header p {
    font-size: 1rem;
    color: #666;

}

/* Filter Pills */
.shop-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 5%;
    margin-bottom: 36px;
}

.shop-pill {
    padding: 8px 20px;
    border-radius: 30px;
    border: 1.5px solid #ddd;
    background: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    color: #555;
    cursor: pointer;
    transition: all 0.22s ease;
    letter-spacing: 0.3px;
}

.shop-pill:hover {
    border-color: #111;
    color: #111;
}

.shop-pill.active {
    background: #111;
    border-color: #111;
    color: #fff;
}

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    padding: 0 5%;
}

@media (max-width: 1400px) {
    .shop-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .shop-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 400px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
}

/* Card fade-in/out animation */
.shop-grid .offer-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.shop-grid .offer-card.hidden {
    display: none;
}

/* Empty state */
.shop-empty {
    text-align: center;
    padding: 60px 0;
    color: #bbb;
}

.shop-empty i {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}

.shop-empty p {
    font-size: 1rem;
}

@media (max-width: 1400px) {
    .shop-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .shop-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-section {
        padding: 50px 4%;
    }
}

/* Footer Styles */
.footer {
    background-color: #0a0a0a;
    color: #fff;
    padding: 80px 8% 0 8%;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 60px;
}

/* Brand column */
.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: #999;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
}

/* Link columns */
.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 13px;
}

.footer-column ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-column ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

/* Subscribe column */
.footer-subscribe h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    color: #fff;
}

.footer-subscribe p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer .subscribe-form {
    width: 100%;
}

.footer .input-group {
    position: relative;
    display: flex;
    border: 1px solid #333;
    border-radius: 50px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.footer .input-group:focus-within {
    border-color: #666;
}

.footer .input-group input {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    padding: 12px 48px 12px 20px;
    font-size: 0.88rem;
    outline: none;
}

.footer .input-group input::placeholder {
    color: #555;
}

.footer .input-group button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    color: #000;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer .input-group button:hover {
    background: #ddd;
    transform: translateY(-50%) scale(1.05);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .copyright {
    color: #555;
    font-size: 0.78rem;
    letter-spacing: 0.3px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #555;
    font-size: 0.78rem;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Footer responsive */
@media (max-width: 1024px) {
    .footer {
        padding: 60px 6% 0 6%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .footer-subscribe {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 5% 0 5%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-subscribe {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 24px 0;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
}



@media (max-width: 768px) {
    .testimonials-track-wrapper {
        overflow-x: auto;
        padding: 10px 5px 20px;
        -webkit-overflow-scrolling: touch;
    }


    .testimonials-track {
        display: flex !important;
        transform: none !important;
        width: max-content !important;
        gap: 0 !important;
        transition: none !important;
    }

    .testimonials-slide {
        display: flex !important;
        grid-template-columns: none !important;
        min-width: max-content !important;
        gap: 15px !important;
        padding: 0 !important;
    }

    .testimonial-card {
        width: 280px !important;
        flex-shrink: 0;
        min-height: auto !important;
    }

    .testimonials-section .slider-controls {
        display: none !important;
    }

    /* Video Section Mobile Horizontal Scroll */
    .video-track-wrapper {
        overflow-x: auto;
        padding: 10px 5px 20px;
        -webkit-overflow-scrolling: touch;
    }


    .video-track {
        display: flex !important;
        transform: none !important;
        width: max-content !important;
        gap: 0 !important;
        transition: none !important;
    }

    .video-slide {
        display: flex !important;
        grid-template-columns: none !important;
        min-width: max-content !important;
        gap: 15px !important;
        padding: 0 !important;
    }

    .video-card {
        width: 180px !important;
        flex-shrink: 0;
    }

    #video-slider-controls {
        display: none !important;
    }

    /* Combos Section Mobile Horizontal Scroll */
    .combos-section .offers-grid {
        display: flex !important;
        overflow-x: auto !important;
        padding: 10px 0 20px !important;
        -webkit-overflow-scrolling: touch;
        gap: 15px !important;
    }

    .combos-section .offers-grid::-webkit-scrollbar {

        /* Scrollbar visible */
    }

    .combos-section .offer-card {
        flex: 0 0 280px !important;
        width: 280px !important;
    }

    /* Benefits Section Mobile Horizontal Scroll */
    .benefits-grid {
        display: flex !important;
        overflow-x: auto !important;
        padding: 10px 0 20px !important;
        -webkit-overflow-scrolling: touch;
        gap: 15px !important;
    }

    .benefits-grid::-webkit-scrollbar {

        /* Scrollbar visible */
    }

    .benefit-card {
        flex: 0 0 300px !important;
        width: 300px !important;
    }

    /* Categories Section Mobile Horizontal Scroll */
    .categories-grid {
        display: flex !important;
        overflow-x: auto !important;
        padding: 10px 0 20px !important;
        -webkit-overflow-scrolling: touch;
        gap: 15px !important;
    }

    .categories-grid::-webkit-scrollbar {

        /* Scrollbar visible */
    }

    .category-card {
        flex: 0 0 160px !important;
        width: 160px !important;
    }

    /* Shop and Bestsellers Mobile Horizontal Scroll */
    .shop-grid,
    .offers-grid {
        display: flex !important;
        overflow-x: auto !important;
        padding: 10px 0 20px !important;
        -webkit-overflow-scrolling: touch;
        gap: 15px !important;
    }

    .shop-grid::-webkit-scrollbar,
    .offers-grid::-webkit-scrollbar {

        /* Scrollbar visible */
    }

    .shop-grid .offer-card,
    .offers-grid .offer-card {
        flex: 0 0 280px !important;
        width: 280px !important;
    }

    /* Healthiest Snack Section Mobile Horizontal Scroll */
    .features-grid {
        display: flex !important;
        overflow-x: auto !important;
        padding: 10px 0 20px !important;
        -webkit-overflow-scrolling: touch;
        gap: 20px !important;
    }

    .features-grid::-webkit-scrollbar {

        /* Scrollbar visible */
    }

    .feature-item {
        flex: 0 0 260px !important;
        width: 260px !important;
    }
}

/* ══════════════════════════════════════════════════════
   NOTIFICATION PANEL
══════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════
   NOTIFICATION PANEL (PREMIUM RE-DESIGN)
══════════════════════════════════════════════════════ */
.notification-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.notification-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.notification-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 3100;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.05);
    transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-left: 1px solid #f2f2f2;
}

.notification-panel.active {
    right: 0;
}

.notification-header {
    padding: 35px 30px 25px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.notification-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #1a1a1b;
    letter-spacing: -0.3px;
}

.see-all-btn {
    background: #fff;
    border: 1px solid #eef0f2;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #a1a1aa;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Outfit', sans-serif;
}

.see-all-btn:hover {
    border-color: #d1d5db;
    color: #1a1a1b;
    background: #fcfcfc;
}

.close-notification {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #f0f0f2;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.15rem;
    color: #71717a;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.close-notification:hover {
    background: #f4f4f5;
    color: #1a1a1b;
    border-color: #d1d5db;
    transform: rotate(90deg);
}

.notification-tabs {
    background: #f4f4f5;
    padding: 5px;
    border-radius: 15px;
    display: flex;
    gap: 4px;
}

.notification-tabs .tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #71717a;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.2s ease;
    font-family: 'Outfit', sans-serif;
}

.notification-tabs .tab-btn.active {
    background: #fff;
    color: #1a1a1b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.notification-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 30px 30px;
    scrollbar-width: none;
}

.notification-body::-webkit-scrollbar {
    display: none;
}

/* Individual notification items */
.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0 0;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Icon Styles */
.anno-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1b;
    font-size: 1.3rem;
}

.anno-content {
    flex: 1;
    padding-bottom: 24px;
    border-bottom: 1px solid #f2f2f3;
}

.notification-item:last-child .anno-content {
    border-bottom: none;
}

.anno-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.anno-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.anno-status {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #a855f7;
}

.anno-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #313144;
    letter-spacing: -0.1px;
}

.anno-time {
    font-size: 0.85rem;
    color: #a0a0b0;
}

.anno-desc {
    font-size: 0.95rem;
    color: #71717a;
    line-height: 1.5;
    margin: 0;
}

.anno-desc strong {
    color: #333;
}

/* Specific colors for status points */
.anno-product .anno-status {
    background: #a855f7;
}

.anno-category .anno-status {
    background: #3b82f6;
}

.anno-welcome .anno-status {
    background: #f97316;
}

/* Empty & loading states */
.notification-empty,
.notification-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: #bbb;
}

.notification-loading i {
    font-size: 2rem;
    margin-bottom: 10px;
}

@media (max-width: 480px) {
    .notification-panel {
        right: -100%;
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }

    .notification-panel.active {
        right: 0;
    }
}

/* ── Smooth Tab Transitions ── */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-item {
    animation: slideUpFade 0.45s cubic-bezier(0.19, 1, 0.22, 1) both;
}

/* Staggered entry for items */
.notification-item:nth-child(1) {
    animation-delay: 0.05s;
}

.notification-item:nth-child(2) {
    animation-delay: 0.1s;
}

.notification-item:nth-child(3) {
    animation-delay: 0.15s;
}

.notification-item:nth-child(4) {
    animation-delay: 0.2s;
}

.notification-item:nth-child(5) {
    animation-delay: 0.25s;
}

.notification-body {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.notification-body.fade-out {
    opacity: 0;
    transform: translateY(5px);
}

/* Spinner animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ri-spin {
    display: inline-block;
    animation: spin 0.9s linear infinite;
}

/* Notification badge on bell icon */
.notify-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #d4af37;
    color: #000;
    font-size: 0.55rem;
    font-weight: 800;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    line-height: 1;
}

/* ══════════════════════════════════════════════════════
   GLOBAL SEARCH RESULTS MODE
══════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════
   GLOBAL SEARCH RESULTS MODE (PREMIUM DESIGN)
══════════════════════════════════════════════════════ */
#global-search-section {
    display: none;
    padding: 80px 5%;
    min-height: 100vh;
    background: #fff;
    /* Clean white as per image */
    color: #111;
    position: relative;
    z-index: 900;
}

body.search-active main>*:not(#global-search-section):not(.header) {
    display: none !important;
}

body.search-active #global-search-section {
    display: block !important;
}

.search-results-container {
    max-width: 1200px;
    margin: 0 auto;
}

.search-results-container h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 40px;
    color: #000;
}

#global-search-section {
    display: none;
}

body.search-active #global-search-section {
    display: block;
}

/* Internal Search Bar */
.search-results-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.search-input-wrapper-inner {
    position: relative;
    width: 600px;
    height: 64px;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.search-input-wrapper-inner:focus-within {
    border-color: #000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.search-input-wrapper-inner span {
    position: absolute;
    top: 8px;
    left: 20px;
    font-size: 0.75rem;
    color: #888;
    pointer-events: none;
}

.search-input-wrapper-inner input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 1.1rem;
    padding-top: 15px;
    background: transparent;
}

.search-input-wrapper-inner .icons-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-input-wrapper-inner i {
    font-size: 1.4rem;
    color: #555;
    cursor: pointer;
}

/* Filters & Sort Bar */
.search-controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.left-controls,
.right-controls {
    display: flex;
    align-items: center;
    gap: 25px;
}

.control-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #444;
    position: relative;
}

.filter-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 250px;
    padding: 20px;
    z-index: 1000;
    display: none;
    border-radius: 4px;
    cursor: default;
}

.filter-dropdown.active {
    display: block;
}

.filter-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.filter-dropdown-header .reset-link {
    color: #888;
    text-decoration: underline;
    cursor: pointer;
}

.filter-dropdown-header .reset-link:hover {
    color: #000;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #333;
}

.filter-option:last-child {
    margin-bottom: 0;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #111;
}

.filter-option .opt-text {
    flex: 1;
}

/* Sort Dropdown Styles */
.sort-dropdown {
    width: 200px;
    padding: 10px 0;
}

.sort-option {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #444;
    transition: all 0.2s ease;
}

.sort-option:hover {
    background: #f8f8f8;
    color: #000;
}

.sort-option.active {
    background: #f0f0f0;
    color: #000;
    font-weight: 500;
}

.control-label {
    color: #888;
}

.results-count {
    color: #888;
    margin-left: 10px;
}

/* Grid Override for Search Results */
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
}

.search-results-grid .offer-card {
    background: transparent;
    box-shadow: none;
    border: none;
    text-align: center;
}

.search-results-grid .offer-card:hover {
    transform: none;
}

.search-results-grid .offer-image {
    background: #fdfdfd;
    border-radius: 0;
    margin-bottom: 20px;
    padding: 0;
}

.search-results-grid .offer-info h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: #222;
}

.search-results-grid .offer-pricing {
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}

.search-results-grid .new-price {
    font-size: 1.1rem;
    color: #000;
    font-weight: 500;
}

.search-results-grid .old-price {
    font-size: 0.95rem;
    color: #999;
}

@media (max-width: 1024px) {
    .search-results-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .search-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-input-wrapper-inner {
        width: 100%;
    }

    .search-controls-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .search-results-grid {
        grid-template-columns: 1fr;
    }
}

.search-empty-state {
    text-align: center;
    padding: 100px 0;
    grid-column: 1 / -1;
}

.search-empty-state i {
    font-size: 4rem;
    color: #eee;
    margin-bottom: 20px;
    display: block;
}

.search-empty-state h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.search-empty-state p {
    color: #888;
}


body.search-active main>*:not(#global-search-section):not(.header) {
    display: none !important;
}

body.search-active #global-search-section {
    display: block !important;
}

.search-results-header {
    margin-bottom: 40px;
    text-align: center;
}

.search-results-header h2 {
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 8px;
}

.search-results-header p {
    color: #888;
    font-size: 1rem;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .search-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    #global-search-section {
        padding: 40px 4%;
    }
}

@media (max-width: 480px) {
    .search-results-grid {
        grid-template-columns: 1fr;
    }
}

.search-empty-state {
    text-align: center;
    padding: 100px 0;
    color: #bbb;
}

.search-empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.search-empty-state h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* ── Price Dropdown Specifics ── */
.price-dropdown {
    width: 320px;
}

.price-inputs {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.price-input-wrap {
    position: relative;
    flex: 1;
}

.price-input-wrap .currency-symbol {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 0.9rem;
}

.price-input-wrap input {
    width: 100%;
    padding: 10px 10px 10px 25px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
    font-family: 'Outfit', sans-serif;
}

.price-input-wrap input:focus {
    border-color: #000;
}

.price-dropdown .filter-dropdown-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.price-dropdown .filter-dropdown-header span:first-child {
    color: #444;
    font-weight: 400;
}

@media (max-width: 480px) {
    .price-dropdown {
        width: 280px;
        padding: 15px;
    }

    .price-inputs {
        gap: 10px;
    }
}