@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Brand Accents */
    --accent: #FF6188;
    --accent-turquoise: #30B0C7;
    --success: #34C759;
    --danger: #FF3B30;
    --warning: #FFCC00;

    /* Neutrals - Light */
    --bg: #FBFBFC;
    --text-primary: #000000;
    --text-secondary: #6E6E73;
    --divider: rgba(0, 0, 0, 0.05);
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.08);
    --card-bg: rgba(255, 255, 255, 0.7);

    /* Radii */
    --radius-s: 12px;
    --radius-m: 24px;
    --radius-l: 32px;
    --radius-xl: 44px;
    --radius-pill: 100px;

    /* Spacing Grid (8px) */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-6: 48px;
    --space-8: 64px;
    --section-gap-desktop: 120px;
    --section-gap-mobile: 60px;

    /* Shadows */
    --shadow-soft: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-premium: 0 12px 32px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.02);
    --shadow-hero: 0 40px 80px rgba(0,0,0,0.12);

    /* Motion */
    --curve-joypass: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 0.4s var(--curve-joypass);
    --transition-fast: 0.2s var(--curve-joypass);
    --blur-xl: 40px;
    --blur-m: 20px;
}

[data-theme="dark"] {
    --bg: #000000;
    --text-primary: #FFFFFF;
    --text-secondary: #86868B;
    --divider: rgba(255, 255, 255, 0.08);
    --glass: rgba(20, 20, 22, 0.75);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-bg: #1C1C1E;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --bg: #000000;
        --text-primary: #FFFFFF;
        --text-secondary: #86868B;
        --divider: rgba(255, 255, 255, 0.08);
        --glass: rgba(20, 20, 22, 0.75);
        --glass-border: rgba(255, 255, 255, 0.1);
        --card-bg: #1C1C1E;
    }
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text-primary);
    line-height: 1.5;
    letter-spacing: -0.015em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

/* Typography Utility Classes */
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 950;
    font-size: clamp(48px, 8vw, 84px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.heading-1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(38px, 6vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.heading-2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 4vw, 32px);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.body-l {
    font-size: clamp(18px, 2.5vw, 20px);
    line-height: 1.5;
}

.body-m {
    font-size: clamp(15px, 2vw, 16px);
    line-height: 1.5;
}

.label-meta {
    font-size: clamp(11px, 1.5vw, 13px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), #FF9D76);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.secondary-text {
    color: var(--text-secondary);
}

/* Theme Utilities */
/* Theme Utilities - Moved to end of file */

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Animation Utilities */
@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-up-slow {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 10%) scale(1.2); }
}

.animate-slide-up {
    animation: slide-up 0.4s var(--curve-joypass) forwards;
}

.animate-slide-up-slow {
    animation: slide-up-slow 0.8s var(--curve-joypass) forwards;
}

.animate-fade-in {
    animation: fade-in 0.4s var(--curve-joypass) forwards;
}

/* Background Decorative Elements */
.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.04;
    background: var(--text-secondary);
    pointer-events: none;
    animation: blob-float 40s infinite alternate ease-in-out;
}

/* Layout Utilities */
.text-center {
    text-align: center;
}

.max-w-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mb-24 { margin-bottom: var(--space-3); }
.mb-32 { margin-bottom: var(--space-4); }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: var(--space-6); }
.mb-64 { margin-bottom: var(--space-8); }

.max-h-420 {
    max-height: 840px;
    object-fit: contain;
    width: 100%;
}

@media (max-width: 768px) {
    .max-h-420 {
        max-height: 600px;
    }
}


.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 60px 24px 120px; /* Increased top padding */
    min-height: 100vh;
}

.hero-layout {
    display: grid;
    grid-template-areas: 
        "info"
        "visual"
        "actions";
    gap: 32px;
}

.hero-info { grid-area: info; }
.hero-visual { grid-area: visual; }
.hero-actions { grid-area: actions; }

@media (min-width: 900px) {
    .hero-layout {
        grid-template-columns: 1.2fr 1fr;
        grid-template-areas: 
            "info visual"
            "actions visual";
        column-gap: 80px;
        row-gap: 24px; /* Reduced to bring buttons closer to text */
    }
}

@media (max-width: 768px) {
    .mobile-center-text {
        text-align: center !important;
    }
    .mobile-center-flex {
        justify-content: center !important;
    }
    .btn-mobile-full {
        width: 100% !important;
        min-width: unset !important;
    }
}

.container.centered {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .container {
        max-width: 1200px;
        margin-left: 320px; /* Sidebar offset */
        padding-top: 40px;
    }
    
    .container.centered {
        margin: 0 auto;
        max-width: 600px;
    }
}

/* Navigation Bar */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--glass);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    z-index: 2000;
}

.nav-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: none;
    gap: 32px;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
}

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

.nav-cta {
    background: var(--accent);
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(255, 97, 136, 0.2);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 97, 136, 0.3);
    color: white;
}

/* Base Component Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    background: var(--accent);
    color: white;
    padding: 0 var(--space-4);
    height: 60px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(255, 97, 136, 0.2);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 97, 136, 0.3);
}

.btn-primary:active {
    transform: scale(0.96);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    background: var(--glass);
    color: var(--text-primary);
    padding: 0 var(--space-4);
    height: 60px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--glass-border);
    font-weight: 700;
    font-size: 16px;
    backdrop-filter: blur(var(--blur-m));
    -webkit-backdrop-filter: blur(var(--blur-m));
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--bg);
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(var(--blur-m)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur-m)) saturate(180%);
    border-radius: var(--radius-m);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hero);
}

.hero-btn-group {
    display: flex;
    gap: var(--space-2);
    width: 100%;
}

@media (min-width: 768px) {
    .hero-btn-group {
        flex-wrap: nowrap;
        width: auto;
    }
}

@media (max-width: 767px) {
    .hero-btn-group {
        flex-wrap: wrap;
    }
}

.marketing-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 160px var(--space-4) 100px;
}

.marketing-section {
    padding: var(--section-gap-desktop) 0;
}

@media (max-width: 768px) {
    .marketing-section {
        padding: var(--section-gap-mobile) 0;
    }
}


.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: var(--space-4);
    padding: 6px 14px;
    background: rgba(255, 97, 136, 0.08);
    border-radius: var(--radius-s);
}


.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 80px;
    }
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 88px;
    height: 88px;
    background: var(--divider);
    border-radius: var(--radius-m);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
    color: var(--accent);
    box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.08), 0 15px 35px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: translateY(-8px);
    background: var(--bg);
    box-shadow: inset 0 0 0 1.5px var(--accent), 0 20px 40px rgba(255, 97, 136, 0.15);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 2px;
}

.feature-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: var(--space-2);
    letter-spacing: -0.02em;
}


.mockup-container {
    /* margin-top: 20px; */
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.mockup-image {
    width: 100%;
    height: auto;
    display: block;
}

/* FAQ Styles */
.faq-box {
    background: var(--card-bg);
    padding: var(--space-6);
    border-radius: var(--radius-l);
    border: 1px solid var(--divider);
    transition: var(--transition);
}

.faq-box:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
}

.faq-box h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: var(--space-2);
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.faq-box p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

@media (min-width: 768px) {
    .faq-box {
        padding: var(--space-6);
    }
}


.faq-container {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-m);
    padding: 24px;
    margin-bottom: 16px;
}

.faq-question {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.6;
}

.valentines-block {
    background: linear-gradient(135deg, #FF6188 0%, #FF3D00 100%);
    border-radius: 48px;
    padding: 120px 60px;
    color: white;
    text-align: center;
    margin: 100px 0;
    box-shadow: 0 40px 100px rgba(255, 61, 136, 0.3);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .valentines-block {
        padding: 60px 24px;
        margin: 40px 0;
        border-radius: 32px;
    }
}

.valentines-block h2 {
    color: white;
    font-size: clamp(40px, 6vw, 72px);
    letter-spacing: -0.05em;
    font-weight: 950;
    line-height: 1.1;
}

.valentines-sample-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    border-radius: var(--radius-m);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    transition: var(--transition);
}

.valentines-sample-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
}

.valentines-sample-card .heading-2 {
    color: white;
    font-size: 16px;
    font-weight: 700;
}

.valentines-block .secondary-text {
    color: rgba(255,255,255,0.9);
    font-size: 20px;
}

.feature-tag-container {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 20px;
    padding: 24px 32px;
    border-radius: 24px;
    background: var(--divider);
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

@media (min-width: 768px) {
    .feature-tag-container {
        max-width: 520px;
    }
}

@media (max-width: 768px) {
    .feature-tag-container {
        padding: 20px;
        gap: 20px;
    }
}

.feature-tag-container:hover {
    background: var(--bg);
    border-color: var(--divider);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-tag-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

[data-theme="dark"] .feature-tag-icon {
    background: #2C2C2E;
}

[data-theme="dark"] .feature-tag-container {
    background: rgba(255,255,255,0.03);
}

[data-theme="dark"] .feature-tag-container:hover {
    background: rgba(255,255,255,0.05);
}

/* Sidebar Navigation (Desktop) */
.bottom-nav {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: var(--glass);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    display: flex;
    justify-content: space-around;
    padding: 12px 10px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-premium);
    z-index: 1000;
}

@media (min-width: 768px) {
    .bottom-nav {
        top: 24px;
        bottom: 24px;
        left: 24px;
        right: auto;
        width: 260px;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 16px;
        gap: 8px;
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: var(--radius-l);
        backdrop-filter: blur(40px) saturate(180%);
        -webkit-backdrop-filter: blur(40px) saturate(180%);
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }
    
    .bottom-nav::before {
        content: 'JoyPass';
        display: block;
        font-family: 'Outfit', sans-serif;
        font-size: 26px;
        font-weight: 800;
        margin-bottom: 32px;
        padding-left: 12px;
        background: linear-gradient(135deg, var(--accent), #FF9D76);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: -1.2px;
    }
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 10px;
    border-radius: var(--radius-m);
}

@media (min-width: 768px) {
    .nav-item {
        flex-direction: row;
        padding: 12px 16px;
        font-size: 15px;
        gap: 12px;
        width: 100%;
        color: var(--text-secondary);
        position: relative;
    }
    
    .nav-item:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--text-primary);
    }
    
    [data-theme="dark"] .nav-item:hover {
        background: rgba(255, 255, 255, 0.08);
    }
    
    .nav-item.active {
        background: rgba(255, 97, 136, 0.1);
        color: var(--accent);
        box-shadow: inset 0 0 0 1px rgba(255, 97, 136, 0.1);
    }

    [data-theme="dark"] .nav-item.active {
        background: rgba(255, 97, 136, 0.15);
        color: var(--accent);
    }
}

.nav-item.active {
    color: var(--accent);
}

.nav-item svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5px;
}

/* Headers */
.header-section {
    padding: 60px 0 40px;
}

h1 {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 12px;
}

.header-section p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
    margin: 0;
}

/* Section Controls */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.section-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Template Display */
.template-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 24px 30px;
    margin: 0 -24px 40px;
    scrollbar-width: none;
}

@media (min-width: 768px) {
    .template-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        overflow-x: visible;
        gap: 32px;
        margin: 0 0 48px;
        padding: 10px 0 30px;
    }
}

.template-grid::-webkit-scrollbar { display: none; }

.template-card {
    min-width: 180px;
    height: 240px;
    background: var(--glass);
    backdrop-filter: blur(var(--blur-m)) saturate(200%);
    -webkit-backdrop-filter: blur(var(--blur-m)) saturate(200%);
    border-radius: var(--radius-m);
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .template-card {
    background: rgba(44, 44, 46, 0.4);
}

.template-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-premium);
    background: var(--card-bg);
}

.template-card:active {
    transform: scale(0.96);
}

[contenteditable="true"]:hover {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    cursor: text;
}

[contenteditable="true"]:focus {
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
    outline: 2px solid rgba(255,255,255,0.3);
    padding: 0 4px;
}

.passkit-visual [contenteditable="true"]:empty:before {
    content: attr(placeholder);
    opacity: 0.5;
    font-style: italic;
}

.passkit-field.active {
    transform: scale(1.02);
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.icon-box {
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(255, 97, 136, 0.2);
}

.template-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.3;
}

.template-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.template-price {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--accent-red);
    font-size: 12px;
    opacity: 0.9;
}

/* Premium List Items */
.gift-item {
    background: var(--glass);
    backdrop-filter: blur(var(--blur-m)) saturate(200%);
    -webkit-backdrop-filter: blur(var(--blur-m)) saturate(var(--blur-m));
    border-radius: var(--radius-m);
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    cursor: pointer;
}

[data-theme="dark"] .gift-item {
    background: rgba(44, 44, 46, 0.4);
}

.gift-item:hover {
    transform: scale(1.02);
    background: var(--card-bg);
    box-shadow: var(--shadow-premium);
}

.gift-item:active {
    transform: scale(0.98);
}

.gift-item-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: var(--shadow-soft);
}

.gift-item-content {
    flex: 1;
}

.gift-item-title {
    font-weight: 800;
    font-size: 18px;
    margin: 0;
    letter-spacing: -0.02em;
}

.gift-item-meta {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 4px 0 0;
}

.gift-item-chevron {
    color: var(--text-secondary);
    opacity: 0.3;
}

/* Buttons */
.btn-primary {
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 18px;
    padding: 16px 24px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 60px;
    box-shadow: 0 10px 30px rgba(255, 97, 136, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 97, 136, 0.3);
}

.btn-primary:hover {
    filter: brightness(1.05);
    transform: scale(1.02);
}

.btn-primary:active {
    transform: scale(0.96);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--divider);
    border-radius: 18px;
    padding: 16px 24px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 60px;
}

.btn-secondary:hover {
    background: var(--divider);
    transform: scale(1.02);
}

.btn-secondary:active {
    transform: scale(0.96);
}

/* Input Fields */
.input-group {
    margin-bottom: 24px;
}

.label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: block;
    padding-left: 2px;
}

.input {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--divider);
    border-radius: var(--radius-m);
    padding: 16px 20px;
    font-size: 17px;
    font-family: inherit;
    font-weight: 500;
    outline: none;
    transition: var(--transition);
    color: var(--text-primary);
}

.input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 97, 136, 0.1);
}

/* Modals / Bottom Sheets */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: flex-end;
}

@media (min-width: 768px) {
    .modal-overlay {
        align-items: center;
    }
}

.modal-sheet {
    width: 100%;
    max-width: 500px;
    background: var(--glass);
    backdrop-filter: blur(var(--blur-xl)) saturate(200%);
    -webkit-backdrop-filter: blur(var(--blur-xl)) saturate(200%);
    border-radius: 32px 32px 0 0;
    padding: 32px 24px calc(32px + env(safe-area-inset-bottom));
    max-height: 94vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: var(--transition);
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -20px 80px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .modal-sheet {
        border-radius: var(--radius-m);
        transform: scale(0.95) translateY(40px);
        opacity: 0;
        border: 1px solid var(--glass-border);
        box-shadow: var(--shadow-hero);
    }
}

.modal-overlay.active { display: flex; }
.modal-overlay.active .modal-sheet { transform: translateY(0); }

@media (min-width: 768px) {
    .modal-overlay.active .modal-sheet {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-handle {
    width: 36px;
    height: 4px;
    background: var(--text-secondary);
    border-radius: 10px;
    margin: -8px auto 24px;
    opacity: 0.15;
}

/* Vertical Passkit Visual */
.passkit-visual {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    background: var(--accent);
    border-radius: 32px;
    padding: 32px;
    aspect-ratio: 10 / 16;
    color: white;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-hero);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.15);
}

.passkit-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 70%);
}

.passkit-field {
    cursor: pointer;
    border-radius: 12px;
    transition: var(--transition-fast);
    padding: 8px;
    margin: -8px;
}

.passkit-field:hover {
    background: rgba(255,255,255,0.1);
}

.passkit-field.active {
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.2);
}

.passkit-label {
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
    opacity: 0.5;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.passkit-value {
    font-weight: 800;
    line-height: 1.2;
}

.pass-visual.editable {
    cursor: pointer;
    transform: perspective(1000px) rotateX(2deg);
}

.pass-visual.editable:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
}

.pass-visual.editable:active {
    transform: perspective(1000px) rotateX(0deg) scale(0.98);
}

.pass-visual .edit-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    z-index: 10;
}

.theme-selector {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 10px 24px 20px;
    margin: 0 -24px 32px;
    scrollbar-width: none;
}

.theme-selector::-webkit-scrollbar { display: none; }

.theme-option {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.theme-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid transparent;
    transition: var(--transition-fast);
}

.theme-option.active .theme-circle {
    border-color: var(--text-primary);
    transform: scale(1.1);
}

.theme-name {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-secondary);
}

.theme-option.active .theme-name {
    color: var(--text-primary);
}

.pass-visual::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 70%);
}

.pass-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.pass-title {
    font-size: 34px;
    font-weight: 950;
    margin: 0;
    letter-spacing: -0.04em;
    line-height: 1;
}

.pass-meta {
    font-size: 13px;
    font-weight: 800;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Landing Page Hero */
.hero-content {
    padding-top: 100px;
    text-align: center;
}

.hero-logo {
    font-size: 80px;
    margin-bottom: 30px;
    display: inline-block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Hero & Typography Enhancements */
.hero-title {
    /* font-size: 56px; */
    font-size: clamp(56px, 8vw, 84px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), #FF9D76);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.secondary-text {
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.6;
}

/* Glass Utilities */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-m);
}

/* Animations */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-slide-up {
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Skeleton Loading */
.loader {
    width: 100%;
    height: 100px;
    background: linear-gradient(90deg, var(--divider) 25%, var(--bg) 50%, var(--divider) 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s infinite linear;
    border-radius: var(--radius-m);
}

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

/* Spinner Loading */
.spinner {
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s ease-in-out infinite;
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Haptic Background Effect */
body:has(.modal-overlay.active) .container {
    transform: scale(0.98);
    filter: blur(4px);
    opacity: 0.6;
}

.container {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Utilities */
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; } /* Added 32px */
.mb-48 { margin-bottom: 48px; } /* Reduced from 60px */

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

.text-center { text-align: center; }

/* Dashboard Specific */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* App Logo Style */
.app-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Standard Professional Footer */
.app-footer {
    padding: 60px 20px 40px;
    text-align: center;
    border-top: 1px solid var(--divider);
    margin-top: 60px;
}

.app-footer p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0 0 12px;
    font-weight: 500;
}

.app-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    color: var(--text-secondary);
}

.app-footer-links a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.app-footer-links a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}
/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--divider);
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

input:checked + .slider {
    background-color: var(--accent);
}

input:checked + .slider:before {
    transform: translateX(20px);
}

/* Grid Alternate Utility */
@media (min-width: 900px) {
    .grid-alternate {
        direction: rtl;
    }
    .grid-alternate > * {
        direction: ltr; /* Reset content direction */
    }
}

/* Page: Valentine's */
.page-valentines {
    --valentine-bg: #FFF9FA;
    --valentine-accent: #FF2D55;
    --valentine-card: white;
    --valentine-shadow: rgba(255, 45, 85, 0.05);
    --valentine-icon-bg: #FFF5F7;
    background-color: var(--valentine-bg);
}

[data-theme="dark"] .page-valentines {
    --valentine-bg: #0A0002;
    --valentine-card: #1C1C1E;
    --valentine-shadow: rgba(0, 0, 0, 0.4);
    --valentine-icon-bg: rgba(255, 45, 85, 0.1);
}

.valentine-card {
    background: var(--valentine-card);
    border: 1px solid rgba(255, 45, 85, 0.1);
    border-radius: var(--radius-l);
    padding: var(--space-6) 40px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px var(--valentine-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .valentine-card {
        flex-direction: row;
        text-align: left;
        padding: 24px;
        gap: 24px;
        border-radius: 28px;
    }
}

.valentine-card:hover {
    transform: translateY(-12px);
    border-color: var(--valentine-accent);
    box-shadow: 0 25px 50px rgba(255, 45, 85, 0.2);
}

.valentine-icon {
    width: 64px;
    height: 64px;
    background: var(--valentine-icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto var(--space-4);
    box-shadow: 0 0 20px rgba(255, 45, 85, 0.15);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .valentine-icon {
        margin: 0;
    }
}

.valentine-hero-visual {
    font-size: clamp(120px, 15vw, 240px);
    margin: 20px 0;
    text-align: center;
}

.valentine-reveal-block {
    background: linear-gradient(135deg, var(--valentine-accent) 0%, #FF375F 100%);
    border-radius: var(--radius-xl);
    padding: 120px 60px;
    color: white;
    text-align: center;
    margin: 100px auto;
    box-shadow: 0 40px 100px rgba(255, 61, 136, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 1240px;
}

@media (max-width: 768px) {
    .valentine-reveal-block {
        padding: 60px 24px;
        margin: 40px auto;
        border-radius: var(--radius-l);
    }
}

.valentine-text-secondary {
    color: var(--text-secondary);
}

/* Page: Auth/Login */
/* ... (Existing Auth styles) ... */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    z-index: 2;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--glass);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: var(--radius-xl);
    padding: 32px 40px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-hero);
}

.auth-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--warning), #FF9D76);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 32px;
    box-shadow: 0 10px 30px rgba(255, 97, 136, 0.25);
    font-size: 38px;
}

.auth-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--divider);
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
}

.auth-footer a {
    color: var(--accent);
    font-weight: 700;
}

.auth-footer a:hover {
    color: var(--accent-turquoise);
}

/* Page: Internal Dashboard */
.dashboard-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 24px 120px;
    min-height: 100vh;
}

@media (min-width: 768px) {
    .dashboard-container {
        max-width: 1200px;
    }
}

.view-header {
    margin-bottom: 32px;
    padding-top: 20px;
}

/* Dashboard Gift Cards */
.gift-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-m);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.gift-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-premium);
    background: var(--card-bg);
}

.gift-card.is-locked {
    opacity: 0.8;
}

.gift-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.gift-card-content {
    flex: 1;
}

.gift-card-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.gift-card-meta {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Dashboard Empty States */
.empty-state-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    text-align: center;
    margin-top: 24px;
}

.empty-state-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    color: var(--text-secondary);
    opacity: 0.2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* Page: Gift Details (3D Visuals) */
.pass-3d-container {
    perspective: 2000px;
    margin-bottom: 48px;
}

.pass-3d-card {
    transform-style: preserve-3d;
    transition: transform 0.8s var(--curve-joypass);
    aspect-ratio: 5/8;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-hero), inset 0 0 0 1px rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background-size: cover;
    /* max-height: 70vh; */
}

.pass-3d-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 50%);
    pointer-events: none;
}

/* Wallet Pass Notch */
.pass-3d-card::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: var(--bg);
    border-radius: 0 0 20px 20px;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) inset;
    display: none; /* Hidden by default, enable via .has-notch if needed or keep subtle */
}

/* Alternative: Pure CSS Radial Cutout */
.pass-notch-cutout {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    background: var(--bg); /* Matches page background to look transparent */
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) inset;
    z-index: 5;
}

.pass-3d-header {
    padding: 32px 32px 0;
    position: relative;
    z-index: 2;
}

.pass-3d-body {
    padding: 60px 32px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pass-3d-footer {
    padding: 24px 32px;
    background: rgba(0,0,0,0.1);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Detail Lists & Activity */
.activity-feed {
    background: var(--card-bg);
    border: 1px solid var(--divider);
    border-radius: var(--radius-m);
    padding: 24px;
    margin-bottom: 32px;
}

.activity-row {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--divider);
}

.activity-row:last-child {
    border-bottom: none;
}

.activity-icon-small {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 97, 136, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comment-bubble {
    background: rgba(var(--accent), 0.05); /* slightly tinted bg */
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.5;
    background-color: var(--bg);
    border: 1px solid var(--divider);
}

.back-nav {
    margin-bottom: 32px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
}

.back-link:hover {
    transform: translateX(-4px);
}
/* Responsive Grid Utility */
.grid-responsive {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .grid-responsive {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 20px;
    }
}

/* Feature/Social Proof Icon Box */
.icon-box-small {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--card-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid var(--divider);
    flex-shrink: 0;
}

.social-proof-row {
    font-weight: 700; /* Slightly lighter for more premium feel */
    font-size: 17px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    text-align: left;
    white-space: wrap; /* Prevent wrapping on desktop */
}

/* Responsive container for trust elements */
.social-proof-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .social-proof-container {
        flex-direction: row;
        gap: clamp(40px, 8vw, 100px);
        max-width: 1200px;
    }
    
    .social-proof-row {
        width: auto;
    }
}

.social-proof-banner {
    background: var(--divider);
    border-radius: 40px;
    padding: 60px 24px;
    margin: 0 auto 100px;
    width: calc(100% - 40px);
}

[data-theme="dark"] .social-proof-banner {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--divider);
}

@media (min-width: 1200px) {
    .social-proof-banner {
        padding: 50px 0;
        width: 100%;
        border-radius: 48px;
    }
}

/* Process Visual (Lock / Unlock Demo) */
.process-visual-card {
    width: 100px;
    height: 150px;
    border-radius: var(--radius-s);
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    color: white;
}

.process-visual-card.locked {
    background: #2C2C2E; /* Keep hardcoded neutral for locked state visually */
}

.process-visual-card.revealed {
    background: var(--accent);
    box-shadow: var(--shadow-hero);
}

[data-theme="dark"] .process-visual-card.locked {
    background: #1C1C1E;
    border: 1px solid var(--divider);
}

.arrow-divider {
    font-size: 24px;
    opacity: 0.2;
    transform: translateY(-15px);
    color: var(--text-primary);
}

/* Theme Utilities (High Specificity) */
.show-light { display: block !important; }
.show-dark { display: none !important; }

[data-theme="dark"] .show-light { display: none !important; }
[data-theme="dark"] .show-dark { display: block !important; }

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .show-light { display: none !important; }
    :root:not([data-theme="light"]) .show-dark { display: block !important; }
}

/* Gift Differentiation - Two Ways */
.two-ways-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

@media (min-width: 900px) {
    .two-ways-container {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.gift-type-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: var(--space-8) var(--space-6);
    border: 1px solid var(--divider);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gift-type-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-premium);
}

.gift-type-image {
    width: 100%;
    max-width: 300px;
    margin-bottom: var(--space-6);
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-hero);
}

/* Occasions Tabs & Cards */
.occasions-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    background: var(--divider);
    color: var(--text-secondary);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn.active {
    background: var(--accent);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 97, 136, 0.2);
}

.occasion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .occasion-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.occasion-card {
    background: var(--glass);
    border-radius: var(--radius-l);
    padding: var(--space-6);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.occasion-card:hover {
    transform: translateY(-4px);
    background: var(--card-bg);
}

.occasion-emoji {
    font-size: 40px;
    margin-bottom: 20px;
}

/* Bundle / Coupon Book Specific */
.bundle-stack {
    position: relative;
    height: 480px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.bundle-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-hero);
}

/* Gift Details Bundle Layout */
.details-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

@media (min-width: 1024px) {
    .details-layout {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 64px;
    }
    
    .cards-section {
        flex: 0 0 520px;
        position: sticky;
        top: 100px;
    }
    
    .details-content {
        flex: 1;
        max-width: 600px;
        margin: 0 !important;
    }
}

.cards-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
