/* LIYON Product Pages — Shared Styles */

/* Glass card */
.glass-card {
    background: rgba(26, 58, 94, 0.25);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 160, 101, 0.1);
}

.glass-nav {
    background: rgba(12, 35, 64, 0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Bilingual */
.lang-en { display: none; }
body.en-mode .lang-zh { display: none !important; }
body.en-mode .lang-en { display: inline-block !important; }
body.en-mode .lang-en-block { display: block !important; }
.lang-en-block { display: none; }
body.en-mode .lang-zh-block { display: none !important; }

/* Feature card hover */
.feature-card {
    transition: transform 0.3s, border-color 0.3s;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 160, 101, 0.4);
}

/* Focus visible — accessible keyboard navigation */
*:focus-visible {
    outline: 2px solid #C5A065;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Sub-brand glow effects */
.glow-teal {
    box-shadow: 0 0 40px rgba(13, 155, 114, 0.15), 0 0 80px rgba(13, 155, 114, 0.05);
}
.glow-amber {
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.15), 0 0 80px rgba(245, 158, 11, 0.05);
}
.glow-gold {
    box-shadow: 0 0 40px rgba(197, 160, 101, 0.15), 0 0 80px rgba(197, 160, 101, 0.05);
}

/* Pricing highlight */
.pricing-popular {
    border: 2px solid #C5A065;
    position: relative;
}
.pricing-popular::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    box-shadow: 0 0 30px rgba(197, 160, 101, 0.2);
    pointer-events: none;
}
