/* ==========================================================================
   Nunua Kwetu - Buyer Landing stylesheet (standalone)
   --------------------------------------------------------------------------
   Extracted from the WordPress template page-buyer-landing.php and decoupled
   from WordPress, Astra and WooCommerce: theme/plugin UI suppression rules were
   removed because none of that markup exists in this application.
   ========================================================================== */
:root {
    --bg-deep: #0B1120;
    --bg-primary: #0F172A;
    --bg-card: rgba(255,255,255,0.04);
    --bg-card-hover: rgba(255,255,255,0.07);
    --bg-elevated: rgba(255,255,255,0.06);
    --border-subtle: rgba(255,255,255,0.06);
    --border-gold: rgba(212,175,55,0.15);
    --border-gold-active: #D4AF37;
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    --accent-gold: #D4AF37;
    --accent-gold-dark: #B8860B;
    --accent-green: #4CAF50;
    --accent-red: #EF4444;
    --accent-amber: #F59E0B;
    --accent-blue: #3B82F6;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --radius-full: 9999px;
    --shadow-gold: 0 0 20px rgba(212,175,55,0.15);
    --shadow-gold-strong: 0 0 40px rgba(212,175,55,0.25);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
    --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    --transition-smooth: 0.3s cubic-bezier(0.2, 0, 0, 1);
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
.buyer-landing { max-width: 1100px; margin: 0 auto; padding: 0 16px 120px; }
.section-hero { text-align: center; padding: clamp(28px, 6vw, 48px) 0 clamp(16px, 3vw, 28px); position: relative; z-index: 1; }
.section-hero .logo { max-height: clamp(32px, 5vw, 48px); width: auto; margin-bottom: 6px; filter: drop-shadow(0 2px 8px rgba(212,175,55,0.2)); }
.section-hero .tagline { font-size: clamp(0.78rem, 1.6vw, 0.9rem); color: var(--text-muted); letter-spacing: 0.6px; font-weight: 400; }
.section-ambassador { margin-bottom: clamp(16px, 3vw, 24px); }
.ambassador-card {
    background: var(--bg-card); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-md); padding: clamp(12px, 2.5vw, 18px) clamp(16px, 3vw, 24px);
    border: 1px solid var(--border-gold); display: flex; align-items: center; gap: clamp(10px, 2vw, 14px); flex-wrap: wrap;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}
.ambassador-card:hover { border-color: rgba(212,175,55,0.3); box-shadow: var(--shadow-gold); }
.ambassador-card .avatar { width: clamp(40px, 8vw, 48px); height: clamp(40px, 8vw, 48px); border-radius: 50%; background: linear-gradient(135deg, #D4AF37, #B8860B); display: flex; align-items: center; justify-content: center; font-size: clamp(16px, 3.5vw, 20px); font-weight: 700; color: #0F172A; flex-shrink: 0; box-shadow: 0 2px 12px rgba(212,175,55,0.3); }
.ambassador-card .message { flex:1; min-width: 0; }
.ambassador-card .message .name { font-weight: 700; color: var(--text-primary); font-size: clamp(0.9rem, 1.8vw, 1rem); }
.ambassador-card .message .note { color: var(--text-muted); font-size: clamp(0.75rem, 1.5vw, 0.85rem); white-space: normal; }
.ambassador-card .badge { background: rgba(212,175,55,0.2); color: var(--accent-gold); padding: 4px 14px; border-radius: var(--radius-full); font-size: clamp(0.65rem, 1.3vw, 0.72rem); font-weight: 600; white-space: nowrap; flex-shrink: 0; }
.section-video { margin-bottom: clamp(16px, 3vw, 24px); }
.landing-video-wrap { background: var(--bg-primary); border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16 / 9; position: relative; border: 1px solid rgba(212,175,55,0.1); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.landing-video-wrap iframe { width: 100%; height: 100%; border: none; }
.buyer-checking { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; background: var(--bg-primary); color: var(--text-primary); gap: clamp(10px, 2vw, 14px); padding: 20px; text-align: center; }
.buyer-checking-text { font-size: clamp(0.85rem, 1.7vw, 0.95rem); font-weight: 500; color: var(--text-muted); }
.buyer-spinner { width: clamp(28px, 5vw, 36px); height: clamp(28px, 5vw, 36px); border: 3px solid #1E293B; border-top-color: var(--accent-gold); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }
.progress-bar { width: 70%; max-width: 320px; height: 4px; background: #1E293B; border-radius: 8px; overflow: hidden; margin-top: 4px; }
.progress-fill { width: 0%; height: 100%; background: var(--accent-gold); transition: width 0.3s; }
.refresh-btn { background: var(--accent-gold); border: none; color: #0F172A; padding: 8px 22px; border-radius: var(--radius-full); font-weight: 600; cursor: pointer; margin-top: 12px; font-size: clamp(0.8rem, 1.6vw, 0.9rem); transition: background 0.2s, transform 0.15s; }
.refresh-btn:hover { background: var(--accent-gold-dark); transform: scale(1.03); }
.refresh-btn:active { transform: scale(0.96); }
.section-why { margin-bottom: clamp(20px, 4vw, 32px); text-align: center; }
.section-why .section-title { font-size: clamp(1.1rem, 2.4vw, 1.35rem); font-weight: 700; color: var(--text-primary); margin-bottom: clamp(12px, 2.5vw, 20px); position: relative; display: inline-block; }
.section-why .section-title::after { content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); width: clamp(32px, 6vw, 48px); height: 3px; background: linear-gradient(90deg, var(--accent-gold), transparent); border-radius: 2px; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: clamp(12px, 2.5vw, 16px); }
.why-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: clamp(16px, 3.5vw, 24px) clamp(14px, 3vw, 20px); text-align: center; transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth); }
.why-card:hover { transform: translateY(-3px); border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.why-card .why-icon { font-size: clamp(28px, 6vw, 40px); margin-bottom: 8px; display: block; }
.why-card .why-title { font-weight: 700; color: var(--text-primary); font-size: clamp(0.9rem, 1.8vw, 1rem); margin-bottom: 4px; }
.why-card .why-desc { color: var(--text-muted); font-size: clamp(0.75rem, 1.5vw, 0.85rem); line-height: 1.5; }
.section-products { margin-bottom: clamp(20px, 4vw, 32px); }
.section-products .section-title { font-size: clamp(1.1rem, 2.4vw, 1.35rem); font-weight: 700; color: var(--text-primary); text-align: center; margin-bottom: clamp(12px, 2.5vw, 20px); position: relative; display: block; }
.section-products .section-title::after { content: ''; display: block; margin: 6px auto 0; width: clamp(32px, 6vw, 48px); height: 3px; background: linear-gradient(90deg, var(--accent-gold), transparent); border-radius: 2px; }
.product-grid { display: grid; grid-template-columns: 1fr; gap: clamp(12px, 2.5vw, 20px); }
.product-skeleton { background: var(--bg-card); border-radius: var(--radius-md); padding: 16px; animation: shimmer 1.8s infinite; }
.product-skeleton .skeleton-img { width: 100%; height: clamp(150px, 35vw, 200px); border-radius: var(--radius-sm); background: rgba(255,255,255,0.06); }
.product-skeleton .skeleton-line { height: 14px; background: rgba(255,255,255,0.06); border-radius: 8px; margin-top: 10px; }
.product-skeleton .skeleton-line.short { width: 55%; }
.product-skeleton .skeleton-line.long { width: 85%; }
@keyframes shimmer { 0% { opacity: 0.5; } 50% { opacity: 0.85; } 100% { opacity: 0.5; } }
.product-card { background: var(--bg-card); border-radius: var(--radius-md); padding: clamp(12px, 2.5vw, 16px); border: 2px solid transparent; transition: all var(--transition-smooth); cursor: pointer; position: relative; overflow: hidden; }
.product-card::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(212,175,55,0.06), transparent 60%); opacity: 0; transition: opacity var(--transition-smooth); pointer-events: none; }
.product-card:hover::before { opacity: 1; }
.product-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.35); background: var(--bg-card-hover); box-shadow: var(--shadow-card); }
.product-card.selected { border-color: var(--border-gold-active); background: rgba(212,175,55,0.08); box-shadow: var(--shadow-gold-strong); }
.product-card img { width: 100%; height: clamp(140px, 30vw, 200px); object-fit: cover; border-radius: var(--radius-sm); background: #1E293B; transition: transform 0.4s ease; }
.product-card:hover img { transform: scale(1.03); }
.product-card .badge-sale { position: absolute; top: clamp(8px, 2vw, 12px); right: clamp(8px, 2vw, 12px); background: var(--accent-red); color: var(--text-primary); font-size: clamp(0.65rem, 1.3vw, 0.7rem); font-weight: 700; padding: 3px 12px; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 0.3px; box-shadow: 0 2px 8px rgba(239,68,68,0.3); z-index: 2; }
.product-card h3 { font-size: clamp(0.9rem, 1.8vw, 1rem); color: var(--text-primary); margin: clamp(8px, 2vw, 12px) 0 4px; font-weight: 600; }
.product-card .price { font-size: clamp(1.1rem, 2.4vw, 1.35rem); font-weight: 700; color: var(--accent-gold); }
.product-card .old-price { font-size: clamp(0.8rem, 1.6vw, 0.9rem); color: var(--text-muted); text-decoration: line-through; margin-left: 6px; font-weight: 400; }
.product-card .desc { font-size: clamp(0.75rem, 1.5vw, 0.85rem); color: var(--text-muted); margin-top: 4px; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card .rating { color: var(--accent-amber); font-size: clamp(0.75rem, 1.5vw, 0.85rem); margin: 4px 0 8px; letter-spacing: 1px; }
.product-card .buy-btn { width: 100%; margin-top: clamp(6px, 1.5vw, 10px); background: var(--accent-gold); color: #0F172A; border: none; padding: clamp(9px, 2vw, 11px); border-radius: var(--radius-full); font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.15s; font-size: clamp(0.85rem, 1.7vw, 0.95rem); letter-spacing: 0.2px; }
.product-card .buy-btn:hover { background: var(--accent-gold-dark); transform: scale(1.02); }
.product-card .buy-btn:active { transform: scale(0.96); }
.section-how { margin-bottom: clamp(20px, 4vw, 32px); text-align: center; }
.section-how .section-title { font-size: clamp(1.1rem, 2.4vw, 1.35rem); font-weight: 700; color: var(--text-primary); margin-bottom: clamp(12px, 2.5vw, 20px); position: relative; display: inline-block; }
.section-how .section-title::after { content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); width: clamp(32px, 6vw, 48px); height: 3px; background: linear-gradient(90deg, var(--accent-gold), transparent); border-radius: 2px; }
.how-steps { display: grid; grid-template-columns: 1fr; gap: clamp(14px, 3vw, 20px); }
.how-step { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: clamp(16px, 3.5vw, 24px) clamp(14px, 3vw, 20px); text-align: center; position: relative; transition: transform var(--transition-smooth); }
.how-step:hover { transform: translateY(-3px); }
.how-step .step-number { display: inline-flex; align-items: center; justify-content: center; width: clamp(36px, 8vw, 44px); height: clamp(36px, 8vw, 44px); border-radius: 50%; background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark)); color: #0F172A; font-weight: 800; font-size: clamp(1rem, 2vw, 1.2rem); margin-bottom: 8px; box-shadow: 0 2px 12px rgba(212,175,55,0.3); }
.how-step .step-title { font-weight: 700; color: var(--text-primary); font-size: clamp(0.9rem, 1.8vw, 1rem); margin-bottom: 4px; }
.how-step .step-desc { color: var(--text-muted); font-size: clamp(0.75rem, 1.5vw, 0.85rem); }
.section-payment { margin-bottom: clamp(20px, 4vw, 32px); }
.payment-section { background: var(--bg-card); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: var(--radius-md); padding: clamp(18px, 3.5vw, 28px) clamp(14px, 3vw, 24px); border: 1px solid var(--border-gold); transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth); }
.payment-section.focused { border-color: var(--border-gold-active); box-shadow: var(--shadow-gold); }
.payment-section h3 { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--text-primary); margin-bottom: clamp(10px, 2vw, 14px); text-align: center; }
.payment-row { display: flex; flex-wrap: wrap; gap: clamp(10px, 2vw, 14px); align-items: center; justify-content: center; }
.payment-row input { flex: 1; min-width: 200px; padding: clamp(10px, 2vw, 13px) clamp(14px, 3vw, 20px); border-radius: var(--radius-full); border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: var(--text-primary); font-size: clamp(0.9rem, 1.8vw, 1rem); transition: border-color 0.2s, box-shadow 0.2s; font-family: var(--font-body); }
.payment-row input::placeholder { color: var(--text-dim); }
.payment-row input:focus { outline: none; border-color: var(--accent-gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.2); }
.pay-btn { background: var(--accent-gold); color: #0F172A; font-weight: 700; padding: clamp(10px, 2vw, 13px) clamp(24px, 5vw, 36px); border: none; border-radius: var(--radius-full); font-size: clamp(0.9rem, 1.8vw, 1rem); cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; min-width: clamp(120px, 25vw, 150px); letter-spacing: 0.2px; }
.pay-btn:hover { background: var(--accent-gold-dark); transform: scale(1.02); box-shadow: 0 4px 16px rgba(212,175,55,0.3); }
.pay-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }
.pay-btn .spinner-small { display: inline-block; width: 18px; height: 18px; border: 2px solid rgba(15,23,42,0.3); border-top-color: #0F172A; border-radius: 50%; animation: spin 0.8s linear infinite; vertical-align: middle; }
.payment-status { text-align: center; margin-top: clamp(10px, 2vw, 16px); font-weight: 600; font-size: clamp(0.85rem, 1.7vw, 0.95rem); min-height: 28px; transition: color 0.3s; }
.payment-status.success { color: var(--accent-green); }
.payment-status.error   { color: var(--accent-red); }
.payment-status.pending { color: var(--accent-amber); }
.payment-status.info    { color: var(--accent-blue); }
.section-delivery { margin-bottom: clamp(20px, 4vw, 32px); display: none; }
.section-delivery.visible { display: block; }
.delivery-card { background: var(--bg-card); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: var(--radius-md); padding: clamp(18px, 3.5vw, 28px) clamp(14px, 3vw, 24px); border: 1px solid rgba(74, 175, 80, 0.3); transition: border-color var(--transition-smooth); }
.delivery-card h3 { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--text-primary); margin-bottom: 6px; text-align: center; }
.delivery-card .delivery-subtitle { text-align: center; color: var(--text-muted); font-size: clamp(0.78rem, 1.5vw, 0.85rem); margin-bottom: clamp(12px, 2.5vw, 18px); }
.delivery-form { display: grid; gap: clamp(10px, 2vw, 14px); }
.delivery-form .form-field { display: flex; flex-direction: column; gap: 4px; }
.delivery-form label { font-size: clamp(0.75rem, 1.5vw, 0.82rem); color: var(--text-secondary); font-weight: 500; }
.delivery-form input, .delivery-form textarea { padding: clamp(10px, 2vw, 12px) clamp(12px, 2.5vw, 16px); border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: var(--text-primary); font-size: clamp(0.9rem, 1.8vw, 0.95rem); font-family: var(--font-body); transition: border-color 0.2s, box-shadow 0.2s; resize: vertical; }
.delivery-form input:focus, .delivery-form textarea:focus { outline: none; border-color: var(--accent-gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.15); }
.delivery-form textarea { min-height: 80px; }
.delivery-form .submit-delivery-btn { background: var(--accent-gold); color: #0F172A; font-weight: 700; padding: clamp(10px, 2vw, 13px) clamp(24px, 5vw, 36px); border: none; border-radius: var(--radius-full); font-size: clamp(0.9rem, 1.8vw, 1rem); cursor: pointer; transition: background 0.2s, transform 0.15s; margin-top: 6px; letter-spacing: 0.2px; }
.delivery-form .submit-delivery-btn:hover { background: var(--accent-gold-dark); transform: scale(1.02); }
.delivery-form .submit-delivery-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.delivery-success { display: none; text-align: center; padding: clamp(16px, 3vw, 24px); }
.delivery-success.visible { display: block; }
.delivery-success .success-icon { font-size: clamp(40px, 8vw, 56px); display: block; margin-bottom: 8px; }
.delivery-success h4 { color: var(--accent-green); font-size: clamp(1rem, 2vw, 1.15rem); margin-bottom: 4px; }
.delivery-success p { color: var(--text-muted); font-size: clamp(0.8rem, 1.6vw, 0.9rem); }
.section-testimonials { margin-bottom: clamp(20px, 4vw, 32px); text-align: center; }
.section-testimonials .section-title { font-size: clamp(1.1rem, 2.4vw, 1.35rem); font-weight: 700; color: var(--text-primary); margin-bottom: clamp(12px, 2.5vw, 20px); position: relative; display: inline-block; }
.section-testimonials .section-title::after { content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); width: clamp(32px, 6vw, 48px); height: 3px; background: linear-gradient(90deg, var(--accent-gold), transparent); border-radius: 2px; }
.testimonial-carousel { position: relative; overflow: hidden; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: clamp(18px, 3.5vw, 28px) clamp(14px, 3vw, 24px); }
.testimonial-track { display: flex; transition: transform 0.5s cubic-bezier(0.2, 0, 0, 1); }
.testimonial-slide { min-width: 100%; padding: 0 8px; }
.testimonial-slide .quote { font-style: italic; color: var(--text-secondary); font-size: clamp(0.85rem, 1.7vw, 0.95rem); line-height: 1.7; margin-bottom: 12px; }
.testimonial-slide .author { font-weight: 700; color: var(--accent-gold); font-size: clamp(0.82rem, 1.6vw, 0.9rem); }
.testimonial-slide .location { color: var(--text-muted); font-size: clamp(0.7rem, 1.4vw, 0.78rem); }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: clamp(12px, 2.5vw, 18px); }
.testimonial-dots .dot { width: clamp(8px, 1.8vw, 10px); height: clamp(8px, 1.8vw, 10px); border-radius: 50%; background: rgba(255,255,255,0.15); border: none; cursor: pointer; transition: background var(--transition-smooth), transform var(--transition-smooth); padding: 0; }
.testimonial-dots .dot.active { background: var(--accent-gold); transform: scale(1.3); }
.testimonial-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); color: var(--text-primary); width: clamp(32px, 7vw, 40px); height: clamp(32px, 7vw, 40px); border-radius: 50%; cursor: pointer; font-size: clamp(14px, 3vw, 18px); display: none; align-items: center; justify-content: center; transition: background 0.2s; z-index: 5; }
.testimonial-nav:hover { background: rgba(255,255,255,0.15); }
.testimonial-nav.prev { left: 8px; }
.testimonial-nav.next { right: 8px; }
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(8px, 1.8vw, 14px); margin: clamp(12px, 2.5vw, 16px) 0 clamp(16px, 3vw, 24px); }
.trust-item { background: var(--bg-elevated); border: 1px solid var(--border-subtle); padding: clamp(4px, 1vw, 6px) clamp(12px, 2.5vw, 16px); border-radius: var(--radius-full); display: flex; align-items: center; gap: 6px; font-size: clamp(0.7rem, 1.4vw, 0.75rem); color: var(--text-secondary); white-space: nowrap; }
.section-footer { text-align: center; padding: clamp(10px, 2vw, 16px) 0; border-top: 1px solid rgba(255,255,255,0.05); margin-top: clamp(8px, 2vw, 12px); }
.section-footer .footer-text { color: var(--text-dim); font-size: clamp(0.7rem, 1.4vw, 0.78rem); }
.toast { position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%); background: #1E293B; color: var(--text-primary); padding: 12px 24px; border-radius: var(--radius-full); border: 1px solid rgba(255,255,255,0.1); font-weight: 500; font-size: clamp(0.8rem, 1.6vw, 0.9rem); box-shadow: 0 8px 32px rgba(0,0,0,0.5); z-index: 9999; opacity: 0; transition: opacity 0.4s ease; pointer-events: none; max-width: 90%; text-align: center; }
.toast.show { opacity: 1; }
.toast.success { border-color: var(--accent-green); }
.toast.error   { border-color: var(--accent-red); }
.toast.info    { border-color: var(--accent-blue); }
@media (min-width: 360px) { .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; } .testimonial-nav { display: flex; } }
@media (min-width: 640px) { .buyer-landing { padding: 0 24px 120px; } .product-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } .why-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } .how-steps { grid-template-columns: repeat(3, 1fr); gap: 16px; } .payment-row { flex-wrap: nowrap; } .delivery-form { grid-template-columns: 1fr 1fr; gap: 14px; } .delivery-form .form-field.full-width { grid-column: 1 / -1; } .testimonial-nav { display: flex; } }
@media (min-width: 1024px) { .buyer-landing { padding: 0 32px 130px; } .product-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } .product-card img { height: 200px; } .why-grid { gap: 20px; } .how-steps { gap: 20px; } .section-hero { padding: 56px 0 32px; } }

/* ==========================================================================
   STANDALONE ADDITIONS
   Rules added while decoupling: gesture support for the testimonials carousel,
   keyboard focus rings, and the labels used by the static product catalogue and
   the no-JavaScript notice.
   ========================================================================== */

.product-empty { grid-column: 1 / -1; text-align: center; color: var(--text-muted); padding: 24px 0; font-size: clamp(0.85rem, 1.7vw, 0.95rem); }
.product-card .price .price-tbd { display: inline-block; font-size: clamp(0.8rem, 1.6vw, 0.92rem); font-weight: 600; color: var(--text-muted); letter-spacing: 0.2px; }

.testimonial-carousel { cursor: grab; }
.testimonial-track { touch-action: pan-y; will-change: transform; }
.testimonial-track.dragging { transition: none; cursor: grabbing; }
.testimonial-carousel.dragging { cursor: grabbing; }

.buy-btn:focus-visible,
.pay-btn:focus-visible,
.refresh-btn:focus-visible,
.submit-delivery-btn:focus-visible,
.testimonial-nav:focus-visible,
.testimonial-dots .dot:focus-visible { outline: 2px solid var(--accent-gold); outline-offset: 2px; }

.no-js-notice { max-width: 640px; margin: 48px auto; padding: 20px 24px; background: var(--bg-card); border: 1px solid var(--border-gold); border-radius: var(--radius-md); color: var(--text-secondary); text-align: center; line-height: 1.7; }
.testimonial-track.no-transition { transition: none; }

.section-ambassador[hidden] { display: none; }
