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

html { scroll-behavior: smooth; }

/* ===== MODERN REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-left { opacity: 0; transform: translateX(-60px); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.in-view { opacity: 1; transform: translateX(0); }

.reveal-right { opacity: 0; transform: translateX(60px); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.in-view { opacity: 1; transform: translateX(0); }

.reveal-scale { opacity: 0; transform: scale(0.85); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale.in-view { opacity: 1; transform: scale(1); }

.reveal-blur { opacity: 0; filter: blur(15px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-blur.in-view { opacity: 1; filter: blur(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }

/* ===== CUSTOM CURSOR (Desktop only) ===== */
.cursor-dot, .cursor-ring {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transition: transform 0.15s ease-out;
}
.cursor-dot {
    width: 8px; height: 8px;
    background: #d4a017;
    transform: translate(-50%, -50%);
}
.cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid #9D4EDD;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease-out, width 0.3s, height 0.3s, background 0.3s;
}
.cursor-ring.hover-link {
    width: 60px; height: 60px;
    background: rgba(157, 78, 221, 0.15);
    border-color: #d4a017;
}
@media (max-width: 968px) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ===== MAGNETIC BUTTONS / HOVER LIFT ===== */
.btn-primary, .cta-btn-large, .shop-now-large, .add-to-cart-btn, .buy-now-btn, .shop-now-btn {
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .cta-btn-large::after, .shop-now-large::after, .add-to-cart-btn::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 5px; height: 5px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
}
.btn-primary:hover::after, .cta-btn-large:hover::after, .shop-now-large:hover::after, .add-to-cart-btn:hover::after {
    transform: translate(-50%, -50%) scale(70);
    opacity: 0;
}

/* ===== GLASS MORPHISM CARDS ===== */
.solution-card, .balance-card, .feature-card, .faq-item {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.solution-card::before, .balance-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(212, 160, 23, 0.15), transparent);
    transition: left 0.7s ease;
}
.solution-card:hover::before, .balance-card:hover::before {
    left: 100%;
}

/* ===== ANIMATED GRADIENT BORDER ===== */
.balance-card {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #fafafd 100%);
    background-clip: padding-box;
}
.balance-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, #d4a017, #9D4EDD, #d4a017);
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0;
    animation: gradientShift 4s ease infinite;
    transition: opacity 0.4s;
}
.balance-card:hover::after { opacity: 1; }

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== SMOOTH SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #d4a017, #9D4EDD, #d4a017);
    background-size: 200% 100%;
    z-index: 9998;
    transition: width 0.1s ease-out;
    animation: progressShimmer 2s linear infinite;
}
@keyframes progressShimmer {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* ===== HERO PARALLAX ===== */
.parallax-bg {
    transform: translateY(var(--parallax-y, 0));
    transition: transform 0.1s ease-out;
}

/* ===== TILT 3D EFFECT ===== */
.tilt-card { transition: transform 0.3s ease-out; transform-style: preserve-3d; }

/* ===== NAVBAR BLUR ON SCROLL ===== */
.navbar {
    transition: background 0.3s, backdrop-filter 0.3s, min-height 0.3s, padding 0.3s;
}
.navbar.scrolled {
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-height: 90px;
    padding: 0.6rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar.scrolled .logo-symbol-img { height: 55px; }
.navbar.scrolled .brand-body-soul { font-size: 0.9rem; }
.navbar.scrolled .brand-main-title { font-size: 1.5rem; }
.navbar.scrolled .brand-by { font-size: 0.65rem; }

/* ===== FLOATING BACK-TO-TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a017, #9D4EDD);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
    z-index: 998;
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4);
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.6);
}

/* ===== LOADING PAGE FADE-IN ===== */
body { animation: bodyFadeIn 0.8s ease-out; }
@keyframes bodyFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== SECTION FADE BG ===== */
.story-hero, .solution-section, .balance-section, .features-section, .app-section, .faq-section {
    position: relative;
}

/* ===== TEXT GRADIENT ANIMATION ===== */
h1, h2 { animation: textShine 4s ease infinite; }
@keyframes textShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

/* ===== IMAGE ZOOM ON HOVER ===== */
.main-image, .thumb {
    transition: all 0.4s ease;
}
.main-image:hover .ring-main-img {
    transform: scale(1.08) translateY(-10px) rotateY(15deg);
}

/* ===== GEN Z DROP BAR ===== */
.drop-bar {
    background: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid #d4a017;
}
.drop-bar strong {
    background: linear-gradient(90deg, #d4a017, #ff4d6d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* ===== HERO BOLD STATEMENT (smaller, refined) ===== */
.hero-bold-statement {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.1;
    letter-spacing: 1px;
    margin: 0.5rem 0 1rem;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 0.5rem;
    opacity: 0.85;
}
.bold-word {
    display: inline-block;
    background: linear-gradient(180deg, #fff 0%, #d4a017 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 50px rgba(212, 160, 23, 0.3);
    animation: wordBounce 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.bold-word.w1 { animation-delay: 0.1s; }
.bold-word.w2 {
    background: linear-gradient(180deg, #d4a017, #ff4d6d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-delay: 0.2s;
    font-style: italic;
}
.bold-word.w3 { animation-delay: 0.3s; }
.bold-word.w4 {
    background: linear-gradient(180deg, #9D4EDD, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-delay: 0.4s;
}
@keyframes wordBounce {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== AR TRY-ON BUTTON ===== */
.ar-try-btn {
    width: 100%;
    background: #fff;
    color: #1a1a2e;
    border: 2px solid #1a1a2e;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s;
    position: relative;
}
.ar-try-btn:hover {
    background: #1a1a2e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.ar-icon { font-size: 1.3rem; }
.ar-new {
    background: linear-gradient(90deg, #ff4d6d, #d4a017);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===== TIKTOK GRID ===== */
.tiktok-section {
    background: #000;
    color: #fff;
    padding: 5rem 2rem;
}
.tiktok-section h2 {
    color: #fff;
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 1rem 0 3rem;
    text-transform: lowercase;
}
.hashtag-pop {
    display: inline-block;
    background: linear-gradient(135deg, #d4a017, #9D4EDD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}
.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
.tiktok-card {
    aspect-ratio: 9/16;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.tiktok-card:hover {
    transform: scale(1.05) translateY(-5px);
}
.tiktok-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}
.tt-play {
    width: 55px; height: 55px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    align-self: center;
    margin: auto 0;
    z-index: 2;
    border: 2px solid rgba(255,255,255,0.3);
}
.tt-views {
    position: absolute;
    top: 1rem; right: 1rem;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}
.tt-creator {
    position: relative;
    z-index: 2;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}
.tt-caption {
    position: relative;
    z-index: 2;
    font-size: 0.85rem;
    opacity: 0.9;
}
.tiktok-cta {
    text-align: center;
    margin-top: 2.5rem;
    color: #999;
    font-size: 1rem;
}
.tiktok-cta strong {
    color: #d4a017;
}

/* ===== COMMUNITY SECTION ===== */
.community-section {
    background: linear-gradient(135deg, #0a0e27, #2a1f4f);
    color: #fff;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}
.community-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.15), transparent);
    top: -200px; right: -200px;
    border-radius: 50%;
}
.community-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.community-text h2 {
    color: #fff;
    font-size: 2.8rem;
    margin: 1rem 0;
    font-weight: 900;
}
.community-text p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.community-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.community-btn {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
    font-size: 1rem;
}
.community-btn:hover {
    transform: translateX(8px);
    background: rgba(255,255,255,0.15);
    border-color: #d4a017;
}
.community-btn span { font-size: 1.4rem; }
.discord-btn:hover { border-color: #5865F2; }
.whatsapp-btn:hover { border-color: #25D366; }
.ig-btn:hover { border-color: #E4405F; }

.community-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.stat-block {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212,160,23,0.2);
    padding: 2rem 1rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}
.stat-block:hover {
    transform: translateY(-5px);
    border-color: #d4a017;
}
.stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #d4a017, #ff4d6d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
}
.stat-label {
    color: #aaa;
    font-size: 0.85rem;
    text-transform: lowercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .community-container { grid-template-columns: 1fr; }
}

/* ===== NEWSLETTER SMS TOGGLE ===== */
.newsletter-emoji {
    font-size: 3rem;
    display: block;
    animation: float-mala 3s ease infinite;
}
.signup-toggle {
    display: flex;
    gap: 0.4rem;
    max-width: 500px;
    margin: 0 auto 1rem;
    background: rgba(255,255,255,0.05);
    padding: 4px;
    border-radius: 50px;
}
.toggle-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: #ccc;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
    font-weight: 600;
}
.toggle-btn.active {
    background: linear-gradient(135deg, #d4a017, #f0c040);
    color: #000;
}

/* ===== FREE SHIPPING BAR ===== */
.free-shipping-bar {
    background: linear-gradient(90deg, #d4a017, #9D4EDD, #d4a017);
    background-size: 200% 100%;
    color: #fff;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    animation: shipShimmer 3s linear infinite;
}
@keyframes shipShimmer {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

/* ===== LIVE PURCHASE NOTIFICATION ===== */
.live-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    display: none;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 997;
    max-width: 320px;
    border-left: 4px solid #d4a017;
    animation: notifSlide 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.live-notification.show { display: flex; }
@keyframes notifSlide {
    from { opacity: 0; transform: translateX(-100px); }
    to { opacity: 1; transform: translateX(0); }
}
.notif-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9D4EDD, #d4a017);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}
.notif-content { font-size: 0.85rem; line-height: 1.4; color: #333; }
.notif-content strong { display: block; color: #1a1a2e; }
.notif-content small { display: block; color: #888; font-size: 0.75rem; margin-top: 2px; }

/* ===== STICKY ADD TO CART BAR ===== */
.sticky-cart-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(10, 14, 39, 0.96);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(212, 160, 23, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 996;
}
.sticky-cart-bar.visible { transform: translateY(0); }
.sticky-cart-info { display: flex; align-items: center; gap: 1rem; }
.sticky-cart-info img { width: 50px; height: 50px; object-fit: contain; }
.sticky-cart-info strong { color: #fff; display: block; }
.sticky-price { color: #d4a017; font-weight: bold; font-size: 1.1rem; }
.sticky-price s { color: #888; font-size: 0.85rem; margin-left: 0.4rem; }
.sticky-cart-actions { display: flex; gap: 0.7rem; }
.wishlist-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 45px; height: 45px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
}
.wishlist-btn:hover { color: #ff4d6d; border-color: #ff4d6d; transform: scale(1.1); }
.wishlist-btn.active { color: #ff4d6d; border-color: #ff4d6d; }
.sticky-add-btn {
    background: linear-gradient(135deg, #d4a017, #f0c040);
    color: #000;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}
.sticky-add-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212, 160, 23, 0.5); }

@media (max-width: 768px) {
    .sticky-cart-bar { padding: 0.7rem 1rem; }
    .sticky-cart-info img { width: 40px; height: 40px; }
    .sticky-cart-info strong { font-size: 0.85rem; }
    .sticky-price { font-size: 0.95rem; }
}

/* ===== EXIT INTENT POPUP ===== */
.exit-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.exit-popup.show { display: flex; animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.exit-popup-content {
    background: linear-gradient(135deg, #fff, #f8f9fb);
    padding: 3rem 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    animation: popupZoom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes popupZoom {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}
.close-exit {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
}
.exit-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float-mala 3s ease infinite;
}
.exit-popup-content h2 {
    color: #1a1a2e !important;
    font-size: 1.8rem !important;
    margin-bottom: 0.8rem !important;
}
.exit-popup-content p {
    color: #555;
    margin-bottom: 1.5rem;
}
.exit-popup-content form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.exit-popup-content input {
    flex: 1;
    padding: 0.9rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
}
.exit-popup-content button[type="submit"] {
    background: linear-gradient(135deg, #d4a017, #f0c040);
    color: #000;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
}
.exit-no {
    color: #999;
    font-size: 0.85rem;
    text-decoration: underline;
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(10, 14, 39, 0.96);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 160, 23, 0.3);
    padding: 0.5rem 0;
    justify-content: space-around;
    z-index: 995;
}
.mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #fff;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
    transition: color 0.3s;
}
.mob-nav-item:hover, .mob-nav-item:active { color: #d4a017; }
.mob-icon { font-size: 1.4rem; }

@media (max-width: 768px) {
    .mobile-bottom-nav { display: flex; }
    body { padding-bottom: 70px; }
    .sticky-cart-bar { bottom: 60px; }
    .back-to-top { bottom: 80px; }
    .chat-widget { bottom: 80px; }
}

/* ===== LIVE CHAT WIDGET ===== */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9D4EDD, #b366f7);
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 997;
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.5);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-widget:hover { transform: scale(1.1); }
.chat-dot {
    position: absolute;
    top: 8px; right: 8px;
    width: 12px; height: 12px;
    background: #4ade80;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: pulse 2s ease infinite;
}

/* ===== PRESS SECTION ===== */
.press-section {
    background: #f8f9fb;
    padding: 3rem 2rem;
    text-align: center;
}
.press-title {
    color: #999;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}
.press-item {
    color: #888;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 3px;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s;
    cursor: default;
    font-family: 'Playfair Display', serif;
}
.press-item:hover {
    filter: grayscale(0);
    opacity: 1;
    color: #d4a017;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background: #fff;
    padding: 5rem 2rem;
}
.reviews-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}
.rating-big {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #d4a017, #9D4EDD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stars-big {
    color: #d4a017;
    font-size: 1.8rem;
    letter-spacing: 2px;
}
.rating-count {
    color: #888;
    font-size: 0.95rem;
    margin-top: 0.3rem;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2rem;
}
.review-card {
    background: linear-gradient(135deg, #fff, #fafafd);
    border: 1px solid #e8e8f0;
    padding: 2rem;
    border-radius: 16px;
    text-align: left;
    transition: all 0.4s;
    position: relative;
}
.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.1);
    border-color: #d4a017;
}
.review-stars { color: #d4a017; margin-bottom: 0.8rem; letter-spacing: 2px; }
.review-card h4 {
    color: #1a1a2e;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}
.review-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}
.reviewer .avatar {
    width: 45px; height: 45px;
    border-radius: 50%;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}
.reviewer strong { display: block; color: #1a1a2e; font-size: 0.9rem; }
.reviewer span { color: #888; font-size: 0.8rem; }

/* ===== QUIZ SECTION ===== */
.quiz-section {
    background: linear-gradient(135deg, #0a0e27, #1a0a3f);
    color: #fff;
    padding: 4rem 2rem;
}
.quiz-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}
.quiz-content h2 {
    color: #fff;
    margin: 1rem 0;
}
.quiz-content p {
    color: #ddd;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.quiz-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: center;
}
.quiz-icons span {
    font-size: 4rem;
    padding: 1.5rem;
    background: rgba(157, 78, 221, 0.15);
    border-radius: 20px;
    transition: transform 0.3s;
}
.quiz-icons span:hover { transform: scale(1.1) rotate(10deg); }

@media (max-width: 768px) {
    .quiz-container { grid-template-columns: 1fr; }
}

/* ===== QUIZ MODAL ===== */
.quiz-modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.quiz-modal.show { display: flex; }
.quiz-modal-content {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 550px;
    width: 90%;
    position: relative;
}
.close-quiz {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}
.quiz-progress {
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    margin-bottom: 2rem;
    overflow: hidden;
}
.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #d4a017, #9D4EDD);
    width: 25%;
    transition: width 0.5s;
}
#quizQuestion h3 { color: #1a1a2e; margin-bottom: 1.5rem; }
.quiz-option {
    display: block;
    width: 100%;
    text-align: left;
    background: #f8f9fb;
    border: 2px solid #e0e0e0;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    margin-bottom: 0.7rem;
    cursor: pointer;
    transition: all 0.3s;
    color: #333;
    font-size: 0.95rem;
}
.quiz-option:hover { border-color: #9D4EDD; background: #fff; transform: translateX(5px); }

/* ===== CRAFT SECTION ===== */
.craft-section {
    background: linear-gradient(135deg, #fafafd, #fff);
    padding: 5rem 2rem;
}
.craft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.craft-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e8e8f0;
    transition: all 0.4s;
}
.craft-item:hover {
    transform: translateY(-8px);
    border-color: #d4a017;
    box-shadow: 0 15px 40px rgba(212, 160, 23, 0.15);
}
.craft-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(212, 160, 23, 0.4));
}
.craft-item h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}
.craft-item p {
    color: #666;
    font-size: 0.9rem;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    background: #fff;
    padding: 5rem 2rem;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.blog-card {
    background: #fff;
    border: 1px solid #e8e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.blog-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}
.blog-card .blog-tag {
    display: inline-block;
    background: rgba(157, 78, 221, 0.1);
    color: #9D4EDD;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 1.5rem 1.5rem 0.5rem;
    letter-spacing: 1px;
}
.blog-card h3 {
    color: #1a1a2e;
    margin: 0.5rem 1.5rem;
    font-size: 1.1rem;
    line-height: 1.4;
}
.blog-card p {
    color: #666;
    margin: 0.5rem 1.5rem 1.5rem;
    font-size: 0.9rem;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: linear-gradient(135deg, #f8f9fb, #fff);
    padding: 5rem 2rem;
}
.newsletter-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0a0e27, #2a1f4f);
    color: #fff;
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(157, 78, 221, 0.25);
    position: relative;
    overflow: hidden;
}
.newsletter-card::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(212,160,23,0.3), transparent);
    top: -50px; right: -50px;
    border-radius: 50%;
}
.newsletter-card h2 {
    color: #d4a017 !important;
    font-size: 2.2rem !important;
    margin-bottom: 0.8rem !important;
}
.newsletter-card p { color: #ddd; margin-bottom: 1.5rem; font-size: 1.05rem; }
.newsletter-card strong { color: #d4a017; }
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}
.newsletter-form input {
    flex: 1;
    padding: 1rem 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}
.newsletter-form button {
    background: linear-gradient(135deg, #d4a017, #f0c040);
    color: #000;
    border: none;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}
.newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212, 160, 23, 0.6); }
.newsletter-note { font-size: 0.8rem; color: #aaa !important; }

@media (max-width: 600px) {
    .newsletter-form { flex-direction: column; }
}

/* ===== PULSE DOT INDICATOR (LIVE) ===== */
.pulse-dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: #4ade80;
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse 2s ease infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
}


:root {
    --deep: #0a0e27;
    --purple: #9D4EDD;
    --gold: #d4a017;
    --cream: #f5f1e8;
    --muted: #888;
    --border: #2a2e4a;
    --light-bg: #f8f9fb;
    --dark-text: #1a1a2e;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: #fff;
    color: var(--dark-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============ NAVBAR ============ */
.navbar {
    background: linear-gradient(180deg, #0a0e27 0%, #1a0a3f 100%);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 130px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-stack-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    line-height: 1;
}

.logo-symbol-img {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(212, 160, 23, 0.6));
    animation: logoFloat 3s ease-in-out infinite, logoPulse 2.5s ease-in-out infinite;
    transition: all 0.4s;
}

.logo-symbol-img:hover {
    transform: scale(1.05);
}

.brand-body-soul {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    background: linear-gradient(135deg, #fff4c4 0%, #ffd700 30%, #d4a017 60%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
    animation: shimmerText 3s ease-in-out infinite;
    background-size: 200% 100%;
    margin-top: -0.3rem;
    white-space: nowrap;
}

.brand-title-stack {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0.5rem;
    line-height: 1.1;
}

.brand-main-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff4c4 0%, #ffd700 50%, #d4a017 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-shadow: 0 0 25px rgba(212, 160, 23, 0.4);
    animation: shimmerText 3s ease-in-out infinite;
    background-size: 200% 100%;
    white-space: nowrap;
}

.brand-main-title .dash {
    color: #d4a017;
    -webkit-text-fill-color: #d4a017;
    margin: 0 0.3rem;
    font-weight: 400;
}

.brand-by {
    font-size: 0.7rem;
    letter-spacing: 6px;
    margin-top: 0.15rem;
    text-transform: uppercase;
    font-weight: 500;
    background: linear-gradient(135deg, #f8f8ff 0%, #c0c0c0 50%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-align: center;
}

.nav-lotus {
    transform-origin: 100px 40px;
    animation: navLotusPulse 3s ease-in-out infinite;
}

.nav-infinity {
    transform-origin: 100px 130px;
    animation: navInfRotate 5s ease-in-out infinite;
}

.nav-spark {
    opacity: 0;
    animation: navSparkle 2s ease-in-out infinite;
}

.ns1 { animation-delay: 0s; }
.ns2 { animation-delay: 0.6s; }
.ns3 { animation-delay: 1.2s; }

@keyframes navLotusPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes navInfRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(2deg); }
}

@keyframes navSparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(2); }
}

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

@keyframes logoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(212, 160, 23, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(212, 160, 23, 0.8)) drop-shadow(0 0 15px rgba(157, 78, 221, 0.6));
    }
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.logo-text-stack {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-tagline {
    font-size: 2.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff4c4 0%, #ffd700 30%, #d4a017 60%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(212, 160, 23, 0.3);
    animation: shimmerText 3s ease-in-out infinite;
    background-size: 200% 100%;
    text-transform: uppercase;
    line-height: 1;
}

.brand-name {
    font-size: 0.85rem;
    letter-spacing: 12px;
    margin-top: 0.6rem;
    text-transform: uppercase;
    font-weight: 400;
    background: linear-gradient(135deg, #f8f8ff 0%, #c0c0c0 40%, #ffffff 60%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

@keyframes shimmerText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.icon-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem;
}

.cart-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    padding: 0.5rem;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: #000;
    font-size: 0.7rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.shop-now-btn {
    background: linear-gradient(135deg, var(--purple), #b366f7);
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.shop-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(157, 78, 221, 0.4);
}

/* ============ STORY HERO ============ */
.story-hero {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a3f 50%, #2a1f4f 100%);
    color: #fff;
    padding: 5rem 2rem;
    overflow: hidden;
    position: relative;
}

.story-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(157,78,221,0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.story-tag {
    display: inline-block;
    background: rgba(212, 160, 23, 0.15);
    color: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 160, 23, 0.4);
    letter-spacing: 1px;
}

.story-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.story-text h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--purple));
    margin-top: 1rem;
    border-radius: 2px;
}

.story-lead {
    color: #ddd;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.1rem;
}

.story-lead strong {
    color: var(--gold);
}

.story-lead em {
    color: var(--gold);
    font-style: italic;
    font-size: 1.15rem;
}

.cta-btn-large {
    background: linear-gradient(135deg, var(--purple), #b366f7);
    color: #fff;
    border: none;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.4);
}

.cta-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(157, 78, 221, 0.6);
}

.story-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-mala {
    font-size: 12rem;
    animation: float-mala 4s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(212, 160, 23, 0.6));
}

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

/* ===== HERO 3D ROTATING RING ===== */
.story-visual {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.hero-ring-stage {
    position: relative;
    z-index: 2;
    width: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.hero-ring-spin {
    width: 100%;
    max-width: 340px;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.6)) drop-shadow(0 0 30px rgba(212, 160, 23, 0.4));
    animation: ring3DSpin 6s linear infinite;
    transform-style: preserve-3d;
    will-change: transform;
    position: relative;
    z-index: 2;
}

@keyframes ring3DSpin {
    0%   { transform: rotateY(0deg) rotateX(10deg); }
    100% { transform: rotateY(360deg) rotateX(10deg); }
}

.hero-ring-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(212,160,23,0.35) 0%, rgba(157,78,221,0.2) 40%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ===== FLOATERS - spiritual icons orbiting ===== */
.floater {
    position: absolute;
    filter: drop-shadow(0 0 12px rgba(212, 160, 23, 0.6));
    z-index: 1;
    user-select: none;
}

.floater-mala {
    font-size: 2.5rem;
    top: 5%;
    left: 8%;
    animation: orbit1 7s ease-in-out infinite;
}

.floater-meditate {
    font-size: 2.2rem;
    top: 12%;
    right: 5%;
    animation: orbit2 9s ease-in-out infinite;
    animation-delay: 0.5s;
}

.floater-festival {
    font-size: 2.3rem;
    bottom: 15%;
    left: 5%;
    animation: orbit3 8s ease-in-out infinite;
    animation-delay: 1s;
}

.floater-lotus {
    font-size: 2rem;
    bottom: 8%;
    right: 10%;
    animation: orbit1 10s ease-in-out infinite reverse;
    animation-delay: 1.5s;
}

.floater-temple {
    font-size: 2.2rem;
    top: 45%;
    left: 0;
    animation: orbit2 11s ease-in-out infinite;
    animation-delay: 2s;
}

.floater-om {
    font-size: 2.5rem;
    top: 50%;
    right: 0;
    animation: orbit3 9s ease-in-out infinite reverse;
    animation-delay: 2.5s;
}

@keyframes orbit1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.85; }
    25% { transform: translate(20px, -15px) rotate(8deg); opacity: 1; }
    50% { transform: translate(10px, -25px) rotate(-5deg); opacity: 0.9; }
    75% { transform: translate(-15px, -10px) rotate(3deg); opacity: 1; }
}

@keyframes orbit2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.85; }
    33% { transform: translate(-25px, 15px) rotate(-6deg); opacity: 1; }
    66% { transform: translate(-10px, -20px) rotate(8deg); opacity: 0.95; }
}

@keyframes orbit3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.85; }
    50% { transform: translate(15px, -20px) rotate(10deg); opacity: 1; }
}

@media (max-width: 768px) {
    .floater { font-size: 1.5rem !important; }
    .hero-infinity-main { max-width: 250px; }
}

/* Hero Mark - Real infinity from logo */
.hero-mark-img {
    width: 100%;
    max-width: 450px;
    filter: drop-shadow(0 0 50px rgba(212, 160, 23, 0.7));
    animation: heroMarkFloat 4s ease-in-out infinite;
}

.hero-lotus {
    transform-origin: 150px 55px;
    animation: heroLotusPulse 3s ease-in-out infinite;
}

.hero-infinity {
    transform-origin: 150px 170px;
    animation: heroInfinityRotate 6s ease-in-out infinite;
}

.hero-spark {
    opacity: 0;
    animation: heroSpark 2.5s ease-in-out infinite;
}

.hs1 { animation-delay: 0s; }
.hs2 { animation-delay: 0.6s; }
.hs3 { animation-delay: 1.2s; }
.hs4 { animation-delay: 1.8s; }

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

@keyframes heroLotusPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes heroInfinityRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(3deg); }
}

@keyframes heroSpark {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(2); }
}

/* Background decorative logo elements */
.bg-infinity, .bg-lotus {
    position: absolute;
    opacity: 0.06;
    z-index: 0;
}

.bg-infinity-1 {
    width: 400px;
    top: 10%;
    left: -50px;
    animation: bgDrift 20s ease-in-out infinite;
}

.bg-lotus-1 {
    width: 200px;
    bottom: 15%;
    right: 8%;
    animation: bgDrift 25s ease-in-out infinite reverse;
}

@keyframes bgDrift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -20px) rotate(15deg); }
}

/* Section Divider with real infinity from logo */
.section-divider {
    background: linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.divider-line {
    flex: 0 1 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4a017, transparent);
}

.divider-infinity {
    height: 60px;
    width: auto;
    animation: dividerGlow 3s ease-in-out infinite;
}

@keyframes dividerGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(212, 160, 23, 0.3)); }
    50% { filter: drop-shadow(0 0 18px rgba(212, 160, 23, 0.7)); }
}

/* ============ SOLUTION SECTION ============ */
.solution-section {
    background: #fff;
    padding: 5rem 2rem;
}

.solution-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: rgba(157, 78, 221, 0.1);
    color: var(--purple);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.solution-container h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.solution-lead {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 3.5rem;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.solution-card {
    background: linear-gradient(135deg, #f8f9fb, #fff);
    border: 1px solid #e8e8f0;
    padding: 2.5rem 1.8rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: var(--purple);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.15);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.solution-card h3 {
    color: var(--dark-text);
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
}

.solution-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Balance/Features Section */
.balance-section {
    background: linear-gradient(180deg, #f8f9fb 0%, #fff 100%);
    padding: 5rem 2rem;
}

.balance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0 4rem;
}

.balance-card {
    background: linear-gradient(135deg, #fff 0%, #fafafd 100%);
    border: 1px solid #e8e8f0;
    border-top: 4px solid var(--gold);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s;
    text-align: left;
}

.balance-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--purple);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.15);
}

.balance-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
}

.balance-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(212, 160, 23, 0.4));
}

.balance-card h3 {
    color: var(--dark-text);
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.balance-subtitle {
    color: var(--purple);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem !important;
    font-style: italic;
}

.balance-card p:last-child {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.7;
}

.shop-cta {
    background: linear-gradient(135deg, #0a0e27, #2a1f4f);
    padding: 3rem 2rem;
    border-radius: 16px;
    color: #fff;
}

.shop-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.shop-now-large {
    background: linear-gradient(135deg, var(--gold), #f0c040);
    color: #000;
    border: none;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.4);
}

.shop-now-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 160, 23, 0.6);
}

@media (max-width: 768px) {
    .story-container {
        grid-template-columns: 1fr;
    }
    .story-text h1 {
        font-size: 2rem;
    }
    .floating-mala {
        font-size: 7rem;
    }
}

/* ============ PRODUCT HERO ============ */
.product-hero {
    background: #fff;
    padding: 3rem 2rem;
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

/* === Product Gallery === */
.product-gallery {
    display: flex;
    gap: 1rem;
}

.thumbnails {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 80px;
}

.thumb {
    width: 80px;
    height: 80px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
    background: #fff;
}

/* removed - using styling below */

.thumb.active {
    border-color: var(--purple);
    box-shadow: 0 0 0 2px rgba(157, 78, 221, 0.2);
}

.thumb:hover {
    border-color: var(--purple);
}

.thumb-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a3e, #1a1a2e);
    position: relative;
}

.thumb-inner::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 8px solid #333;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
}

.thumb-inner.side::after { width: 60px; height: 25px; border-radius: 12px; }
.thumb-inner.box::after { width: 55px; height: 35px; border-radius: 4px; border-color: #555; }
.thumb-inner.app::after {
    width: 35px; height: 55px; border-radius: 6px;
    background: linear-gradient(180deg, var(--purple), var(--deep));
    border-color: #444;
}
.thumb-inner.hand::after {
    width: 50px; height: 50px;
    background: radial-gradient(circle, #c89a7a, #8b6f47);
    border-color: #1a1a2e;
}

.main-image {
    flex: 1;
    background: linear-gradient(135deg, #f5f5fa, #e8e8f0);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.ring-main-img {
    max-width: 75%;
    max-height: 75%;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    transition: transform 0.6s ease;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
    animation: ringFloat 4s ease-in-out infinite;
}

@keyframes ringFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-15px) rotateY(8deg); }
}

/* Thumbnails - different angles */
.thumb {
    background: linear-gradient(135deg, #f5f5fa, #e8e8f0) !important;
}

.ring-thumb {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 8px;
    transition: transform 0.3s;
}

.ring-thumb.angle-0 { transform: rotate(0deg); }
.ring-thumb.angle-1 { transform: rotate(45deg) scale(0.9); }
.ring-thumb.angle-2 { transform: rotate(90deg) scale(0.85); }
.ring-thumb.angle-3 { transform: rotate(-30deg) scaleX(-1); }
.ring-thumb.angle-4 { transform: rotate(180deg); }

.ring-showcase {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4e 50%, #1a1a2e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.ring-showcase::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.ring-3d {
    position: relative;
    z-index: 10;
    margin-bottom: 3rem;
    perspective: 800px;
}

.ring-outer {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a4a5e 0%, #1a1a2e 50%, #2a2a3e 100%);
    box-shadow:
        inset 0 0 80px rgba(0,0,0,0.8),
        inset 0 4px 20px rgba(255,255,255,0.1),
        0 20px 60px rgba(0,0,0,0.6),
        0 0 100px rgba(157, 78, 221, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: rotateX(15deg) rotateY(-10deg);
    animation: float-ring 4s ease-in-out infinite;
}

@keyframes float-ring {
    0%, 100% { transform: rotateX(15deg) rotateY(-10deg) translateY(0); }
    50% { transform: rotateX(15deg) rotateY(-10deg) translateY(-15px); }
}

.ring-inner {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #2a2a3e, #0a0e27);
    box-shadow:
        inset 0 0 40px rgba(0,0,0,0.9),
        inset 0 -5px 15px rgba(157, 78, 221, 0.2);
}

.ring-glow {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--gold), transparent 70%);
    border-radius: 50%;
    top: 40px;
    right: 60px;
    filter: blur(2px);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.showcase-text {
    text-align: center;
    color: #fff;
    z-index: 10;
}

.showcase-text h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.showcase-text p {
    color: #ccc;
    font-size: 0.95rem;
}

/* === Product Info === */
.product-info {
    padding: 1rem 0;
}

.breadcrumb {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 2.2rem;
    color: var(--dark-text);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
}

.reviews {
    color: var(--muted);
    font-size: 0.9rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--dark-text);
}

.original-price {
    font-size: 1.2rem;
    color: var(--muted);
    text-decoration: line-through;
}

.discount {
    background: var(--purple);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
}

.product-description {
    color: #555;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === Selectors === */
.selector-section {
    margin-bottom: 1.5rem;
}

.selector-section > label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--dark-text);
}

.selector-section > label span {
    font-weight: normal;
    color: var(--muted);
}

.color-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.color-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.color-option:hover {
    border-color: var(--purple);
}

.color-option.active {
    border-color: var(--purple);
    background: rgba(157, 78, 221, 0.05);
}

.color-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ccc;
}

.color-option span {
    font-size: 0.9rem;
    font-weight: 500;
}

.size-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.7rem;
}

.size-guide {
    color: var(--purple);
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 500;
}

.size-guide:hover {
    text-decoration: underline;
}

.size-options {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 0.5rem;
}

.size-btn {
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 0.7rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.size-btn:hover {
    border-color: var(--purple);
}

.size-btn.active {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
}

/* === Purchase Section === */
.purchase-section {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.quantity-selector button {
    background: #fff;
    border: none;
    width: 45px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--dark-text);
}

.quantity-selector button:hover {
    background: #f0f0f0;
}

#quantity {
    padding: 0 1rem;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

.add-to-cart-btn {
    flex: 1;
    background: var(--purple);
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background: #7c3ae0;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(157, 78, 221, 0.4);
}

.buy-now-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), #e0b837);
    color: #000;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1.5rem;
}

.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 160, 23, 0.4);
}

.quick-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    padding: 1.5rem;
    background: #f8f9fb;
    border-radius: 10px;
}

.feature-item {
    color: #555;
    font-size: 0.9rem;
}

/* ============ FEATURES SECTION ============ */
.features-section {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a3f 100%);
    color: #fff;
    padding: 5rem 2rem;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(212, 160, 23, 0.3);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-card p {
    color: #ddd;
    font-size: 0.9rem;
    line-height: 1.5;
}

.specs-table-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.specs-table-container h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #ddd;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--gold);
    width: 40%;
}

/* ============ APP SECTION ============ */
.app-section {
    background: #fff;
    padding: 5rem 2rem;
}

.app-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-text h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.app-tagline {
    color: var(--purple);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.app-features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.app-features-list li {
    padding: 0.7rem 0;
    color: #555;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.play-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #000;
    color: #fff;
    padding: 0.9rem 1.8rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.play-store-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.play-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.play-store-btn small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

.play-store-btn strong {
    font-size: 1.1rem;
}

/* Phone Mockup */
.app-preview {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1a1a2e;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #000;
    border-radius: 3px;
    z-index: 5;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0a0e27, #1a1a3f);
    border-radius: 28px;
    padding: 50px 20px 20px;
    overflow-y: auto;
}

.app-header {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* App Greeting */
.app-greeting {
    margin-bottom: 0.9rem;
    text-align: center;
}
.greet-time {
    color: #999;
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}
.greet-name {
    color: var(--gold);
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

/* Plan CTA */
.app-plan-cta {
    background: linear-gradient(135deg, rgba(212,160,23,0.18), rgba(157,78,221,0.18));
    border: 1px solid rgba(212,160,23,0.4);
    border-radius: 10px;
    padding: 0.7rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    box-shadow: 0 0 18px rgba(212,160,23,0.15);
    animation: planGlow 3s ease-in-out infinite;
}
@keyframes planGlow {
    0%, 100% { box-shadow: 0 0 12px rgba(212,160,23,0.15); }
    50% { box-shadow: 0 0 25px rgba(212,160,23,0.4); }
}
.plan-icon { font-size: 1.2rem; }
.app-plan-cta strong {
    color: #fff;
    font-size: 0.78rem;
    display: block;
}
.app-plan-cta small {
    color: #aaa;
    font-size: 0.6rem;
    display: block;
}
.plan-arrow { color: var(--gold); font-size: 1.2rem; font-weight: 300; }

/* Stat Row (3 mini cards) */
.app-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}
.mini-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,160,23,0.2);
    border-radius: 8px;
    padding: 0.6rem 0.3rem;
    text-align: center;
}
.ms-num {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
}
.ms-num small { font-size: 0.55rem; opacity: 0.7; }
.ms-lbl {
    color: #bbb;
    font-size: 0.55rem;
    margin-top: 0.3rem;
    letter-spacing: 0.5px;
}

/* SoulSync Score Card */
.app-score-card {
    background: linear-gradient(135deg, rgba(157,78,221,0.2), rgba(157,78,221,0.05));
    border: 1px solid rgba(157,78,221,0.4);
    border-radius: 10px;
    padding: 0.7rem 0.8rem;
    margin-bottom: 0.8rem;
}
.score-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.score-title {
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.score-badge {
    background: #4ade80;
    color: #000;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 8px;
}
.score-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.3rem;
}
.score-bar {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}
.score-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4a017, #9D4EDD);
    border-radius: 4px;
    animation: scoreGrow 2s ease-out;
}
@keyframes scoreGrow {
    from { width: 0%; }
}
.score-val {
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
}
.score-meta {
    color: #999;
    font-size: 0.55rem;
}

/* Sandhya Card */
.app-sandhya {
    background: rgba(212,160,23,0.1);
    border-left: 3px solid var(--gold);
    border-radius: 6px;
    padding: 0.55rem 0.7rem;
    margin-bottom: 0.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sandhya-time { color: #fff; font-size: 0.72rem; font-weight: 600; }
.sandhya-eta { color: var(--gold); font-size: 0.65rem; font-weight: 700; }

/* Festival Card */
.app-festival {
    background: rgba(255,140,0,0.1);
    border: 1px solid rgba(255,140,0,0.3);
    border-radius: 8px;
    padding: 0.6rem 0.7rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.fest-icon { font-size: 1.4rem; }
.app-festival strong { color: #fff; font-size: 0.75rem; display: block; }
.app-festival small { color: #aaa; font-size: 0.6rem; }

/* Bottom Tab Bar */
.app-tabbar {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212,160,23,0.3);
    border-radius: 0 0 28px 28px;
    padding: 0.6rem 0.4rem;
    display: flex;
    justify-content: space-around;
}
.tab-item {
    font-size: 1.1rem;
    opacity: 0.5;
    transition: all 0.3s;
}
.tab-item.active {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(212,160,23,0.7));
    transform: scale(1.15);
}

.phone-screen {
    padding-bottom: 50px !important;
}

/* ============ FAQ SECTION ============ */
.faq-section {
    background: #f8f9fb;
    padding: 5rem 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 3rem;
}

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

.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--purple);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-arrow {
    color: var(--purple);
    transition: transform 0.3s;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    color: #555;
    transition: all 0.3s;
}

.faq-item.open .faq-answer {
    padding: 0 1.5rem 1.2rem;
    max-height: 300px;
}

/* ============ CART MODAL ============ */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    justify-content: flex-end;
}

.cart-modal.active {
    display: flex;
}

.cart-content {
    background: #fff;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.cart-header h2 {
    color: var(--dark-text);
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-text);
}

#cartItems {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    background: #f8f9fb;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.cart-item-name {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.cart-item-details {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0.3rem 0;
}

.cart-item-price {
    color: var(--purple);
    font-weight: bold;
    font-size: 1.1rem;
}

.cart-item-remove {
    background: transparent;
    border: 1px solid #ccc;
    color: #888;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.cart-item-remove:hover {
    border-color: #f00;
    color: #f00;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.cart-total {
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.checkout-btn {
    width: 100%;
    background: var(--purple);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.checkout-btn:hover {
    background: #7c3ae0;
}

/* ============ FOOTER ============ */
footer {
    background: #0a0e27;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-col p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #888;
    font-size: 0.85rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
    .product-container,
    .app-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .product-gallery {
        flex-direction: column-reverse;
    }

    .thumbnails {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
    }

    .size-options {
        grid-template-columns: repeat(5, 1fr);
    }

    .color-options {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}
