        /* ===== RESET & VARIABLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }
        :root {
            --green: #16A34A;
            --green-dark: #15803D;
            --green-900: #14532D;
            --green-light: #F0FDF4;
            --green-border: #DCFCE7;
            --whatsapp: #25D366;
            --text: #1F2937;
            --text-gray: #6B7280;
            --border: #E5E7EB;
            --bg: #F8FAF8;
            --white: #fff;
            --shadow-sm: 0 1px 4px rgba(0, 0, 0, .06);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, .08);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, .12);
            --shadow-xl: 0 20px 60px rgba(0, 0, 0, .15);
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 14px;
            --radius-xl: 18px;
            --radius-2xl: 24px;
            --transition: all .25s ease;
        }
        html { scroll-padding-top: 90px; }
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            font-size: 15px;
            line-height: 1.6;
        }
        a,
        a:visited,
        a:hover,
        a:active {
            color: var(--green);
            text-decoration: none;
        }
        .phone-green,
        .help-contact-item .phone-green,
        .help-contact-item a {
            color: #16A34A !important;
            font-weight: 700 !important;
        }
        .help-contact-item {
            color: #a3c4a3;
        }

        /* ===== TOAST NOTIFICATION ===== */
        .toast-container {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            pointer-events: none;
            max-width: 90%;
            width: 440px;
        }
        .toast {
            background: var(--green-900);
            color: #fff;
            padding: 14px 24px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: slideUpToast .4s ease forwards;
            pointer-events: auto;
            width: 100%;
            border: 1px solid rgba(255, 255, 255, .1);
        }
        .toast .toast-icon {
            font-size: 20px;
            flex-shrink: 0;
        }
        .toast .toast-close {
            background: none;
            border: none;
            color: rgba(255, 255, 255, .6);
            font-size: 18px;
            cursor: pointer;
            margin-left: auto;
            padding: 0 4px;
            transition: color .2s;
            font-family: inherit;
        }
        .toast .toast-close:hover {
            color: #fff;
        }
        .toast.hiding {
            animation: slideDownToast .3s ease forwards;
        }
        @keyframes slideUpToast {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        @keyframes slideDownToast {
            0% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            100% {
                opacity: 0;
                transform: translateY(30px) scale(.95);
            }
        }

        /* ===== KEYFRAMES ===== */
        @keyframes annScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(.94);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes starPop {
            0% {
                transform: scale(0);
            }
            70% {
                transform: scale(1.2);
            }
            100% {
                transform: scale(1);
            }
        }

        /* ===== UTILITY ===== */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .6s ease, transform .6s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 {
            transition-delay: .1s;
        }
        .reveal-delay-2 {
            transition-delay: .2s;
        }
        .reveal-delay-3 {
            transition-delay: .3s;
        }
        .reveal-delay-4 {
            transition-delay: .4s;
        }
        .reveal-delay-5 {
            transition-delay: .5s;
        }
        .ripple-btn {
            position: relative;
            overflow: hidden;
        }

        /* ===== LANGUAGE TOGGLE ===== */
        .lang-toggle {
            display: flex;
            align-items: center;
            gap: 4px;
            background: var(--green-light);
            border-radius: 20px;
            padding: 2px 6px 2px 10px;
            border: 1.5px solid var(--green-border);
            font-size: 11px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
            color: var(--text);
            position: relative;
            min-width: 58px;
            height: 30px;
            justify-content: center;
            flex-shrink: 0;
            user-select: none;
        }
        .lang-toggle:hover {
            border-color: var(--green);
            background: var(--green);
            color: #fff;
        }
        .lang-toggle .lang-label {
            display: flex;
            align-items: center;
            gap: 3px;
        }
        .lang-toggle .lang-label .flag {
            font-size: 14px;
            line-height: 1;
        }
        .lang-toggle .lang-label .code {
            font-size: 10px;
            font-weight: 800;
            letter-spacing: .3px;
        }
        .lang-toggle .arrow {
            font-size: 10px;
            margin-left: 2px;
            transition: transform .2s;
        }
        .lang-toggle.open .arrow {
            transform: rotate(180deg);
        }
        .lang-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 6px);
            right: 0;
            background: #fff;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            z-index: 250;
            min-width: 100px;
            overflow: hidden;
            animation: slideDown .2s ease;
        }
        .lang-toggle.open .lang-dropdown {
            display: block;
        }
        .lang-dropdown-item {
            padding: 8px 14px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: background .15s;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
            font-family: inherit;
            color: var(--text);
        }
        .lang-dropdown-item:hover {
            background: var(--green-light);
            color: var(--green);
        }
        .lang-dropdown-item .flag {
            font-size: 16px;
        }
        .lang-dropdown-item.active {
            background: var(--green-light);
            color: var(--green);
            font-weight: 800;
        }

        /* ===== ANNOUNCEMENT BAR ===== */
        .ann-bar {
            background: #14532D;
            color: #fff;
            overflow: hidden;
            height: 34px;
            display: flex;
            align-items: center;
            position: relative;
        }
        .ann-track-wrap {
            flex: 1;
            overflow: hidden;
            height: 34px;
            position: relative;
        }
        .ann-track {
            display: flex;
            animation: annScroll 22s linear infinite;
            white-space: nowrap;
            height: 34px;
            align-items: center;
            width: max-content;
        }
        .ann-track:hover {
            animation-play-state: paused;
        }
        .ann-item {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 0 28px;
            font-size: 12px;
            font-weight: 600;
            flex-shrink: 0;
            height: 34px;
        }
        .ann-item[data-lang] {
            display: none;
        }
        .ann-item[data-lang].active-lang {
            display: inline-flex;
        }
        .ann-sep {
            color: #4ADE80;
            padding: 0 6px;
            font-size: 14px;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            background: #fff;
            padding: 10px 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 200;
            box-shadow: var(--shadow-sm);
            flex-wrap: wrap;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 9px;
            text-decoration: none;
            flex-shrink: 0;
        }
        .nav-logo-icon {
            width: 36px;
            height: 36px;
            background: var(--green);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .nav-logo-icon svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: #fff;
            stroke-width: 2;
        }
        .nav-logo-text {
            font-size: 19px;
            font-weight: 800;
            color: var(--green);
            letter-spacing: .5px;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 22px;
            list-style: none;
        }
        .nav-links a {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-gray);
            text-decoration: none;
            transition: color .2s;
            position: relative;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--green);
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -18px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--green);
            border-radius: 2px;
        }
        .nav-search {
            flex: 1;
            max-width: 280px;
            position: relative;
        }
        .nav-search input {
            width: 100%;
            padding: 8px 14px 8px 36px;
            border: 1.5px solid var(--border);
            border-radius: 20px;
            font-size: 13px;
            color: var(--text);
            outline: none;
            font-family: inherit;
            transition: var(--transition);
            background: #fafafa;
        }
        .nav-search input:focus {
            border-color: var(--green);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(22, 163, 74, .08);
        }
        .nav-search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            stroke: var(--text-gray);
            fill: none;
            stroke-width: 2;
        }
        .search-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            background: #fff;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            z-index: 300;
            overflow: hidden;
            animation: slideDown .2s ease;
        }
        .search-dropdown.show {
            display: block;
        }
        .search-item {
            padding: 10px 14px;
            font-size: 13px;
            color: var(--text);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background .15s;
        }
        .search-item:hover {
            background: var(--green-light);
            color: var(--green);
        }
        .search-item-icon {
            font-size: 16px;
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .nav-icon-btn {
            width: 34px;
            height: 34px;
            border: 1.5px solid var(--border);
            border-radius: 8px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--transition);
        }
        .nav-icon-btn svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }
        .nav-icon-btn:hover {
            border-color: var(--green);
            color: var(--green);
            background: var(--green-light);
        }
        .nav-cart-btn {
            position: relative;
        }
        .nav-cart-btn .cart-count {
            position: absolute;
            top: -6px;
            right: -6px;
            background: #EF4444;
            color: #fff;
            font-size: 9px;
            font-weight: 800;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
        }
        .mobile-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: var(--transition);
        }
        .mobile-toggle.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .mobile-toggle.open span:nth-child(2) {
            opacity: 0;
        }
        .mobile-toggle.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        .mobile-search-bar {
            display: none;
            padding: 10px 4%;
            background: #fff;
            border-bottom: 1px solid var(--border);
        }
        .mobile-search-bar.show {
            display: block;
            animation: slideDown .2s ease;
        }
        .mobile-search-bar input {
            width: 100%;
            padding: 10px 14px 10px 38px;
            border: 1.5px solid var(--border);
            border-radius: 20px;
            font-size: 14px;
            outline: none;
            font-family: inherit;
        }
        .mobile-search-bar input:focus {
            border-color: var(--green);
        }
        .mobile-search-wrap {
            position: relative;
        }
        .mobile-search-wrap svg {
            position: absolute;
            left: 13px;
            top: 50%;
            transform: translateY(-50%);
            width: 15px;
            height: 15px;
            stroke: var(--text-gray);
            fill: none;
            stroke-width: 2;
        }
        .mobile-search-close {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            color: var(--text-gray);
            padding: 0;
            line-height: 1;
        }
        .mobile-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .4);
            z-index: 150;
        }
        .mobile-overlay.open {
            display: block;
        }
        .mobile-menu {
            display: none;
            background: #fff;
            border-top: 1px solid var(--border);
            padding: 16px 5% 20px;
            position: relative;
            z-index: 160;
            box-shadow: var(--shadow-lg);
        }
        .mobile-menu.open {
            display: block;
            animation: slideDown .25s ease;
        }
        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 14px;
        }
        .mobile-menu-title {
            font-size: 14px;
            font-weight: 800;
            color: var(--text);
        }
        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 22px;
            cursor: pointer;
            color: var(--text-gray);
            line-height: 1;
        }
        .mobile-menu a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 0;
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            border-bottom: 1px solid #f3f4f6;
            text-decoration: none;
            transition: color .2s;
            min-height: 44px;
        }
        .mobile-menu a:hover {
            color: var(--green);
        }
        .mobile-menu a:last-child {
            border-bottom: none;
        }
        .mobile-menu-wa {
            margin-top: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--whatsapp);
            color: #fff;
            padding: 13px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            min-height: 48px;
        }

        /* ===== HERO ===== */
        .hero-wrapper {
            position: relative;
            overflow: hidden;
        }
        .hero-slides {
            display: flex;
            transition: transform .7s cubic-bezier(.4, 0, .2, 1);
        }
        .hero-slide {
            min-width: 100%;
            position: relative;
            min-height: 420px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding: 40px 5% 30px;
            overflow: hidden;
            gap: 30px;
        }
        .hero-slide-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-size: cover;
            background-position: center;
        }
        .hero-slide-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-img-area {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .slide-1 .hero-slide-bg {
            background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
        }
        .slide-1 .hero-slide-overlay {
            background: linear-gradient(90deg, rgba(255, 255, 255, .97) 50%, rgba(255, 255, 255, .1) 100%);
        }
        .slide-2 .hero-slide-bg {
            background: linear-gradient(135deg, #14532D 0%, #16A34A 100%);
        }
        .slide-2 .hero-slide-overlay {
            background: linear-gradient(90deg, rgba(20, 83, 45, .94) 42%, rgba(22, 163, 74, .2) 100%);
        }
        .slide-2 h1,
        .slide-2 .hero-sub,
        .slide-2 .hero-tagline {
            color: #fff !important;
        }
        .slide-2 h1 .green {
            color: #4ADE80 !important;
        }
        .slide-2 .hero-stat {
            background: rgba(255, 255, 255, .14) !important;
            border-color: rgba(255, 255, 255, .22) !important;
        }
        .slide-2 .hero-stat-label {
            color: #fff !important;
        }
        .slide-2 .hero-stat-sub {
            color: rgba(255, 255, 255, .65) !important;
        }
        .slide-2 .hero-sub {
            color: rgba(255, 255, 255, .88) !important;
        }
        .slide-2 .deco-circle-1 {
            position: absolute;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: rgba(74, 222, 128, .1);
            top: -100px;
            right: -80px;
            z-index: 1;
        }
        .slide-2 .deco-circle-2 {
            position: absolute;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .05);
            bottom: -80px;
            right: 80px;
            z-index: 1;
        }
        .slide-3 .hero-slide-bg {
            background: linear-gradient(135deg, #0B2800 0%, #14532D 60%, #16A34A 100%);
        }
        .slide-3 .hero-slide-overlay {
            background: linear-gradient(90deg, rgba(11, 40, 0, .96) 42%, rgba(20, 83, 45, .25) 100%);
        }
        .slide-3 h1,
        .slide-3 .hero-sub,
        .slide-3 .hero-tagline {
            color: #fff !important;
        }
        .slide-3 h1 .green {
            color: #4ADE80 !important;
        }
        .slide-3 .hero-stat {
            background: rgba(255, 255, 255, .12) !important;
            border-color: rgba(255, 255, 255, .18) !important;
        }
        .slide-3 .hero-stat-label {
            color: #fff !important;
        }
        .slide-3 .hero-stat-sub {
            color: rgba(255, 255, 255, .65) !important;
        }
        .slide-3 .hero-sub {
            color: rgba(255, 255, 255, .88) !important;
        }
        .slide-3 .deco-circle-1 {
            position: absolute;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            background: rgba(74, 222, 128, .09);
            top: -80px;
            right: -60px;
            z-index: 1;
        }
        .slide-3 .deco-circle-2 {
            position: absolute;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .04);
            bottom: -60px;
            right: 100px;
            z-index: 1;
        }
        h1 {
            font-size: 38px;
            font-weight: 800;
            line-height: 1.15;
            color: var(--text);
            margin-bottom: 10px;
        }
        h1 .green {
            color: var(--green);
        }
        .hero-sub {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.75;
            margin-bottom: 20px;
            max-width: 480px;
        }
        .hero-stats {
            display: flex;
            gap: 12px;
            margin-bottom: 22px;
            flex-wrap: wrap;
        }
        .hero-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
            min-width: 64px;
            background: #fff;
            border: 1.5px solid var(--border);
            border-radius: 10px;
            padding: 9px 7px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .hero-stat:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .hero-stat-icon {
            font-size: 17px;
        }
        .hero-stat-label {
            font-size: 10px;
            font-weight: 700;
            color: var(--text);
            text-align: center;
        }
        .hero-stat-sub {
            font-size: 9px;
            color: #9CA3AF;
            text-align: center;
        }
        .hero-tagline {
            font-size: 12px;
            color: #9CA3AF;
            margin-top: 8px;
            font-style: italic;
        }
        .hero-img-box {
            width: 100%;
            max-width: 440px;
            height: 320px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow-xl);
        }
        .hero-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }
        .hero-img-box:hover img {
            transform: scale(1.04);
        }
        .hero-trust {
            position: absolute;
            bottom: 16px;
            right: 16px;
            background: #fff;
            border-radius: 12px;
            padding: 12px 14px;
            text-align: center;
            box-shadow: var(--shadow-lg);
        }
        .hero-trust-num {
            font-size: 20px;
            font-weight: 800;
            color: var(--green);
            line-height: 1;
        }
        .hero-trust-stars {
            color: #F59E0B;
            font-size: 11px;
            margin: 2px 0;
        }
        .hero-trust-text {
            font-size: 10px;
            color: #9CA3AF;
            font-weight: 600;
        }
        .hero-controls {
            position: absolute;
            bottom: 14px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 7px;
            z-index: 10;
        }
        .hero-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .5);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            padding: 0;
        }
        .hero-dot.active {
            background: #fff;
            width: 22px;
            border-radius: 4px;
        }
        .btn-wa {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--green);
            color: #fff;
            padding: 12px 22px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(22, 163, 74, .25);
            border: none;
            cursor: pointer;
            font-family: inherit;
        }
        .btn-wa:hover {
            background: var(--green-dark);
            transform: translateY(-2px);
            color: #fff;
            box-shadow: 0 6px 20px rgba(22, 163, 74, .35);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 12px 22px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            border: 1.5px solid var(--green);
            color: var(--green);
            background: transparent;
            cursor: pointer;
            font-family: inherit;
        }
        .btn-outline:hover {
            background: var(--green);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(22, 163, 74, .3);
        }
        .btn-outline-light {
            border-color: rgba(255, 255, 255, .4);
            color: #fff;
        }
        .btn-outline-light:hover {
            background: rgba(255, 255, 255, .15);
            border-color: #fff;
            color: #fff;
        }
        .wa-svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
            flex-shrink: 0;
        }

        /* ===== HERO TRUST BAR ===== */
        .hero-trust-bar {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 16px;
            flex-wrap: wrap;
        }
        .hero-trust-bar .trust-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-gray);
        }
        .hero-trust-bar .trust-item svg {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: var(--green);
            stroke-width: 2;
        }
        .hero-trust-bar .trust-item .badge {
            background: var(--green-light);
            padding: 2px 8px;
            border-radius: 12px;
            color: var(--green);
            font-size: 10px;
            font-weight: 700;
        }

        /* ===== CATEGORIES ===== */
        .categories-section {
            background: #fff;
            border-bottom: 1px solid var(--border);
            padding: 18px 5%;
        }
        .categories-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .categories-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        .categories-title {
            font-size: 15px;
            font-weight: 800;
            color: var(--text);
        }
        .categories-scroll {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 4px;
            scrollbar-width: none;
            justify-content: flex-start;
            mask-image: linear-gradient(to right, black 0%, black 92%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, black 0%, black 92%, transparent 100%);
        }
        .categories-scroll::-webkit-scrollbar {
            display: none;
        }
        .cat-pill {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            width: 78px;
            cursor: pointer;
            flex-shrink: 0;
            transition: var(--transition);
            text-align: center;
        }
        .cat-pill:hover .cat-pill-icon {
            border-color: var(--green);
            background: var(--green-light);
            transform: translateY(-3px);
        }
        .cat-pill:hover .cat-pill-label {
            color: var(--green);
        }
        .cat-pill-icon {
            width: 54px;
            height: 54px;
            border-radius: 14px;
            border: 1.5px solid var(--border);
            background: #fafafa;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            overflow: hidden;
            font-size: 26px;
            line-height: 1;
            margin: 0 auto;
        }
        .cat-pill-label {
            font-size: 10.5px;
            font-weight: 700;
            color: var(--text);
            text-align: center;
            white-space: normal;
            line-height: 1.25;
        }
        .cat-pill-label-sub {
            font-size: 8.5px;
            color: var(--text-gray);
            font-weight: 500;
            text-align: center;
            white-space: normal;
            line-height: 1.2;
        }
        .cat-pill.view-all .cat-pill-icon {
            background: var(--green);
            color: #fff;
            border-color: var(--green);
            font-size: 18px;
        }
        .cat-pill.view-all .cat-pill-label {
            color: var(--green);
        }

        /* ===== FEATURED CAROUSEL ===== */
        .featured-carousel-section {
            padding: 24px 5% 10px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .featured-carousel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 14px;
        }
        .featured-carousel-header h2 {
            font-size: 20px;
            font-weight: 800;
            color: var(--text);
        }
        .featured-carousel-header .view-all {
            font-size: 13px;
            font-weight: 700;
            color: var(--green);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .featured-carousel {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding-bottom: 8px;
            scrollbar-width: none;
        }
        .featured-carousel::-webkit-scrollbar {
            display: none;
        }
        .featured-card {
            min-width: 180px;
            max-width: 200px;
            flex-shrink: 0;
            background: #fff;
            border-radius: var(--radius-xl);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
        }
        .featured-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--green);
        }
        .featured-card .image-wrap {
            position: relative;
            height: 150px;
            overflow: hidden;
            background: linear-gradient(135deg, #f0fdf4 0%, #e8f5e9 100%);
        }
        .featured-card .image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform .4s ease;
        }
        .featured-card:hover .image-wrap img {
            transform: scale(1.05);
        }
        .featured-card .image-wrap .badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: #EF4444;
            color: #fff;
            font-size: 9px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 12px;
            z-index: 2;
        }
        .featured-card .info {
            padding: 10px 12px 12px;
        }
        .featured-card .info .name {
            font-size: 13px;
            font-weight: 700;
            color: var(--text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .featured-card .info .price {
            font-size: 15px;
            font-weight: 800;
            color: var(--green);
            margin-top: 2px;
        }
        .featured-card .info .unit {
            font-size: 11px;
            color: var(--text-gray);
        }
        .featured-card .info .qty-label {
            font-size: 10px;
            color: var(--text-gray);
            font-weight: 600;
            display: block;
            margin-top: 2px;
        }

        /* ===== BUNDLES ===== */
        .popular {
            padding: 20px 5% 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            flex-wrap: wrap;
            gap: 8px;
        }
        .section-title {
            font-size: 20px;
            font-weight: 800;
            color: var(--text);
        }
        .section-sub-text {
            font-size: 13px;
            color: var(--text-gray);
            margin-top: 3px;
        }
        .view-all {
            color: var(--green);
            font-size: 12.5px;
            font-weight: 700;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .view-all:hover {
            text-decoration: underline;
        }
        .bundles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .bundle-ecard {
            background: #fff;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-xl);
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
        }
        .bundle-ecard:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
            border-color: var(--green-border);
        }
        .bundle-ecard-img {
            width: 100%;
            height: 180px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
        }
        .bundle-ecard-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform .5s ease;
            display: block;
        }
        .bundle-ecard:hover .bundle-ecard-img img {
            transform: scale(1.07);
        }
        .bundle-ecard-discount {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #EF4444;
            color: #fff;
            font-size: 10px;
            font-weight: 800;
            padding: 3px 9px;
            border-radius: 20px;
            z-index: 2;
        }
        .bundle-ecard-popular {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #F59E0B;
            color: #fff;
            font-size: 9px;
            font-weight: 800;
            padding: 3px 9px;
            border-radius: 20px;
            z-index: 2;
        }
        .bundle-ecard-body {
            padding: 14px;
        }
        .bundle-ecard-title {
            font-size: 14px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 2px;
        }
        .bundle-ecard-somali {
            font-size: 11px;
            color: var(--green);
            font-style: italic;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .bundle-ecard-items {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-bottom: 12px;
            min-height: 64px;
        }
        .bundle-ecard-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--text-gray);
        }
        .bundle-ecard-check {
            color: var(--green);
            font-weight: 700;
            font-size: 13px;
            flex-shrink: 0;
        }
        .bundle-ecard-price-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 10px;
            border-top: 1px solid var(--border);
        }
        .bundle-ecard-price {
            font-size: 20px;
            font-weight: 800;
            color: var(--green);
        }
        .bundle-ecard-orig {
            font-size: 12px;
            color: #9CA3AF;
            text-decoration: line-through;
            margin-left: 4px;
        }
        .bundle-ecard-order {
            background: var(--green);
            color: #fff;
            border: none;
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            font-family: inherit;
            transition: var(--transition);
        }
        .bundle-ecard-order:hover {
            background: var(--green-dark);
        }

        /* ===== FEATURED PRODUCT ===== */
        .featured-product-section {
            background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
            padding: 40px 5%;
            border-top: 1px solid var(--green-border);
            border-bottom: 1px solid var(--green-border);
        }
        .featured-product-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .featured-product-image {
            position: relative;
            border-radius: var(--radius-2xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }
        .featured-product-image img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            display: block;
        }
        .featured-product-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--green-900);
            color: #fff;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
        }
        .featured-product-badge.performance {
            background: #EF4444;
        }
        .featured-product-content h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 6px;
        }
        .featured-product-content .sub {
            font-size: 14px;
            color: var(--text-gray);
            margin-bottom: 12px;
            font-style: italic;
        }
        .featured-product-content .desc {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .featured-product-content .price-row {
            display: flex;
            align-items: baseline;
            gap: 12px;
            margin-bottom: 18px;
        }
        .featured-product-content .price {
            font-size: 30px;
            font-weight: 800;
            color: var(--green);
        }
        .featured-product-content .orig-price {
            font-size: 16px;
            color: #D1D5DB;
            text-decoration: line-through;
        }
        .featured-product-content .badge-row {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }
        .fp-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
        }
        .fp-badge.bestseller {
            background: #14532D;
            color: #fff;
        }
        .fp-badge.popular {
            background: #F59E0B;
            color: #fff;
        }
        .fp-badge.discount {
            background: #EF4444;
            color: #fff;
        }
        .fp-badge.rating {
            background: #8B5CF6;
            color: #fff;
        }
        .featured-product-content .actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 6px;
        }
        .btn-cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all .25s ease;
            border: none;
            font-family: inherit;
            background: #16A34A;
            color: #fff;
            box-shadow: 0 4px 12px rgba(22, 163, 74, .3);
        }
        .btn-cta-primary:hover {
            background: #15803D;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(22, 163, 74, .4);
        }
        .btn-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all .25s ease;
            border: none;
            font-family: inherit;
            background: #14532D;
            color: #fff;
            box-shadow: 0 4px 12px rgba(20, 83, 45, .3);
        }
        .btn-cta-secondary:hover {
            background: #0f3b20;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(20, 83, 45, .4);
        }

        /* ===== PRODUCT GRID ===== */
        .collection-section {
            padding: 30px 5% 40px;
            background: #fff;
        }
        .collection-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        #productGrid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            max-width: 100%;
        }
        .product-item {
            background: #fff;
            border-radius: var(--radius-xl);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-sm);
            position: relative;
        }
        .product-item:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: var(--shadow-lg);
            border-color: var(--green);
        }
        .product-item .product-image {
            width: 100%;
            padding-top: 100%;
            position: relative;
            background: var(--bg);
            overflow: hidden;
        }
        .product-item .product-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s ease;
        }
        .product-item:hover .product-image img {
            transform: scale(1.05);
        }
        .product-item .product-badge-float {
            position: absolute;
            top: 8px;
            left: 8px;
            font-size: 9px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 12px;
            color: #fff;
            z-index: 2;
        }
        .product-item .product-badge-float.bestseller {
            background: #14532D;
        }
        .product-item .product-badge-float.popular {
            background: #F59E0B;
        }
        .product-item .product-badge-float.discount {
            background: #EF4444;
        }
        .product-item .product-info {
            padding: 12px 12px 10px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            flex: 1;
        }
        .product-item .product-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 36px;
        }
        .product-item .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: var(--text-gray);
            margin-top: 2px;
        }
        .product-item .product-price {
            font-weight: 800;
            color: var(--green);
            font-size: 16px;
        }
        .product-item .product-unit {
            font-size: 11px;
            color: #9CA3AF;
            font-weight: 500;
        }
        .product-item .product-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 6px;
            padding-top: 8px;
            border-top: 1px solid var(--border);
        }
        .product-item .qty-controls {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .product-item .qty-badge {
            font-weight: 700;
            color: var(--green);
            font-size: 15px;
            min-width: 20px;
            text-align: center;
        }
        .product-item .btn-add,
        .product-item .btn-remove {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: none;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--green-light);
            color: var(--green);
        }
        .product-item .btn-add:hover {
            background: var(--green);
            color: #fff;
            transform: scale(1.1);
        }
        .product-item .btn-remove {
            background: #FEE2E2;
            color: #EF4444;
        }
        .product-item .btn-remove:hover {
            background: #EF4444;
            color: #fff;
            transform: scale(1.1);
        }
        .product-item .btn-add:active,
        .product-item .btn-remove:active {
            transform: scale(.9);
        }

        /* ===== REVIEWS ===== */
        .reviews-section {
            padding: 36px 5%;
            background: #fff;
        }
        .reviews-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 20px;
        }
        .review-card {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            padding: 18px;
            transition: var(--transition);
        }
        .review-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            background: #fff;
        }
        .review-stars {
            display: flex;
            gap: 3px;
            margin-bottom: 10px;
        }
        .review-star {
            color: #F59E0B;
            font-size: 15px;
            animation: starPop .3s ease backwards;
        }
        .review-text {
            font-size: 13px;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 14px;
            font-style: italic;
        }
        .review-text::before {
            content: '"';
            font-size: 24px;
            color: var(--green);
            line-height: 0;
            vertical-align: -8px;
            margin-right: 2px;
        }
        .review-text::after {
            content: '"';
            font-size: 24px;
            color: var(--green);
            line-height: 0;
            vertical-align: -8px;
            margin-left: 2px;
        }
        .review-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .review-avatar-placeholder {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
        }
        .review-name {
            font-size: 13px;
            font-weight: 700;
            color: var(--text);
        }
        .review-district {
            font-size: 11px;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .review-district::before {
            content: '📍';
            font-size: 10px;
        }
        .review-bundle-tag {
            display: inline-block;
            background: var(--green-light);
            color: var(--green);
            font-size: 10px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 10px;
            margin-top: 4px;
        }

        /* ===== DELIVERY ===== */
        .delivery-section {
            padding: 36px 5%;
            background: var(--bg);
        }
        .delivery-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .delivery-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 36px;
            align-items: center;
            margin-top: 20px;
        }
        .delivery-map {
            background: #fff;
            border-radius: var(--radius-2xl);
            border: 1.5px solid var(--border);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            position: relative;
        }
        .delivery-map iframe {
            width: 100%;
            height: 320px;
            border: 0;
            display: block;
        }
        .delivery-map-overlay {
            position: absolute;
            inset: 0;
            background: rgba(20, 83, 45, .08);
            pointer-events: none;
        }
        .delivery-map-badge {
            position: absolute;
            bottom: 16px;
            left: 16px;
            background: #fff;
            border-radius: 10px;
            padding: 10px 14px;
            box-shadow: var(--shadow-lg);
        }
        .delivery-map-badge div {
            font-size: 11px;
            font-weight: 700;
            color: var(--text-gray);
            margin-bottom: 2px;
        }
        .delivery-map-badge .coverage {
            font-size: 16px;
            font-weight: 800;
            color: var(--green);
        }
        .delivery-map-badge .sub {
            font-size: 10px;
            color: var(--text-gray);
        }
        .delivery-districts {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .delivery-district-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #fff;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 12px 16px;
            transition: var(--transition);
        }
        .delivery-district-item:hover {
            border-color: var(--green);
            background: var(--green-light);
            transform: translateX(4px);
        }
        .delivery-district-check {
            width: 28px;
            height: 28px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 13px;
            flex-shrink: 0;
        }
        .delivery-district-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--text);
        }
        .delivery-district-note {
            font-size: 11px;
            color: var(--text-gray);
        }
        .delivery-cta-box {
            background: var(--green-900);
            border-radius: var(--radius-xl);
            padding: 20px;
            color: #fff;
            margin-top: 14px;
            text-align: center;
        }
        .delivery-cta-box h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .delivery-cta-box p {
            font-size: 12px;
            color: #a3c4a3;
            margin-bottom: 14px;
        }
        .delivery-all-mogadishu {
            display: inline-block;
            background: rgba(255, 255, 255, .12);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: #fff;
            margin-top: 8px;
        }

        /* ===== HOW IT WORKS ===== */
        .how {
            padding: 30px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .how-inner {
            display: grid;
            grid-template-columns: 1fr 270px;
            gap: 32px;
            align-items: start;
        }
        .how-title {
            font-size: 20px;
            font-weight: 800;
            color: var(--text);
            text-align: center;
            margin-bottom: 26px;
        }
        .how-steps {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 0;
        }
        .how-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
            min-width: 0;
        }
        .how-circle {
            width: 58px;
            height: 58px;
            background: #fff;
            border: 1.5px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 9px;
            position: relative;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .how-step:hover .how-circle {
            border-color: var(--green);
            transform: scale(1.1);
            box-shadow: var(--shadow-md);
        }
        .how-num {
            position: absolute;
            bottom: -3px;
            right: -3px;
            background: var(--green);
            color: #fff;
            font-size: 8px;
            font-weight: 800;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .how-arrow {
            flex-shrink: 0;
            width: 22px;
            margin-top: 20px;
            text-align: center;
            color: #D1D5DB;
            font-size: 16px;
        }
        .how-step h4 {
            font-size: 11px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 2px;
        }
        .how-step p {
            font-size: 10px;
            color: #9CA3AF;
            line-height: 1.4;
            padding: 0 3px;
        }

        /* ===== HELP CARD ===== */
        .help-card {
            background: #1a3d1a;
            border-radius: var(--radius-xl);
            padding: 18px;
            color: #fff;
        }
        .help-card h4 {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
        }
        .help-card p {
            font-size: 12px;
            color: #a3c4a3;
            margin-bottom: 12px;
        }
        .help-wa {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            background: var(--whatsapp);
            color: #fff;
            padding: 10px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 700;
            text-decoration: none;
            margin-bottom: 10px;
            transition: var(--transition);
        }
        .help-wa:hover {
            background: #1ebe5a;
            color: #fff;
        }
        .help-contact-item {
            font-size: 12px;
            color: #a3c4a3;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 5px;
        }

        /* ===== PAYMENT STRIP ===== */
        .payment-strip {
            background: #fff;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 18px 5%;
            margin-top: 8px;
        }
        .payment-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .payment-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-gray);
            text-align: center;
        }
        .payment-badges {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .payment-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 800;
            border: 1.5px solid;
            transition: var(--transition);
            cursor: default;
            min-height: 36px;
            min-width: 50px;
            background: #fafafa;
        }
        .payment-badge:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .payment-badge img {
            height: 24px;
            width: auto;
            object-fit: contain;
            max-height: 30px;
        }
        .badge-usdt {
            border-color: #FCD34D;
            background: #FFFBEB;
            color: #D97706;
        }
        .badge-card {
            border-color: #93C5FD;
            background: #EFF6FF;
            color: #1D4ED8;
        }
        .badge-paypal {
            border-color: #93C5FD;
            background: #EFF6FF;
            color: #1D4ED8;
        }
        .badge-evc {
            border-color: #FED7AA;
            background: #FFF7ED;
            color: #C2410C;
        }
        .badge-edahab {
            border-color: #BBF7D0;
            background: #F0FDF4;
            color: #15803D;
        }
        .badge-waafi {
            border-color: #BBF7D0;
            background: #F0FDF4;
            color: #15803D;
        }
        .badge-premier {
            border-color: #BBF7D0;
            background: #F0FDF4;
            color: #15803D;
        }

        /* ===== TRUST ===== */
        .trust {
            background: var(--bg);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 18px 5%;
        }
        .trust-inner {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .trust-icon {
            width: 40px;
            height: 40px;
            background: var(--green-light);
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            flex-shrink: 0;
        }
        .trust-item h4 {
            font-size: 12px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1px;
        }
        .trust-item p {
            font-size: 10.5px;
            color: #9CA3AF;
            line-height: 1.4;
        }

        /* ===== FOOTER ===== */
        footer {
            background: #fff;
            border-top: 1px solid var(--border);
            padding: 28px 5% 12px;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
        }
        .footer-logo {
            font-size: 18px;
            font-weight: 800;
            color: var(--green);
            margin-bottom: 5px;
        }
        .footer-logo span {
            color: var(--text-gray);
            font-weight: 600;
            font-size: 15px;
        }
        .footer-desc {
            font-size: 11.5px;
            color: #9CA3AF;
            line-height: 1.7;
            margin-bottom: 12px;
        }
        .footer-sub-label {
            font-size: 11.5px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
        }
        .footer-form {
            display: flex;
            gap: 5px;
        }
        .footer-input {
            flex: 1;
            padding: 8px 9px;
            border: 1px solid var(--border);
            border-radius: 6px;
            font-size: 12px;
            outline: none;
            font-family: inherit;
        }
        .footer-input:focus {
            border-color: var(--green);
        }
        .footer-form-btn {
            background: var(--green);
            color: #fff;
            border: none;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            font-family: inherit;
            transition: var(--transition);
        }
        .footer-form-btn:hover {
            background: var(--green-dark);
        }
        .footer-col h4 {
            font-size: 12.5px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 10px;
        }
        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .footer-col ul a {
            color: #9CA3AF;
            font-size: 12px;
            text-decoration: none;
            transition: color .2s;
        }
        .footer-col ul a:hover {
            color: var(--green);
        }
        .footer-right {
            text-align: left;
        }
        .footer-right-logo {
            font-size: 18px;
            font-weight: 800;
            color: var(--green);
            margin-bottom: 4px;
        }
        .footer-right-logo span {
            color: var(--text-gray);
            font-weight: 600;
            font-size: 15px;
        }
        .footer-right-desc {
            font-size: 11px;
            color: #9CA3AF;
            line-height: 1.6;
            margin-bottom: 10px;
        }
        .footer-social {
            display: flex;
            gap: 7px;
            justify-content: flex-start;
        }
        .social-a {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: var(--transition);
        }
        .social-a:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        .social-fb {
            background: #1877F2;
        }
        .social-ig {
            background: #E4405F;
        }
        .social-tt {
            background: #000;
        }
        .social-a svg {
            width: 18px;
            height: 18px;
            fill: #fff;
            display: block;
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 10px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
            gap: 8px;
        }
        .footer-copy,
        .footer-made {
            font-size: 11px;
            color: #D1D5DB;
        }

        /* ===== MODALS ===== */
        .modal-overlay,
        .bundle-modal-overlay,
        .login-modal-overlay,
        .coming-soon-popup {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .55);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }
        .modal-overlay.open,
        .bundle-modal-overlay.open,
        .login-modal-overlay.open,
        .coming-soon-popup.open {
            display: flex;
        }
        .modal,
        .bundle-modal,
        .login-modal,
        .coming-soon-box {
            background: #fff;
            border-radius: 20px;
            width: 100%;
            max-width: 440px;
            box-shadow: var(--shadow-xl);
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
            animation: scaleIn .3s ease;
        }
        #orderModal .modal {
            max-width: 400px;
            max-height: 88vh;
            padding: 18px 16px 16px;
            transform-origin: center center;
            transition: transform .2s ease;
        }
        #orderModal .modal.pm-zoomed {
            max-height: none;
            overflow-y: visible;
        }
        .bundle-modal {
            max-width: 600px;
        }
        .login-modal {
            max-width: 400px;
        }
        .modal-close,
        .bundle-modal-close,
        .login-modal-close {
            position: absolute;
            top: 14px;
            right: 16px;
            background: none;
            border: none;
            font-size: 22px;
            cursor: pointer;
            color: #9CA3AF;
            line-height: 1;
        }
        .modal-close:hover,
        .bundle-modal-close:hover,
        .login-modal-close:hover {
            color: var(--text);
        }
        .modal-title {
            font-size: 18px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 4px;
        }
        .modal-bundle-name {
            font-size: 13px;
            color: var(--green);
            font-weight: 700;
            margin-bottom: 18px;
            padding: 6px 12px;
            background: var(--green-light);
            border-radius: 6px;
            display: inline-block;
            white-space: pre-wrap;
            word-break: break-word;
        }
        .modal-price-row {
            background: var(--green-light);
            border-radius: 10px;
            padding: 12px 14px;
            margin-bottom: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .modal-price-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--green-900);
        }
        .modal-price-val {
            font-size: 20px;
            font-weight: 800;
            color: var(--green);
        }
        .modal-field {
            margin-bottom: 14px;
        }
        .modal-label {
            display: block;
            font-size: 12.5px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 5px;
        }
        .modal-input {
            width: 100%;
            padding: 11px 13px;
            border: 1.5px solid var(--border);
            border-radius: 8px;
            font-size: 13px;
            color: var(--text);
            outline: none;
            font-family: inherit;
            transition: var(--transition);
        }
        .modal-input:focus {
            border-color: var(--green);
            box-shadow: 0 0 0 3px rgba(22, 163, 74, .08);
        }
        .modal-input.error {
            border-color: #EF4444;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, .08);
        }
        .modal-input.success {
            border-color: var(--green);
            box-shadow: 0 0 0 3px rgba(22, 163, 74, .08);
        }
        .modal-field-error {
            font-size: 11px;
            color: #EF4444;
            margin-top: 4px;
            display: none;
            align-items: center;
            gap: 4px;
        }
        .modal-field-error.show {
            display: flex;
        }
        .modal-submit {
            width: 100%;
            background: var(--whatsapp);
            color: #fff;
            border: none;
            padding: 13px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: inherit;
            transition: var(--transition);
        }
        .modal-submit:hover {
            background: #1ebe5a;
        }
        .modal-success-msg {
            display: none;
            background: #f0fdf4;
            border: 1px solid #bbf7d0;
            border-radius: 10px;
            padding: 14px;
            text-align: center;
            margin-top: 12px;
        }
        .modal-success-msg.show {
            display: block;
        }
        .modal-success-msg p {
            font-size: 13px;
            color: #15803D;
            font-weight: 600;
        }
        .modal-note {
            font-size: 11px;
            color: #9CA3AF;
            text-align: center;
            margin-top: 10px;
        }
        .cart-items-preview {
            font-size: 12px;
            color: var(--text-gray);
            background: #f9fafb;
            padding: 10px;
            border-radius: 8px;
            margin-bottom: 12px;
            max-height: 120px;
            overflow-y: auto;
            border: 1px solid var(--border);
            white-space: pre-wrap;
        }
        .payment-methods-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 16px;
            align-items: center;
        }
        .payment-method-option {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            border: 1.5px solid #D1D5DB;
            border-radius: 20px;
            cursor: pointer;
            transition: var(--transition);
            background: #fff;
            min-height: 36px;
            box-shadow: none;
        }
        .payment-method-option:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            border-color: #9CA3AF;
            background: #fff;
        }
        .payment-method-option input[type="radio"] {
            accent-color: var(--green);
            width: 14px;
            height: 14px;
            cursor: pointer;
            flex-shrink: 0;
            margin: 0;
        }
        .payment-method-option label {
            font-size: 12px;
            font-weight: 800;
            color: var(--text);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
        }
        .payment-method-option .pm-icon {
            font-size: 14px;
        }
        .payment-method-option.selected {
            border-color: var(--green);
            background: #fff;
            box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.2);
        }
        /* Per-method badge colors (match We Accept strip) */
        .payment-method-option[data-pm="card"] { border-color: #93C5FD; background: #EFF6FF; }
        .payment-method-option[data-pm="paypal"] { border-color: #93C5FD; background: #EFF6FF; }
        .payment-method-option[data-pm="usdt"] { border-color: #FCD34D; background: #FFFBEB; }
        .payment-method-option[data-pm="evc"] { border-color: #FED7AA; background: #FFF7ED; }
        .payment-method-option[data-pm="mpesa"] { border-color: #86EFAC; background: #F0FDF4; }
        .payment-method-option[data-pm="salaam"] { border-color: #6EE7B7; background: #ECFDF5; }
        .payment-method-option[data-pm="ibs"] { border-color: #93C5FD; background: #EFF6FF; }
        .payment-method-option[data-pm="ebesa"] { border-color: #C4B5FD; background: #F5F3FF; }
        .payment-method-option[data-pm="mobile"] { border-color: #FED7AA; background: #FFF7ED; }
        .payment-method-option.selected[data-pm] {
            box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.25);
            border-width: 2px;
        }
        .promo-row {
            display: flex;
            gap: 6px;
            margin-bottom: 12px;
            align-items: center;
        }
        .promo-row .modal-input {
            flex: 1;
            padding: 8px 12px;
            font-size: 12px;
        }
        .promo-row .promo-apply {
            padding: 8px 14px;
            background: var(--green);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 12px;
            cursor: pointer;
            font-family: inherit;
            transition: var(--transition);
            white-space: nowrap;
        }
        .promo-row .promo-apply:hover {
            background: var(--green-dark);
        }
        .promo-feedback {
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 8px;
            display: none;
        }
        .promo-feedback.show {
            display: block;
        }
        .promo-feedback.success {
            color: var(--green);
        }
        .promo-feedback.error {
            color: #EF4444;
        }

        /* ===== BUNDLE MODAL ===== */
        .bundle-modal-header {
            padding: 24px 24px 16px;
            border-bottom: 1px solid var(--border);
        }
        .bundle-modal-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            overflow: hidden;
            margin-bottom: 10px;
            box-shadow: var(--shadow-sm);
        }
        .bundle-modal-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .bundle-modal-title {
            font-size: 20px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 3px;
        }
        .bundle-modal-somali {
            font-size: 12px;
            color: var(--green);
            font-style: italic;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .bundle-modal-desc {
            font-size: 13px;
            color: #6B7280;
            line-height: 1.6;
            margin-bottom: 10px;
        }
        .bundle-modal-badges {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .bundle-modal-badge {
            font-size: 10px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
        }
        .bundle-modal-body {
            padding: 20px 24px;
        }
        .bundle-modal-section-title {
            font-size: 12px;
            font-weight: 800;
            color: #9CA3AF;
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .bundle-progress-items {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 20px;
        }
        .bundle-progress-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .bundle-progress-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .bundle-progress-name {
            font-size: 12.5px;
            font-weight: 600;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .bundle-progress-qty {
            font-size: 11px;
            font-weight: 700;
            color: var(--green);
        }
        .bundle-progress-bar-wrap {
            height: 7px;
            background: #f3f4f6;
            border-radius: 20px;
            overflow: hidden;
        }
        .bundle-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--green), #4ADE80);
            border-radius: 20px;
            width: 0;
            transition: width 1s ease;
        }
        .bundle-modal-price-box {
            background: var(--green-light);
            border-radius: 12px;
            padding: 14px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }
        .bm-price-left .label {
            font-size: 11px;
            color: #6B7280;
            font-weight: 600;
            margin-bottom: 2px;
        }
        .bm-price-left .price {
            font-size: 26px;
            font-weight: 800;
            color: var(--green);
            line-height: 1;
        }
        .bm-price-left .orig {
            font-size: 12px;
            color: #9CA3AF;
            text-decoration: line-through;
            margin-top: 1px;
        }
        .bm-price-right {
            text-align: right;
        }
        .bm-save {
            font-size: 11px;
            color: #EF4444;
            font-weight: 700;
            background: #FEE2E2;
            padding: 3px 8px;
            border-radius: 10px;
            margin-bottom: 4px;
            display: inline-block;
        }
        .bm-per {
            font-size: 11px;
            color: #6B7280;
        }
        .bundle-modal-footer {
            padding: 0 24px 24px;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .bm-btn-outline {
            flex: 1;
            padding: 11px;
            border: 1.5px solid var(--green);
            color: var(--green);
            background: #fff;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            font-family: inherit;
            transition: var(--transition);
        }
        .bm-btn-outline:hover {
            background: var(--green);
            color: #fff;
        }
        .bm-btn-wa {
            flex: 1.5;
            padding: 11px;
            background: var(--green);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            font-family: inherit;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            transition: var(--transition);
        }
        .bm-btn-wa:hover {
            background: var(--green-dark);
        }

        /* ===== VARIANT GRID ===== */
        .variant-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 20px;
        }
        .variant-card {
            background: #fafafa;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 14px;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .variant-card:hover {
            border-color: var(--green);
            background: var(--green-light);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        .variant-card .icon {
            font-size: 28px;
            display: block;
            margin-bottom: 6px;
        }
        .variant-card .name {
            font-weight: 700;
            font-size: 14px;
            color: var(--text);
        }
        .variant-card .price {
            font-weight: 800;
            color: var(--green);
            font-size: 15px;
            margin-top: 4px;
        }
        .variant-card .desc {
            font-size: 10px;
            color: var(--text-gray);
            margin-top: 2px;
        }
        .variant-detail-view {
            display: none;
        }
        .variant-detail-view.active {
            display: block;
        }
        .back-to-variants {
            background: none;
            border: none;
            color: var(--green);
            font-weight: 600;
            cursor: pointer;
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 0;
            margin-bottom: 12px;
        }
        .back-to-variants:hover {
            text-decoration: underline;
        }

        /* ===== PEOPLE ALSO BOUGHT ===== */
        .people-also-bought {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--border);
        }
        .people-also-bought-title {
            font-size: 12px;
            font-weight: 800;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: .05em;
            margin-bottom: 10px;
        }
        .people-also-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }
        .people-also-item {
            background: var(--bg);
            border-radius: var(--radius-md);
            padding: 10px 8px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid var(--border);
        }
        .people-also-item:hover {
            border-color: var(--green);
            background: var(--green-light);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        .people-also-item .pa-icon {
            font-size: 22px;
            display: block;
            margin-bottom: 3px;
        }
        .people-also-item .pa-name {
            font-size: 10px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.2;
        }
        .people-also-item .pa-price {
            font-size: 11px;
            font-weight: 800;
            color: var(--green);
        }
        .people-also-item .pa-add-feedback {
            font-size: 8px;
            color: var(--green);
            font-weight: 700;
            display: block;
            margin-top: 2px;
            opacity: 0;
            transition: opacity .3s;
        }
        .people-also-item .pa-add-feedback.show {
            opacity: 1;
        }

        /* ===== CONTINUE SHOPPING ===== */
        .continue-shopping-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 700;
            background: var(--border);
            color: var(--text-gray);
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
            margin-bottom: 12px;
        }
        .continue-shopping-btn:hover {
            background: var(--green);
            color: #fff;
        }

        /* ===== LOGIN MODAL ===== */
        .login-modal-top {
            background: linear-gradient(135deg, #14532D, #16A34A);
            padding: 28px 24px 24px;
            text-align: center;
        }
        .login-modal-icon {
            font-size: 36px;
            margin-bottom: 8px;
        }
        .login-modal-title {
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 4px;
        }
        .login-modal-subtitle {
            font-size: 12.5px;
            color: rgba(255, 255, 255, .8);
        }
        .login-modal-body {
            padding: 24px;
        }
        .login-form-panel {
            display: none;
        }
        .login-form-panel.active {
            display: block;
        }
        .login-divider {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 16px 0;
            color: #9CA3AF;
            font-size: 12px;
        }
        .login-divider::before,
        .login-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border);
        }
        .login-wa-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--whatsapp);
            color: #fff;
            border: none;
            padding: 12px;
            border-radius: 10px;
            font-size: 13.5px;
            font-weight: 700;
            cursor: pointer;
            font-family: inherit;
            transition: var(--transition);
        }
        .login-wa-btn:hover {
            background: #1ebe5a;
        }
        .login-forgot {
            font-size: 12px;
            color: var(--green);
            text-align: right;
            margin-top: 6px;
            cursor: pointer;
            display: block;
        }
        .login-footer-text {
            font-size: 12px;
            color: #9CA3AF;
            text-align: center;
            margin-top: 14px;
        }
        .login-footer-text span {
            color: var(--green);
            cursor: pointer;
            font-weight: 600;
        }

        /* ===== COMING SOON ===== */
        .coming-soon-box {
            padding: 32px 28px;
            text-align: center;
            max-width: 360px;
            width: 100%;
        }
        .coming-soon-icon {
            font-size: 48px;
            margin-bottom: 14px;
        }
        .coming-soon-title {
            font-size: 18px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 6px;
        }
        .coming-soon-sub {
            font-size: 13px;
            color: var(--text-gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .coming-soon-btns {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .coming-soon-btns .btn-wa {
            justify-content: center;
            width: 100%;
        }
        .coming-soon-btns button {
            width: 100%;
            padding: 11px;
            border: 1.5px solid var(--border);
            background: #fff;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            font-family: inherit;
            color: var(--text-gray);
        }
        .coming-soon-btns button:hover {
            background: var(--bg);
        }

        /* ===== STICKY MOBILE BAR ===== */
        .sticky-mobile-bar {
            display: none;
            position: fixed;
            right: 18px;
            bottom: 18px;
            left: auto;
            background: transparent;
            border: 0;
            box-shadow: none;
            padding: 0;
            z-index: 350;
            pointer-events: none;
        }
        .sticky-mobile-bar a {
            pointer-events: auto;
            width: 56px;
            height: 56px;
            min-width: 56px;
            padding: 0;
            border-radius: 50%;
            box-shadow: 0 8px 24px rgba(37, 211, 102, .42);
            background: var(--whatsapp);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        .sticky-mobile-bar a svg {
            width: 27px;
            height: 27px;
            fill: #fff;
        }
        .sticky-mobile-bar a:hover {
            background: #1ebe5a;
            transform: translateY(-2px);
        }

        /* ===== CART PANEL ===== */
        .cart-panel {
            display: none;
            position: fixed;
            top: 70px;
            right: 16px;
            width: 380px;
            max-height: 480px;
            background: #fff;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
            z-index: 301;
            overflow: hidden;
            animation: slideDown .3s ease;
            border: 1px solid var(--border);
        }
        .cart-panel.open {
            display: block;
        }
        .cart-panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 16px;
            border-bottom: 1px solid var(--border);
            background: #fafafa;
        }
        .cart-panel-header h3 {
            font-size: 14px;
            font-weight: 800;
            color: var(--text);
        }
        .cart-panel-header .close-btn {
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            color: var(--text-gray);
            padding: 0 4px;
        }
        .cart-panel-body {
            max-height: 300px;
            overflow-y: auto;
            padding: 8px 12px;
        }
        .cart-empty {
            text-align: center;
            padding: 24px 0;
            color: var(--text-gray);
            font-size: 12px;
        }
        .cart-empty .empty-icon {
            font-size: 34px;
            display: block;
            margin-bottom: 8px;
        }
        .cart-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 0;
            border-bottom: 1px solid #f3f4f6;
        }
        .cart-item:last-child {
            border-bottom: none;
        }
        .cart-item-info {
            flex: 1;
        }
        .cart-item-name {
            font-size: 11.5px;
            font-weight: 600;
            color: var(--text);
        }
        .cart-item-detail {
            font-size: 10px;
            color: var(--text-gray);
        }
        .cart-item-qty {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .cart-item-qty button {
            width: 22px;
            height: 22px;
            border: 1px solid var(--border);
            border-radius: 4px;
            background: #fff;
            cursor: pointer;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        .cart-item-qty button:hover {
            background: var(--green-light);
            border-color: var(--green);
        }
        .cart-item-qty span {
            min-width: 18px;
            text-align: center;
            font-weight: 700;
            font-size: 12px;
        }
        .cart-item-price {
            font-size: 11px;
            font-weight: 700;
            color: var(--green);
            margin-left: 6px;
            min-width: 44px;
            text-align: right;
        }
        .cart-item-remove {
            background: none;
            border: none;
            color: #EF4444;
            cursor: pointer;
            font-size: 14px;
            padding: 0 3px;
            opacity: .6;
            transition: var(--transition);
        }
        .cart-item-remove:hover {
            opacity: 1;
        }
        .cart-panel-footer {
            padding: 10px 16px;
            border-top: 1px solid var(--border);
            background: #fafafa;
        }
        .cart-total {
            display: flex;
            justify-content: space-between;
            font-weight: 800;
            font-size: 14px;
            color: var(--text);
            margin-bottom: 8px;
        }
        .cart-total-amount {
            color: var(--green);
        }
        .cart-checkout {
            width: 100%;
            padding: 9px;
            background: var(--whatsapp);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: var(--transition);
            font-family: inherit;
        }
        .cart-checkout:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        .cart-checkout:hover:not(:disabled) {
            background: #1ebe5a;
        }
        /* Bundle titles should show ONE language only (matching the SO/EN toggle),
           not both languages at once. */
        .bundle-ecard-somali,
        .bundle-modal-somali {
            display: none !important;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width:1200px) {
            .footer-top {
                grid-template-columns: 1fr 1fr 1fr
            }
            .footer-right {
                grid-column: span 1
            }
        }
        @media (max-width:1100px) {
            .bundles-grid {
                grid-template-columns: repeat(2, 1fr)
            }
            #productGrid {
                grid-template-columns: repeat(3, 1fr)
            }
            .featured-product-inner {
                grid-template-columns: 1fr 1fr;
                gap: 30px
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr)
            }
            .people-also-grid {
                grid-template-columns: repeat(2, 1fr)
            }
        }
        @media (max-width:992px) {
            .hero-slide {
                min-height: 360px;
                padding: 30px 4% 20px;
                gap: 20px
            }
            .hero-img-box {
                height: 260px;
                max-width: 380px
            }
            h1 {
                font-size: 30px
            }
            .nav-links {
                gap: 14px
            }
            .nav-links a {
                font-size: 12px
            }
            .featured-product-image img {
                height: 300px
            }
            .featured-product-content h2 {
                font-size: 24px
            }
            .footer-top {
                grid-template-columns: 1fr 1fr
            }
            .delivery-grid {
                grid-template-columns: 1fr
            }
            .delivery-map {
                display: block
            }
            .delivery-map iframe {
                height: 240px
            }
            .how-inner {
                grid-template-columns: 1fr;
                gap: 24px
            }
            .trust-inner {
                grid-template-columns: repeat(2, 1fr)
            }
        }
        @media (max-width:900px) {
            .hero-slide {
                grid-template-columns: 1fr;
                min-height: auto;
                padding: 24px 4% 16px
            }
            .hero-img-area {
                display: none
            }
            .hero-slide.slide-2 .hero-img-area,
            .hero-slide.slide-3 .hero-img-area {
                display: none
            }
            h1 {
                font-size: 28px
            }
            .hero-stats {
                gap: 8px
            }
            .hero-stat {
                min-width: 54px;
                padding: 6px 5px
            }
            #productGrid {
                grid-template-columns: repeat(3, 1fr)
            }
            .cart-panel {
                width: 340px;
                right: 10px;
                top: 70px
            }
            .variant-grid {
                grid-template-columns: 1fr 1fr
            }
            .featured-product-inner {
                grid-template-columns: 1fr;
                gap: 24px
            }
            .featured-product-image img {
                height: 280px
            }
            .categories-scroll {
                gap: 8px
            }
            .cat-pill {
                width: 68px
            }
            .cat-pill-icon {
                width: 46px;
                height: 46px;
                font-size: 20px
            }
            .cat-pill-label {
                font-size: 10px
            }
            .cat-pill-label-sub {
                font-size: 8px
            }
            .featured-card {
                min-width: 150px
            }
            .featured-card .image-wrap {
                height: 120px
            }
        }
        @media (max-width:768px) {
            .nav-search {
                display: none
            }
            .nav-links {
                display: none
            }
            .mobile-toggle {
                display: flex
            }
            .nav-right .nav-icon-btn#mobileSearchBtn {
                display: flex !important
            }
            .bundles-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px
            }
            #productGrid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px
            }
            .reviews-grid {
                grid-template-columns: 1fr
            }
            .how-steps {
                flex-wrap: wrap;
                gap: 12px
            }
            .how-arrow {
                display: none
            }
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 18px
            }
            .footer-right {
                grid-column: span 2;
                text-align: left
            }
            .footer-social {
                justify-content: flex-start
            }
            .popular,
            .how,
            .trust,
            .delivery-section,
            .reviews-section {
                padding-left: 4%;
                padding-right: 4%
            }
            .sticky-mobile-bar {
                display: flex
            }
            .cart-panel {
                width: 320px;
                right: 8px;
                top: 65px;
                max-height: 400px
            }
            .cart-panel-body {
                max-height: 220px
            }
            .bundle-ecard-order {
                padding: 8px 12px;
                font-size: 11px;
                min-height: 36px
            }
            .btn-wa {
                padding: 10px 16px;
                font-size: 13px;
                min-height: 40px
            }
            .hero-slide {
                padding: 20px 4% 14px
            }
            h1 {
                font-size: 24px;
                margin-bottom: 6px
            }
            .hero-sub {
                font-size: 12px;
                margin-bottom: 14px
            }
            .hero-stats {
                gap: 6px
            }
            .hero-stat {
                min-width: 48px;
                padding: 5px 4px
            }
            .hero-stat-icon {
                font-size: 13px
            }
            .hero-stat-label {
                font-size: 8px
            }
            .hero-stat-sub {
                font-size: 7px
            }
            .hero-tagline {
                font-size: 10px;
                margin-top: 5px
            }
            .btn-wa {
                padding: 10px 16px;
                font-size: 12px
            }
            .hero-controls {
                bottom: 8px
            }
            .product-item .product-name {
                font-size: 13px;
                min-height: 32px
            }
            .product-item .product-price {
                font-size: 14px
            }
            .product-item .btn-add,
            .product-item .btn-remove {
                width: 28px;
                height: 28px;
                font-size: 16px
            }
            .variant-grid {
                grid-template-columns: 1fr 1fr
            }
            .featured-product-content h2 {
                font-size: 22px
            }
            .btn-cta-primary,
            .btn-cta-secondary {
                padding: 10px 20px;
                font-size: 13px
            }
            .payment-inner {
                gap: 8px
            }
            .payment-label {
                font-size: 11px
            }
            .payment-badge {
                padding: 4px 10px;
                font-size: 10px;
                min-height: 30px;
                min-width: 40px
            }
            .payment-badge img {
                height: 18px
            }
            .delivery-district-item {
                padding: 10px 12px
            }
            .delivery-district-name {
                font-size: 13px
            }
            .delivery-map iframe {
                height: 200px
            }
            .trust-inner {
                grid-template-columns: 1fr 1fr;
                gap: 12px
            }
            .trust-item {
                gap: 8px
            }
            .trust-icon {
                width: 34px;
                height: 34px;
                font-size: 14px
            }
            .trust-item h4 {
                font-size: 11px
            }
            .trust-item p {
                font-size: 9.5px
            }
            .featured-carousel-section {
                padding: 16px 4% 6px
            }
            .featured-card {
                min-width: 130px
            }
            .featured-card .image-wrap {
                height: 100px
            }
            .featured-card .info .name {
                font-size: 12px
            }
            .featured-card .info .price {
                font-size: 13px
            }
            .people-also-grid {
                grid-template-columns: repeat(2, 1fr)
            }
        }
        @media (max-width:600px) {
            .footer-top {
                grid-template-columns: 1fr;
                gap: 16px
            }
            .footer-right {
                grid-column: span 1
            }
            .footer-social {
                justify-content: flex-start
            }
            .payment-badges {
                gap: 6px
            }
            .payment-badge {
                font-size: 9px;
                padding: 3px 8px;
                min-height: 26px;
                min-width: 34px
            }
            .payment-badge img {
                height: 14px
            }
            .payment-label {
                font-size: 10px
            }
        }
        @media (max-width:480px) {
            .bundles-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px
            }
            .bundle-ecard-img {
                height: 130px
            }
            .bundle-ecard-body {
                padding: 10px
            }
            .bundle-ecard-title {
                font-size: 12px
            }
            .bundle-ecard-somali {
                font-size: 10px
            }
            .bundle-ecard-item {
                font-size: 10px
            }
            .bundle-ecard-price {
                font-size: 16px
            }
            .bundle-ecard-order {
                font-size: 10px;
                padding: 6px 10px;
                min-height: 30px
            }
            .trust-inner {
                grid-template-columns: 1fr
            }
            .cart-panel {
                width: 290px;
                right: 6px;
                top: 60px
            }
            .cart-panel-body {
                max-height: 180px
            }
            .cart-item-name {
                font-size: 10.5px
            }
            .cart-item-price {
                font-size: 10px;
                min-width: 36px
            }
            .hero-slide {
                padding: 16px 4% 12px
            }
            h1 {
                font-size: 22px
            }
            .hero-sub {
                font-size: 11px
            }
            .hero-stat {
                min-width: 40px;
                padding: 3px 3px
            }
            .hero-stat-icon {
                font-size: 11px
            }
            .hero-stat-label {
                font-size: 7px
            }
            .hero-stat-sub {
                font-size: 6px
            }
            .btn-wa {
                padding: 8px 12px;
                font-size: 11px
            }
            .btn-outline {
                padding: 8px 12px;
                font-size: 11px
            }
            #productGrid {
                grid-template-columns: 1fr 1fr;
                gap: 8px
            }
            .product-item {
                border-radius: var(--radius-lg)
            }
            .product-item .product-name {
                font-size: 12px;
                min-height: 28px
            }
            .product-item .product-price {
                font-size: 13px
            }
            .product-item .btn-add,
            .product-item .btn-remove {
                width: 24px;
                height: 24px;
                font-size: 14px
            }
            .sticky-mobile-bar {
                right: 12px;
                bottom: 12px
            }
            .sticky-mobile-bar a {
                width: 48px;
                height: 48px;
                min-width: 48px
            }
            .sticky-mobile-bar a svg {
                width: 22px;
                height: 22px
            }
            .variant-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px
            }
            .variant-card .icon {
                font-size: 22px
            }
            .variant-card .name {
                font-size: 12px
            }
            .variant-card .price {
                font-size: 13px
            }
            .payment-methods-row {
                grid-template-columns: 1fr 1fr
            }
            .featured-product-image img {
                height: 200px
            }
            .featured-product-content h2 {
                font-size: 20px
            }
            .featured-product-content .price {
                font-size: 24px
            }
            .btn-cta-primary,
            .btn-cta-secondary {
                padding: 8px 16px;
                font-size: 12px;
                width: 100%;
                justify-content: center
            }
            .featured-product-content .actions {
                flex-direction: column;
                gap: 8px
            }
            .categories-scroll {
                gap: 6px
            }
            .cat-pill {
                width: 58px
            }
            .cat-pill-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
                border-radius: 10px
            }
            .cat-pill-label {
                font-size: 9px
            }
            .cat-pill-label-sub {
                font-size: 8px
            }
            .section-title {
                font-size: 17px
            }
            .section-sub-text {
                font-size: 11px
            }
            .modal,
            .bundle-modal,
            .login-modal {
                max-width: 100%;
                margin: 0 8px;
                border-radius: 16px
            }
            .bundle-modal-header {
                padding: 16px 16px 12px
            }
            .bundle-modal-body {
                padding: 12px 16px
            }
            .bundle-modal-footer {
                padding: 0 16px 16px;
                flex-direction: column
            }
            .bm-btn-outline,
            .bm-btn-wa {
                width: 100%;
                flex: none
            }
            .bm-price-left .price {
                font-size: 22px
            }
            .modal-price-val {
                font-size: 18px
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 4px
            }
            .footer-copy,
            .footer-made {
                font-size: 10px
            }
            .delivery-cta-box {
                padding: 16px
            }
            .delivery-cta-box h4 {
                font-size: 14px
            }
            .delivery-cta-box p {
                font-size: 11px
            }
            .delivery-district-item {
                padding: 8px 10px
            }
            .delivery-district-check {
                width: 22px;
                height: 22px;
                font-size: 10px
            }
            .delivery-district-name {
                font-size: 12px
            }
            .delivery-district-note {
                font-size: 10px
            }
            .delivery-map iframe {
                height: 160px
            }
            .delivery-map-badge {
                padding: 6px 10px
            }
            .delivery-map-badge .coverage {
                font-size: 13px
            }
            .delivery-map-badge div {
                font-size: 9px
            }
            .review-card {
                padding: 14px
            }
            .review-text {
                font-size: 12px
            }
            .review-name {
                font-size: 12px
            }
            .help-card {
                padding: 14px
            }
            .help-card h4 {
                font-size: 13px
            }
            .help-card p {
                font-size: 11px
            }
            .help-wa {
                font-size: 12px;
                padding: 8px
            }
            .help-contact-item {
                font-size: 11px
            }
            .how-title {
                font-size: 17px;
                margin-bottom: 18px
            }
            .how-circle {
                width: 48px;
                height: 48px;
                font-size: 18px
            }
            .how-step h4 {
                font-size: 10px
            }
            .how-step p {
                font-size: 9px
            }
            .ann-item {
                font-size: 10px;
                padding: 0 16px
            }
            .ann-sep {
                font-size: 11px
            }
            .nav-logo-text {
                font-size: 16px
            }
            .nav-logo-icon {
                width: 30px;
                height: 30px
            }
            .nav-logo-icon svg {
                width: 16px;
                height: 16px
            }
            .nav-icon-btn {
                width: 30px;
                height: 30px
            }
            .nav-icon-btn svg {
                width: 14px;
                height: 14px
            }
            .nav-cart-btn .cart-count {
                width: 16px;
                height: 16px;
                font-size: 8px;
                top: -5px;
                right: -5px
            }
            .navbar {
                padding: 8px 4%;
                gap: 10px
            }
            .nav-right {
                gap: 4px
            }
            .mobile-menu a {
                font-size: 13px;
                padding: 10px 0;
                min-height: 38px
            }
            .mobile-menu-wa {
                font-size: 13px;
                padding: 10px;
                min-height: 40px
            }
            .featured-carousel-section {
                padding: 12px 4% 4px
            }
            .featured-card {
                min-width: 110px
            }
            .featured-card .image-wrap {
                height: 80px
            }
            .featured-card .info {
                padding: 6px 8px 8px
            }
            .featured-card .info .name {
                font-size: 11px
            }
            .featured-card .info .price {
                font-size: 12px
            }
            .hero-trust-bar .trust-item {
                font-size: 10px
            }
            .hero-trust-bar {
                gap: 12px
            }
            .people-also-grid {
                grid-template-columns: repeat(2, 1fr)
            }
        }
        @media (max-width:360px) {
            .bundles-grid {
                grid-template-columns: 1fr 1fr;
                gap: 6px
            }
            #productGrid {
                grid-template-columns: 1fr 1fr;
                gap: 6px
            }
            .bundle-ecard-img {
                height: 100px
            }
            .bundle-ecard-body {
                padding: 8px
            }
            .bundle-ecard-title {
                font-size: 11px
            }
            .bundle-ecard-somali {
                font-size: 9px
            }
            .bundle-ecard-item {
                font-size: 9px
            }
            .bundle-ecard-price {
                font-size: 14px
            }
            .bundle-ecard-order {
                font-size: 9px;
                padding: 4px 8px;
                min-height: 26px
            }
            .product-item .product-name {
                font-size: 11px;
                min-height: 24px
            }
            .product-item .product-price {
                font-size: 12px
            }
            .product-item .btn-add,
            .product-item .btn-remove {
                width: 20px;
                height: 20px;
                font-size: 12px
            }
            .product-item .product-info {
                padding: 6px 6px 4px
            }
            h1 {
                font-size: 18px
            }
            .hero-sub {
                font-size: 10px
            }
            .hero-stat {
                min-width: 34px;
                padding: 2px 2px
            }
            .hero-stat-icon {
                font-size: 10px
            }
            .hero-stat-label {
                font-size: 6px
            }
            .hero-stat-sub {
                font-size: 5px
            }
            .btn-wa {
                font-size: 10px;
                padding: 6px 10px;
                min-height: 32px
            }
            .btn-outline {
                font-size: 10px;
                padding: 6px 10px
            }
            .featured-product-content h2 {
                font-size: 18px
            }
            .featured-product-content .price {
                font-size: 20px
            }
            .btn-cta-primary,
            .btn-cta-secondary {
                font-size: 11px;
                padding: 6px 12px
            }
            .section-title {
                font-size: 15px
            }
            .section-sub-text {
                font-size: 10px
            }
            .cart-panel {
                width: 260px;
                right: 4px;
                top: 56px
            }
            .cart-panel-body {
                max-height: 150px
            }
            .cart-item-name {
                font-size: 9.5px
            }
            .cart-item-price {
                font-size: 9px;
                min-width: 30px
            }
            .cart-item-qty button {
                width: 18px;
                height: 18px;
                font-size: 10px
            }
            .cart-item-qty span {
                font-size: 10px;
                min-width: 14px
            }
            .modal-title {
                font-size: 16px
            }
            .modal-price-val {
                font-size: 16px
            }
            .modal-input {
                padding: 8px 10px;
                font-size: 12px
            }
            .modal-submit {
                padding: 10px;
                font-size: 12px
            }
            .payment-method-option {
                padding: 4px 8px
            }
            .payment-method-option label {
                font-size: 10px
            }
            .payment-method-option .pm-icon {
                font-size: 13px
            }
            .delivery-district-item {
                padding: 6px 8px;
                gap: 8px
            }
            .delivery-district-check {
                width: 18px;
                height: 18px;
                font-size: 8px
            }
            .delivery-district-name {
                font-size: 11px
            }
            .delivery-district-note {
                font-size: 9px
            }
            .delivery-map iframe {
                height: 130px
            }
            .delivery-cta-box {
                padding: 12px
            }
            .delivery-cta-box h4 {
                font-size: 13px
            }
            .delivery-cta-box p {
                font-size: 10px
            }
            .trust-item {
                gap: 6px
            }
            .trust-icon {
                width: 28px;
                height: 28px;
                font-size: 12px
            }
            .trust-item h4 {
                font-size: 10px
            }
            .trust-item p {
                font-size: 8.5px
            }
            .footer-col h4 {
                font-size: 11px
            }
            .footer-col ul a {
                font-size: 10px
            }
            .footer-desc {
                font-size: 10px
            }
            .footer-logo {
                font-size: 16px
            }
            .footer-right-logo {
                font-size: 16px
            }
            .social-a {
                width: 28px;
                height: 28px
            }
            .social-a svg {
                width: 14px;
                height: 14px
            }
            .featured-card {
                min-width: 90px
            }
            .featured-card .image-wrap {
                height: 70px
            }
            .featured-card .info .name {
                font-size: 10px
            }
            .featured-card .info .price {
                font-size: 11px
            }
            .people-also-grid {
                grid-template-columns: 1fr 1fr
            }
        }

        .nav-right { gap: 12px !important; }
        .nav-links { gap: 26px !important; }
        .nav-icon-btn { width: 38px; height: 38px; }
        @media (max-width: 768px) {
            .bundles-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
            #productGrid { grid-template-columns: repeat(2, 1fr) !important; }
        }
        @media (max-width: 480px) {
            .bundles-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
            .bundle-ecard-img { height: 110px; }
            .bundle-ecard-items { display: none; }
            #productGrid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
        }


        .product-item .product-image img,
        .featured-card .image-wrap img {
            background: #f3f4f6;
            object-fit: cover;
        }
        .product-item .product-image img[src=""],
        .featured-card .image-wrap img[src=""] {
            opacity: 0;
        }


        .crypto-network-box {
            margin: 12px 0 14px;
            padding: 12px;
            background: #fff;
            border: 1.5px solid #FCD34D;
            border-radius: 12px;
            clear: both;
            width: 100%;
        }
        .crypto-network-label {
            font-size: 12px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }
        .crypto-network-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 6px;
            margin-bottom: 10px;
        }
        .crypto-net-btn {
            border: 1.5px solid var(--border);
            background: #fff;
            border-radius: 8px;
            padding: 8px 4px;
            font-size: 11px;
            font-weight: 800;
            cursor: pointer;
            font-family: inherit;
            color: var(--text);
            line-height: 1.25;
            transition: var(--transition);
        }
        .crypto-net-btn span {
            display: block;
            font-size: 9px;
            font-weight: 600;
            color: var(--text-gray);
            margin-top: 2px;
        }
        .crypto-net-btn:hover {
            border-color: #D97706;
        }
        .crypto-net-btn.active {
            border-color: #D97706;
            background: #FEF3C7;
            color: #92400E;
        }
        .crypto-address-panel {
            background: #fff;
            border: 1px solid #FCD34D;
            border-radius: 8px;
            padding: 10px;
        }
        .crypto-addr-label {
            font-size: 11px;
            color: var(--text-gray);
            margin-bottom: 6px;
        }
        .crypto-addr-row {
            display: flex;
            gap: 6px;
            align-items: center;
        }
        .crypto-addr-row code {
            flex: 1;
            font-size: 11px;
            word-break: break-all;
            background: #f9fafb;
            padding: 8px;
            border-radius: 6px;
            border: 1px solid var(--border);
            color: var(--text);
            font-family: ui-monospace, monospace;
        }
        .crypto-copy-btn {
            flex-shrink: 0;
            background: var(--green);
            color: #fff;
            border: none;
            border-radius: 6px;
            padding: 8px 12px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            font-family: inherit;
        }
        .crypto-copy-btn:hover { background: var(--green-dark); }
        .crypto-addr-hint {
            font-size: 10px;
            color: #9CA3AF;
            margin-top: 8px;
            line-height: 1.45;
        }
        @media (max-width: 480px) {
            .crypto-network-row { grid-template-columns: 1fr 1fr; }
        }


        .badge-local {
            border-color: #D1D5DB;
            background: #fff;
            color: var(--text);
        }


        .payment-badges {
            display: flex !important;
            flex-wrap: wrap !important;
            gap: 10px !important;
            justify-content: center !important;
            align-items: center !important;
            border: none !important;
            background: transparent !important;
            padding: 0 !important;
        }
        .payment-badge {
            margin: 0 !important;
        }
        .payment-badge.badge-local {
            border: 1.5px solid #D1D5DB;
            background: #fff;
            border-radius: 20px;
            padding: 6px 14px;
        }


        .bank-options-box {
            margin: 10px 0 14px;
            padding: 12px;
            background: #fff;
            border: 1.5px solid #D1D5DB;
            border-radius: 12px;
            width: 100%;
        }
        .bank-options-label {
            font-size: 12px;
            font-weight: 700;
            color: var(--text-gray);
            margin-bottom: 8px;
        }
        .bank-options-grid, .bank-options-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .bank-opt-btn {
            border: 1.5px solid #D1D5DB;
            background: #fff;
            border-radius: 20px;
            padding: 8px 14px;
            font-size: 12px;
            font-weight: 800;
            cursor: pointer;
            font-family: inherit;
            color: var(--text);
            transition: var(--transition);
        }
        .bank-opt-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .bank-opt-btn.active {
            border-color: var(--green);
            box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.2);
            background: #fff;
        }


        .partners-strip {
            background: #fff;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 20px 5%;
            margin-top: 8px;
        }
        .partners-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }
        .partners-label {
            font-size: 14px;
            font-weight: 800;
            color: var(--text);
            text-align: center;
        }
        .partners-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            align-items: center;
        }
        .partner-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            padding: 8px 18px;
            border-radius: 20px;
            border: 1.5px solid #D1D5DB;
            background: #F9FAFB;
            transition: var(--transition);
        }
        .partner-badge:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            border-color: var(--green);
            background: #fff;
        }
        .partner-badge-text {
            font-size: 13px;
            font-weight: 800;
            color: var(--text);
            letter-spacing: 0.02em;
        }
        .partners-hint {
            font-size: 11px;
            color: #9CA3AF;
            text-align: center;
            margin: 0;
        }


        /* ===== Bundles grid (refined) ===== */
        .bundles-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
            width: 100%;
        }
        .bundle-ecard {
            background: #fff;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-xl);
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            box-shadow: 0 1px 3px rgba(0,0,0,0.04);
        }
        .bundle-ecard:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: var(--green);
        }
        .bundle-ecard-img {
            width: 100%;
            height: 180px;
            overflow: hidden;
            position: relative;
            background: #F3F4F6;
            flex-shrink: 0;
        }
        .bundle-ecard-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.35s ease;
        }
        .bundle-ecard:hover .bundle-ecard-img img {
            transform: scale(1.04);
        }
        @media (max-width: 1100px) {
            .bundles-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 16px;
            }
        }
        @media (max-width: 768px) {
            .bundles-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
                gap: 12px !important;
            }
            .bundle-ecard-img {
                height: 140px;
            }
        }
        @media (max-width: 480px) {
            .bundles-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
                gap: 10px !important;
            }
            .bundle-ecard-img {
                height: 120px;
            }
            .bundle-ecard-items {
                display: none;
            }
        }
        @media (max-width: 360px) {
            .bundles-grid {
                gap: 8px !important;
            }
            .bundle-ecard-img {
                height: 110px;
            }
        }

    .variant-detail-view { display: none; }
.variant-detail-view.active { display: block !important; }

.auth-social-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.auth-social-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1.5px solid #E5E7EB;
  background: #fff; font-size: 14px; font-weight: 700; cursor: pointer; color: #111;
}
.auth-apple { background: #111; color: #fff; border-color: #111; }
.auth-phone { background: #ECFDF5; border-color: #A7F3D0; color: #065F46; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 14px 0; color: #9CA3AF; font-size: 12px; font-weight: 600; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: #E5E7EB; }
.cart-checkout.is-disabled { opacity: 0.5; cursor: not-allowed; }

/* checkout-zoom-v1 */
