/* ========================================
   DESIGN TOKENS & RESET
   ======================================== */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --bg-glass: rgba(255,255,255,0.04);
    --bg-glass-border: rgba(255,255,255,0.08);
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    
    --accent: #25D366;
    --accent-glow: rgba(37, 211, 102, 0.3);
    --accent-dark: #1da851;
    --accent-light: #34e876;
    
    --gold: #c9a96e;
    --gold-light: #e8d5a8;
    
    --danger: #ff4757;
    --danger-bg: rgba(255, 71, 87, 0.1);
    
    --success: #2ed573;
    --success-bg: rgba(46, 213, 115, 0.1);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 40px var(--accent-glow);
    
    --font-primary: 'Cairo', 'Tajawal', sans-serif;
    --font-display: 'Tajawal', 'Cairo', sans-serif;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--accent-glow), 0 0 0 0 var(--accent-glow);
    animation: whatsapp-pulse 2s infinite;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px var(--accent-glow);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 4px 20px var(--accent-glow), 0 0 0 0 var(--accent-glow); }
    70% { box-shadow: 0 4px 20px var(--accent-glow), 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 4px 20px var(--accent-glow), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,10,0) 0%,
        rgba(10,10,10,0.3) 30%,
        rgba(10,10,10,0.85) 70%,
        rgba(10,10,10,1) 100%
    );
    z-index: 2;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-image-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 40px 24px 50px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-glass);
    border: 1px solid var(--bg-glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--accent-light);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: dot-pulse 1.5s infinite;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-store-name {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 6px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, var(--gold-light) 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite, fadeInUp 0.8s 0.2s ease both;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s 0.5s ease both;
}

.hero-cta {
    animation: fadeInUp 0.8s 0.6s ease both;
}

.hero-scroll-indicator {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s 0.8s ease both;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--text-muted), transparent);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* ========================================
   CTA BUTTON
   ======================================== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.6s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--accent-glow);
    background: var(--accent-dark);
}

.cta-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.cta-phone {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 600;
    direction: ltr;
}

.cta-btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
    border-radius: var(--radius-xl);
    flex-direction: column;
    gap: 6px;
    width: 100%;
    max-width: 380px;
    justify-content: center;
}

.cta-btn-large .whatsapp-icon {
    width: 32px;
    height: 32px;
}

.cta-phone-large {
    font-size: 1.1rem;
    font-weight: 800;
    opacity: 1;
    direction: ltr;
    letter-spacing: 2px;
}

/* ========================================
   PRODUCT SHOWCASE
   ======================================== */
.product-showcase {
    padding: 60px 0 40px;
    background: var(--bg-primary);
}

.gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--bg-secondary);
    aspect-ratio: 1/1;
}

.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold-light);
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.5;
}

.thumb.active {
    border-color: var(--accent);
    opacity: 1;
    box-shadow: 0 0 15px var(--accent-glow);
}

.thumb:hover {
    opacity: 0.8;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   SECTION TITLES
   ======================================== */
.section-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.4;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 32px;
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem-section {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #0d0d0d 100%);
}

.problem-icon {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 16px;
    animation: shake 3s infinite;
}

@keyframes shake {
    0%, 85%, 100% { transform: rotate(0); }
    88% { transform: rotate(-10deg); }
    91% { transform: rotate(10deg); }
    94% { transform: rotate(-10deg); }
    97% { transform: rotate(10deg); }
}

.problem-title {
    color: var(--danger);
    margin-bottom: 32px;
}

.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.problem-card {
    background: var(--danger-bg);
    border: 1px solid rgba(255, 71, 87, 0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.problem-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.problem-card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ff6b7a;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.solution-section {
    padding: 70px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.solution-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.solution-badge {
    display: inline-block;
    background: var(--success-bg);
    border: 1px solid rgba(46, 213, 115, 0.2);
    color: var(--success);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.solution-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sol-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
}

.sol-check {
    width: 28px;
    height: 28px;
    background: var(--success-bg);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    flex-shrink: 0;
}

.solution-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.solution-img {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 1/1;
    object-fit: cover;
}

.solution-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60px;
    background: var(--accent);
    filter: blur(40px);
    opacity: 0.3;
    border-radius: 50%;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: 70px 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 32px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-lg);
    padding: 24px 18px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    border-color: rgba(37, 211, 102, 0.2);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 14px;
}

.feature-bar {
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
}

.feature-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 4px;
    width: 0%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-bar-fill.animated {
    /* width set dynamically by JS */
}

/* ========================================
   WHY US / COMPARISON SECTION
   ======================================== */
.whyus-section {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.comparison-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 32px;
    position: relative;
}

.comparison-col {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-us {
    background: linear-gradient(180deg, rgba(37, 211, 102, 0.08), rgba(37, 211, 102, 0.02));
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.comparison-others {
    background: linear-gradient(180deg, rgba(255, 71, 87, 0.06), rgba(255, 71, 87, 0.02));
    border: 1px solid rgba(255, 71, 87, 0.15);
}

.comparison-header {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-logo {
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent);
}

.others-logo {
    color: var(--text-muted);
}

.comparison-list {
    list-style: none;
    padding: 16px 14px;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 600;
}

.comparison-item.good {
    color: var(--success);
}

.comparison-item.bad {
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 71, 87, 0.4);
}

.comp-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.comparison-vs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-primary);
    color: var(--text-muted);
    font-weight: 900;
    font-size: 0.75rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--bg-glass-border);
    z-index: 2;
    letter-spacing: 1px;
}

/* ========================================
   LIFESTYLE SECTION
   ======================================== */
.lifestyle-section {
    padding: 70px 0;
    background: var(--bg-primary);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}

.lifestyle-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.lifestyle-card-large {
    grid-column: 1 / -1;
    aspect-ratio: 16/10;
}

.lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lifestyle-card:hover .lifestyle-img {
    transform: scale(1.08);
}

.lifestyle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.lifestyle-tag {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--accent-light);
    margin-bottom: 4px;
}

.lifestyle-label {
    font-size: 0.95rem;
    font-weight: 700;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 70px 0;
    background: var(--bg-secondary);
}

.testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(201, 169, 110, 0.3);
}

.testimonial-stars {
    color: #ffd32a;
    font-size: 1.1rem;
    letter-spacing: 4px;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.author-loc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    opacity: 0.15;
    pointer-events: none;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--danger-bg);
    border: 1px solid rgba(255, 71, 87, 0.25);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--danger);
    margin-bottom: 28px;
    animation: urgency-glow 2s infinite;
}

@keyframes urgency-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.2); }
    50% { box-shadow: 0 0 20px 5px rgba(255, 71, 87, 0.15); }
}

.urgency-pulse {
    width: 10px;
    height: 10px;
    background: var(--danger);
    border-radius: 50%;
    animation: dot-pulse 1s infinite;
}

.cta-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 6px;
    background: linear-gradient(135deg, #fff, var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 32px;
}

.final-cta .cta-btn-large {
    margin: 0 auto 32px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 40px 0;
    background: var(--bg-primary);
    text-align: center;
    border-top: 1px solid var(--bg-glass-border);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE - TABLET & UP
   ======================================== */
@media (min-width: 600px) {
    .container {
        max-width: 560px;
    }
    
    .hero-store-name {
        font-size: 3.5rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (min-width: 900px) {
    .container {
        max-width: 800px;
    }
    
    .hero-store-name {
        font-size: 4rem;
    }
    
    .solution-wrapper {
        flex-direction: row-reverse;
        align-items: center;
    }
    
    .solution-text,
    .solution-image {
        flex: 1;
    }
    
    .lifestyle-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .lifestyle-card-large {
        grid-column: 1;
        aspect-ratio: 1/1;
    }
    
    .testimonials-slider {
        flex-direction: row;
    }
    
    .testimonial-card {
        flex: 1;
    }
}

/* ========================================
   NATIVE APP FEEL - CORE
   ======================================== */

/* iOS safe areas for notch/home indicator */
html {
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

/* Prevent overscroll bounce (native app behavior) */
body {
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: touch;
}

/* Prevent text selection on interactive elements (app-like) */
.cta-btn,
.thumb,
.whatsapp-float,
.hero-badge,
.urgency-badge,
.trust-badge,
.feature-card,
.problem-card,
.lifestyle-card,
.comparison-col {
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Smooth momentum scrolling */
* {
    -webkit-overflow-scrolling: touch;
}

/* ========================================
   NATIVE APP - TOUCH INTERACTIONS
   ======================================== */
@media (hover: none) and (pointer: coarse) {
    /* Native-like press feedback for cards */
    .feature-card {
        transition: transform 0.15s ease, background 0.15s ease;
    }
    .feature-card:active {
        transform: scale(0.96);
        background: var(--bg-card-hover);
    }
    .feature-card:hover {
        transform: none;
    }

    /* Problem cards press feedback */
    .problem-card {
        transition: transform 0.15s ease;
    }
    .problem-card:active {
        transform: scale(0.97);
    }

    /* Lifestyle cards press */
    .lifestyle-card:hover .lifestyle-img {
        transform: none;
    }
    .lifestyle-card:active .lifestyle-img {
        transform: scale(1.03);
    }
    .lifestyle-card:active {
        transform: scale(0.97);
        transition: transform 0.12s ease;
    }

    /* Testimonial card tap */
    .testimonial-card {
        transition: transform 0.15s ease, border-color 0.15s ease;
    }
    .testimonial-card:active {
        transform: scale(0.97);
        border-color: rgba(201, 169, 110, 0.4);
    }

    /* CTA button native press */
    .cta-btn {
        transition: transform 0.1s ease, box-shadow 0.1s ease;
    }
    .cta-btn:hover {
        transform: none;
        box-shadow: var(--shadow-glow);
    }
    .cta-btn:active {
        transform: scale(0.95);
        box-shadow: 0 2px 15px var(--accent-glow);
    }

    /* WhatsApp float tap */
    .whatsapp-float:hover {
        transform: none;
    }
    .whatsapp-float:active {
        transform: scale(0.9);
    }

    /* Gallery thumbnails */
    .thumb:active {
        transform: scale(0.9);
    }

    /* Comparison columns tap */
    .comparison-col:active {
        transform: scale(0.98);
        transition: transform 0.12s ease;
    }

    /* Trust badges tap */
    .trust-badge:active {
        transform: scale(0.93);
        transition: transform 0.1s ease;
    }
}

/* ========================================
   NATIVE APP - SAFE AREA ADJUSTMENTS
   ======================================== */
.whatsapp-float {
    bottom: calc(24px + env(safe-area-inset-bottom));
    left: calc(24px + env(safe-area-inset-left));
}

.hero-content {
    padding-bottom: calc(50px + env(safe-area-inset-bottom));
}

.footer {
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
}

.final-cta {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
}

/* ========================================
   NATIVE APP - ENHANCED SCROLL SNAPPING
   ======================================== */
@media (max-width: 600px) {
    /* Gallery horizontal scroll if needed */
    .gallery-thumbs {
        gap: 8px;
        padding: 4px 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .gallery-thumbs::-webkit-scrollbar {
        display: none;
    }
    .thumb {
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    /* Testimonials horizontal scroll */
    .testimonials-slider {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 12px;
        padding-bottom: 8px;
        margin: 32px -20px 0;
        padding-left: 20px;
        padding-right: 20px;
    }
    .testimonials-slider::-webkit-scrollbar {
        display: none;
    }
    .testimonial-card {
        scroll-snap-align: center;
        flex-shrink: 0;
        min-width: 280px;
        max-width: 85vw;
    }
}

/* ========================================
   NATIVE APP - SMOOTH LOADING
   ======================================== */
body {
    opacity: 0;
    animation: appLoad 0.5s 0.1s ease forwards;
}

@keyframes appLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Image loading skeleton */
img {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: img-skeleton 1.5s infinite;
}

@keyframes img-skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

img[src] {
    animation: none;
    background: transparent;
}

/* ========================================
   NATIVE APP - BOTTOM CTA BAR (STICKY)
   ======================================== */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    z-index: 999;
    border-top: 1px solid var(--bg-glass-border);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-info {
    flex: 1;
    min-width: 0;
}

.sticky-cta-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-cta-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 0 20px var(--accent-glow);
    transition: transform 0.1s ease;
    -webkit-tap-highlight-color: transparent;
}

.sticky-cta-btn:active {
    transform: scale(0.95);
}

.sticky-cta-btn svg {
    width: 20px;
    height: 20px;
}

/* Adjust floating WhatsApp button when sticky bar visible */
body.sticky-active .whatsapp-float {
    bottom: calc(80px + env(safe-area-inset-bottom));
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    body { opacity: 1; animation: none; }
}
