/* ============== VARIABLES & ROOT ============== */
:root {
    --bg-dark: #0a0406;
    --bg-surface: #16080b;
    --text-main: #f8f9fa;
    --text-muted: #8892a4;
    --accent-orange: #d81b60;
    --accent-yellow: #ffca28;
    --accent-blue: #d81b60;
    --accent-purple: #880e4f;
    --grad-primary: linear-gradient(135deg, #d81b60 0%, #ff4081 100%);
    --grad-secondary: linear-gradient(135deg, #880e4f 0%, #d81b60 100%);
    --glass-bg: rgba(255,255,255,0.03);
    --glass-border: rgba(255,255,255,0.08);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* ============== RESET ============== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255,23,68,0.07) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(156,39,176,0.07) 0%, transparent 50%);
}
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* Fallback font-display: ensure text is visible while fonts load */
@font-face { font-family: 'Outfit'; font-display: swap; }
@font-face { font-family: 'Inter'; font-display: swap; }
@font-face { font-family: 'Montserrat'; font-display: swap; }

/* ============== UTILITIES ============== */
.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.highlight { color: var(--accent-orange); font-weight: 700; }
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 15px; }

/* ============== ANIMATIONS ============== */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* Safety: always show content on mobile — never hide due to animation not firing */
@media (max-width: 768px) {
    .fade-in-up { opacity: 1 !important; transform: translateY(0) !important; }
    /* Disable heavy animations on mobile for faster paint */
    .float-anim, .wobble-anim { animation: none !important; }
    .pulse-anim { animation-duration: 4s !important; }
}

@keyframes pulse {
    0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,23,68,0.5); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 12px rgba(255,23,68,0); }
}
.pulse-anim { animation: pulse 2.5s infinite; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.float-anim { animation: float 5s ease-in-out infinite; }

@keyframes wobble {
    0%,100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.04) rotate(-2deg); }
    75% { transform: scale(1.04) rotate(2deg); }
}
.wobble-anim { animation: wobble 3s infinite; }

@keyframes wu-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}
.float-pulse { animation: wu-pulse 2.5s infinite; }

/* ============== ANNOUNCEMENT BAR ============== */
.announcement-bar {
    background: var(--grad-primary);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
}

/* ============== PRIMARY NAVBAR ============== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 68px;
    background: rgba(10,4,6,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    gap: 20px;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.navbar-logo .logo-icon {
    width: 36px; height: 36px;
    background: var(--grad-primary);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.navbar-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #fff;
}
.navbar-logo .logo-text span { color: var(--accent-orange); }

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}
.navbar-nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.navbar-nav a:hover, .navbar-nav a.active-link {
    color: #fff;
    background: rgba(255,255,255,0.06);
}
.navbar-nav a.app-link {
    background: var(--grad-primary);
    color: #fff !important;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.nav-social-icon {
    color: var(--text-muted);
    font-size: 1.05rem;
    transition: color 0.2s, transform 0.2s;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
}
.nav-social-icon:hover { color: var(--accent-orange); transform: translateY(-2px); background: rgba(255,255,255,0.08); }

.navbar-timer {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,23,68,0.1);
    border: 1px solid rgba(255,23,68,0.2);
    border-radius: 10px;
    padding: 5px 10px;
}
.navbar-timer .t-block {
    display: flex; flex-direction: column; align-items: center;
    min-width: 28px;
}
.navbar-timer .t-block span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-yellow);
    line-height: 1;
}
.navbar-timer .t-block small {
    font-size: 0.5rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}
.navbar-timer .t-sep { color: var(--accent-orange); font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* ============== SECONDARY CATEGORY BAR ============== */
.category-bar {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--glass-border);
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 5px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    white-space: nowrap;
}
.category-bar::-webkit-scrollbar { display: none; }
.category-bar a {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 13px 16px;
    transition: color 0.2s, border-bottom 0.2s;
    border-bottom: 2px solid transparent;
    display: inline-block;
    white-space: nowrap;
}
.category-bar a:hover { color: #fff; }
.category-bar a.active-cat, .category-bar a:focus { color: var(--accent-orange); border-bottom-color: var(--accent-orange); }

/* ============== HERO ============== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 70px 8%;
    max-width: 1300px;
    margin: 0 auto;
}
.hero-content { flex: 1; }
.badge {
    display: inline-block;
    padding: 7px 16px;
    background: rgba(255,23,68,0.12);
    color: var(--accent-orange);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 22px;
    border: 1px solid rgba(255,23,68,0.25);
    letter-spacing: 0.3px;
}
.hero h1 { font-size: 3.8rem; font-weight: 800; margin-bottom: 20px; }
.hero .subtitle { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 30px; line-height: 1.75; }
.pricing-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    border-left: 3px solid var(--accent-orange);
}
.discount-tag {
    background: var(--accent-orange);
    color: #fff;
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.cta-button {
    display: block;
    background: var(--grad-primary);
    color: #fff;
    text-align: center;
    padding: 18px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(255,23,68,0.35);
    transition: transform 0.25s, box-shadow 0.25s;
    margin-bottom: 18px;
}
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(255,23,68,0.55); }
.cta-primary { display: block; font-family: var(--font-heading); font-size: 1.35rem; font-weight: 800; letter-spacing: 0.5px; }
.cta-secondary { display: block; font-size: 0.82rem; opacity: 0.88; margin-top: 4px; }
.scarcity-text { font-size: 0.9rem; text-align: center; }
.red-text { color: #ff5252; font-weight: 700; text-shadow: 0 0 12px rgba(255,82,82,0.5); font-size: 1rem; margin-top: 12px; }
.yellow-marker { background: #ffeb3b; color: #000; padding: 1px 6px; font-weight: 900; border-radius: 3px; }
.hero-image-wrapper { flex: 1; position: relative; display: flex; justify-content: center; }
.hero-image { width: 100%; max-width: 480px; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); position: relative; z-index: 2; }
.overlay-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 70%; height: 70%; background: var(--accent-purple); filter: blur(80px); opacity: 0.25; z-index: 1; border-radius: 50%; }

/* ============== TRUST BAR ============== */
.trust-bar {
    background: var(--bg-surface);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 18px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
}
.trust-item i { color: var(--accent-orange); font-size: 1rem; }
.trust-item strong { color: #fff; }

/* ============== STORE SECTION ============== */
.store-section { padding: 70px 5%; max-width: 1300px; margin: 0 auto; }
.store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}

/* ============== PRODUCT CARD ============== */
.product-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: rgba(255,23,68,0.35);
}
.product-img-wrapper { width: 100%; height: 220px; overflow: hidden; position: relative; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, opacity 0.5s ease; position: relative; z-index: 1; }
.product-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0; transition: opacity 0.4s ease;
    z-index: 2; pointer-events: none;
}
.product-card:hover .product-img { transform: scale(1.06); }
.product-card:hover .product-video { opacity: 1; }
.cat-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(10,4,6,0.85);
    color: var(--accent-orange);
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255,23,68,0.3);
    backdrop-filter: blur(8px);
    z-index: 5;
}
.sale-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: #ff1744;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 5;
}
.product-content { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.product-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: #fff; line-height: 1.3; }
.product-desc {
    color: var(--text-muted);
    font-size: 0.84rem;
    margin-bottom: 4px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.product-desc.expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}
.read-more-btn {
    background: none;
    border: none;
    color: var(--accent-orange);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    padding: 2px 0 8px;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.2s;
}
.read-more-btn:hover { opacity: 0.75; }

/* ── Two-zone split buy button ── */
.buy-btn {
    display: flex;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255,23,68,0.45);
}

/* Left: price zone */
.buy-price-zone {
    background: #0d1424;
    border: 1px solid rgba(255,255,255,0.1);
    border-right: none;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1px;
    flex-shrink: 0;
    min-width: 80px;
    border-radius: 12px 0 0 12px;
}
.buy-price-old {
    font-size: 0.7rem;
    text-decoration: line-through;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    line-height: 1;
}
.buy-price-new {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
    line-height: 1.1;
    letter-spacing: -0.3px;
}

/* Right: CTA zone */
.buy-cta-zone {
    background: linear-gradient(135deg, #ff1744 0%, #e91e63 100%);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    gap: 3px;
    border-radius: 0 12px 12px 0;
    min-width: 0; /* allow flex child to shrink */
}
.buy-cta-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
    text-align: center;
    line-height: 1.2;
    white-space: normal; /* allow wrap on tiny screens */
    word-break: break-word;
}
.buy-save-badge {
    background: rgba(0,0,0,0.3);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    display: inline-block;
}


/* ============== FAQ ============== */
.faq-section { padding: 60px 40px; max-width: 860px; margin: 60px auto; }
.faq-accordion { margin-top: 35px; }
.faq-item { border-bottom: 1px solid var(--glass-border); }
.faq-question {
    width: 100%; background: none; border: none; color: var(--text-main);
    font-family: var(--font-heading); font-size: 1.05rem; font-weight: 500;
    text-align: left; padding: 20px 10px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    transition: color 0.25s;
}
.faq-question:hover { color: var(--accent-orange); }
.faq-question .icon { font-size: 1.4rem; font-weight: 300; transition: transform 0.3s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 10px; color: var(--text-muted); }
.faq-item.active .faq-answer { max-height: 200px; padding: 0 10px 20px; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); color: var(--accent-orange); }

/* ============== COMMUNITY SECTION ============== */
.community-section { padding: 70px 5%; max-width: 900px; margin: 0 auto; text-align: center; }
.community-panel {
    background: linear-gradient(145deg, rgba(255,23,68,0.08) 0%, rgba(156,39,176,0.08) 100%);
    border: 1px solid rgba(255,23,68,0.15);
    padding: 55px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}
.community-panel h2 { font-size: 2.2rem; margin-bottom: 15px; }
.community-panel p { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto; line-height: 1.7; }
.community-buttons { display: flex; flex-direction: column; gap: 14px; margin-top: 35px; max-width: 380px; margin-left: auto; margin-right: auto; }
.community-btn {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff; padding: 15px 22px; border-radius: 14px;
    font-size: 1rem; font-weight: 600; transition: all 0.25s;
}
.community-btn:hover { background: rgba(255,255,255,0.09); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.community-btn i { font-size: 1.3rem; }
.community-btn.instagram { border-color: rgba(225,48,108,0.3); }
.community-btn.instagram:hover { background: rgba(225,48,108,0.1); }
.community-btn.telegram { border-color: rgba(0,136,204,0.3); }
.community-btn.telegram:hover { background: rgba(0,136,204,0.1); }
.community-btn.whatsapp { border-color: rgba(37,211,102,0.3); }
.community-btn.whatsapp:hover { background: rgba(37,211,102,0.1); }
.community-btn.youtube { border-color: rgba(255,0,0,0.3); }
.community-btn.youtube:hover { background: rgba(255,0,0,0.1); }
.community-btn.facebook { border-color: rgba(24,119,242,0.3); }
.community-btn.facebook:hover { background: rgba(24,119,242,0.1); }

/* ============== FOOTER ============== */
footer { padding: 45px 5%; border-top: 1px solid var(--glass-border); margin-top: 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; color: var(--text-main); }
.footer-links { display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; transition: color 0.25s; }
.footer-links a:hover { color: var(--accent-orange); }
.disclaimer { font-size: 0.72rem; color: rgba(0,0,0,0.4); max-width: 750px; text-align: center; line-height: 1.6; }

/* ============== WHATSAPP FLOAT ============== */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    background: #25d366; color: #fff; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.1) translateY(-4px); box-shadow: 0 8px 25px rgba(37,211,102,0.7); }

/* ============== SALES POPUP ============== */
.sales-popup {
    position: fixed; bottom: 100px; left: -380px;
    width: 300px;
    background: rgba(22,8,11,0.97);
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--accent-orange);
    border-radius: 14px; padding: 14px 16px;
    display: flex; gap: 12px;
    z-index: 998;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    transition: left 0.5s cubic-bezier(0.68,-0.55,0.27,1.55), bottom 0.35s ease, opacity 0.5s ease;
    opacity: 0;
}
.sales-popup.show { left: 20px; opacity: 1; }
.sp-content { flex: 1; }
.sp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.sp-name { font-weight: 700; font-size: 0.9rem; }
.sp-verified { font-size: 0.72rem; color: #25d366; font-weight: 600; }
.sp-action { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 4px; }
.sp-action .highlight { color: var(--accent-blue); }
.sp-time { font-size: 0.72rem; color: var(--text-muted); opacity: 0.7; }
.sp-close { background: none; border: none; color: var(--text-muted); font-size: 1.1rem; cursor: pointer; padding: 0 4px; }
.sp-close:hover { color: #d81b60; }

/* ============== COUNTDOWN (standalone) ============== */
.countdown-timer { display: flex; align-items: center; gap: 8px; }
.time-block { display: flex; flex-direction: column; align-items: center; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 8px; padding: 5px 12px; min-width: 56px; }
.time-block span { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--accent-yellow); }
.time-block small { font-size: 0.58rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 1px; }
.time-separator { font-size: 1.3rem; font-weight: bold; color: var(--text-muted); }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
    .navbar-nav { gap: 4px; }
    .navbar-nav a { padding: 6px 10px; font-size: 0.85rem; }
    .store-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* CTA text — default show full, hide short */
.cta-short { display: none; }
.cta-full { display: inline; }

@media (max-width: 768px) {
    .navbar-nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(10,4,6,0.98); border-bottom: 1px solid var(--glass-border); padding: 15px 5%; gap: 5px; }
    .navbar-nav.open { display: flex; }
    .navbar-nav a { padding: 12px 10px; border-radius: 8px; }
    .hamburger { display: flex; }
    .hero { flex-direction: column; text-align: center; padding: 50px 5%; }
    .hero h1 { font-size: 2.4rem; }
    .hero-image { max-width: 100%; }
    .trust-bar { gap: 20px; }
    .store-section { padding: 30px 4% 50px; }
    .store-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .product-card { border-radius: 14px; }
    .product-title { font-size: 0.95rem; }
    .community-panel { padding: 35px 25px; }
}

@media (max-width: 600px) {
    /* ── Switch CTA text to short version ── */
    .cta-full { display: none !important; }
    .cta-short { display: inline !important; }

    /* ── Grid ── */
    .store-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .store-section { padding: 16px 3% 90px; }

    /* ── Card — enforce clipping so image never bleeds out ── */
    .product-card {
        border-radius: 12px;
        overflow: hidden !important;
        box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    }
    .product-img-wrapper {
        height: 130px;
        overflow: hidden !important;
    }
    .product-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    .cat-badge {
        font-size: 0.55rem; padding: 3px 6px;
        top: 5px; left: 5px;
        max-width: 55%;         /* never overlap sale badge */
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .sale-badge {
        font-size: 0.6rem; padding: 3px 8px;
        top: 5px; right: 5px;
        border-radius: 14px;
    }

    /* ── Card content ── */
    .product-content { padding: 9px 10px 11px; }
    .product-title { font-size: 0.78rem; font-weight: 700; margin-bottom: 3px; line-height: 1.25; }
    .product-desc { font-size: 0.7rem; margin-bottom: 0; line-height: 1.45; }
    .read-more-btn { font-size: 0.65rem; padding: 3px 0 5px; }

    /* ── Split button — fixed height, no wrapping ever ── */
    .buy-btn {
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(255,23,68,0.35);
        min-height: 52px;
    }
    .buy-price-zone {
        padding: 8px 10px;
        min-width: 62px;
        border-radius: 10px 0 0 10px;
        gap: 2px;
    }
    .buy-price-old { font-size: 0.58rem; }
    .buy-price-new { font-size: 1rem; letter-spacing: -0.5px; }
    .buy-cta-zone {
        padding: 8px 8px;
        gap: 2px;
        border-radius: 0 10px 10px 0;
        /* No save badge on mobile — image badge already shows 90% OFF */
    }
    .buy-cta-label {
        font-size: 0.8rem;
        font-weight: 800;
        gap: 3px;
        white-space: nowrap !important; /* MUST be one line */
    }
    /* Show save badge — CTA text is short so there's room */
    .buy-save-badge {
        display: inline-block;
        font-size: 0.54rem;
        font-weight: 700;
        padding: 2px 7px;
        background: rgba(0,0,0,0.28);
        color: #fff;
        border-radius: 20px;
        white-space: nowrap;
        letter-spacing: 0.2px;
    }

    /* ── Other mobile elements ── */
    .hero h1 { font-size: 2rem; }
    .trust-bar { display: none; }
    .category-bar { padding: 0 2%; }
    .category-bar a { padding: 10px 10px; font-size: 0.78rem; }
    
    /* ── Sales Popup ultra-compact for mobile ── */
    .sales-popup { width: 195px; bottom: 145px; left: 10px; right: auto; padding: 8px 10px; gap: 6px; border-radius: 8px; border-left-width: 2px; }
    .sp-name { font-size: 0.72rem; }
    .sp-verified { font-size: 0.55rem; }
    .sp-action { font-size: 0.62rem; line-height: 1.2; margin-bottom: 2px; }
    .sp-time { font-size: 0.55rem; }
    .sp-close { font-size: 0.8rem; padding: 0; }
    .announcement-bar { font-size: 0.75rem; padding: 7px 5%; }
    .section-title { font-size: 1.5rem !important; }
}


/* ============== FREE GIFT MODAL & FLOAT ============== */
.gift-float {
    position: fixed; bottom: 28px; right: 28px;
    height: 50px;
    padding: 0 18px;
    width: auto;
    border-radius: 50px;
    background: linear-gradient(135deg, #d81b60 0%, #e91e63 100%); color: #fff;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 20px rgba(216,27,96,0.5);
    z-index: 999; cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
.gift-float i { font-size: 1.3rem; }
.gift-float-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
}
.gift-float:hover { transform: scale(1.06) translateY(-4px); box-shadow: 0 8px 25px rgba(216,27,96,0.7); }

.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
    z-index: 10000; display: none; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.modal-overlay.show { display: flex; opacity: 1; }

.gift-modal {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 40px;
    max-width: 450px; width: 90%; text-align: center;
    position: relative;
    transform: translateY(30px); transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.modal-overlay.show .gift-modal { transform: translateY(0); }
.close-modal {
    position: absolute; top: 15px; right: 20px;
    background: none; border: none; color: var(--text-muted);
    font-size: 2rem; cursor: pointer; transition: color 0.2s;
    line-height: 1;
}
.close-modal:hover { color: #fff; }

.gift-modal h2 { font-size: 2rem; margin-bottom: 10px; }
.gift-modal p { color: var(--text-muted); margin-bottom: 25px; line-height: 1.6; font-size: 0.95rem; }

.gift-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 20px; border-radius: 12px;
    font-weight: 700; font-size: 1.05rem; color: #fff;
    margin-bottom: 15px; text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}
.gift-btn:hover { transform: translateY(-2px); opacity: 0.9; color: #fff; }
.btn-wa { background: #25d366; }
.btn-tg { background: #0088cc; }

@media (max-width: 768px) {
    .gift-float { bottom: 90px; right: 16px; height: 44px; padding: 0 14px; }
    .gift-float i { font-size: 1.1rem; }
    .gift-float-text { font-size: 0.85rem; }
    .gift-modal { padding: 30px 20px; }
    .gift-modal h2 { font-size: 1.8rem; }
}

/* ============== MOBILE BOTTOM NAV ============== */
.mobile-bottom-nav {
    display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
    /* Hide desktop gift float — replaced by bottom nav FREE button */
    .gift-float { display: none !important; }

    /* Add bottom padding so content isn't hidden behind nav */
    body { padding-bottom: 80px; }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        height: 68px;
        background: rgba(10, 10, 14, 0.88);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255,255,255,0.07);
        z-index: 9000;
        align-items: center;
        justify-content: space-around;
        padding: 0 4px;
        padding-bottom: env(safe-area-inset-bottom, 0px);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
    }

    .mbn-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        flex: 1;
        padding: 8px 4px;
        color: rgba(255,255,255,0.4);
        text-decoration: none;
        font-size: 0.6rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        letter-spacing: 0.3px;
        transition: color 0.2s, transform 0.15s;
        background: none;
        border: none;
        cursor: pointer;
        position: relative;
    }

    .mbn-item i {
        font-size: 1.25rem;
        transition: transform 0.2s;
    }

    .mbn-item:active { transform: scale(0.9); }
    .mbn-item:active i { transform: scale(0.9); }

    .mbn-item.active,
    .mbn-item:hover {
        color: #d81b60;
    }

    .mbn-item.active i { transform: translateY(-2px); }

    /* ── Centre FREE CTA button ── */
    .mbn-cta {
        flex: 1.1;
        color: #fff;
        position: relative;
        top: -14px;
    }

    .mbn-cta-icon {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: linear-gradient(135deg, #d81b60, #e91e63);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 20px rgba(216,27,96,0.55);
        transition: transform 0.2s, box-shadow 0.2s;
        border: 3px solid rgba(255,255,255,0.9);
    }

    .mbn-cta:hover .mbn-cta-icon,
    .mbn-cta:active .mbn-cta-icon {
        transform: scale(1.1);
        box-shadow: 0 8px 28px rgba(255,23,68,0.75);
    }

    .mbn-cta i { font-size: 1.3rem; }

    .mbn-cta span {
        font-size: 0.58rem;
        font-weight: 800;
        letter-spacing: 0.5px;
        color: rgba(255,255,255,0.5);
        margin-top: 4px;
}

/* ============== DEMO REELS SLIDER ============== */
.demo-reels-section {
    padding: 60px 5%;
    max-width: 1300px;
    margin: 0 auto;
}
.demo-reels-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}
.demo-reels-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}
.demo-reels-header p {
    color: var(--text-muted);
    margin: 5px 0 0 0;
}
.demo-reels-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-orange) rgba(255,255,255,0.05);
}
.demo-reels-container::-webkit-scrollbar { height: 8px; }
.demo-reels-container::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 10px; }
.demo-reels-container::-webkit-scrollbar-thumb { background: var(--accent-orange); border-radius: 10px; }

.demo-reel-card {
    min-width: 260px;
    width: 260px;
    height: 460px;
    border-radius: 15px;
    background: #111;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: transform 0.3s;
}
.demo-reel-card:hover { transform: translateY(-5px); border-color: rgba(255,23,68,0.4); }

.demo-reel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* Let the wrapper handle clicks */
}

/* Play button overlay */
.demo-reel-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(4px);
    transition: opacity 0.3s;
    z-index: 2;
}
.demo-reel-card.is-playing .demo-reel-play { opacity: 0; }

/* Views overlay */
.demo-reel-views {
    position: absolute;
    bottom: 15px; left: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex; align-items: center; gap: 6px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

@media(max-width: 768px) {
    .demo-reel-card { min-width: 220px; width: 220px; height: 390px; }
    .demo-reels-header h2 { font-size: 1.8rem; }
}

/* ======= INTIMACY EMPIRE FULL REDESIGN ======= */

/* --- Hero Section --- */
.hero-intimacy { position:relative; width:100%; min-height:80vh; display:flex; align-items:center; justify-content:center; overflow:hidden; background: linear-gradient(135deg, #880e4f 0%, #c2185b 40%, #e91e63 100%); }
.hero-bg-overlay { position:absolute; inset:0; background: radial-gradient(ellipse at 30% 50%, rgba(255,64,129,0.3), transparent 60%), radial-gradient(ellipse at 80% 30%, rgba(255,193,7,0.15), transparent 50%); z-index:1; }
.hero-inner { position:relative; z-index:2; display:flex; flex-wrap:nowrap; align-items:center; justify-content:center; gap:40px; max-width:1300px; width:100%; padding:40px 5%; margin:0 auto; }
.hero-books { flex:0 0 300px; max-width:300px; }
.hero-books-img { width:100%; height:auto; max-height:450px; object-fit:contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); animation: floatY 3s ease-in-out infinite; }
.hero-center { flex:1 1 300px; text-align:center; color:#fff; min-width:250px; }
.hero-couple { flex:0 0 350px; max-width:350px; }
.hero-couple-img { width:100%; height:auto; max-height:450px; object-fit:cover; border-radius:20px; box-shadow:0 20px 60px rgba(0,0,0,0.4); }
.hero-intimacy h1 { font-size:3.2rem; line-height:1.15; font-weight:300; margin-bottom:25px; font-family:'Playfair Display',serif; color:#fff; text-shadow:0 4px 15px rgba(0,0,0,0.2); }
.gold-text { color:#ffc107 !important; -webkit-text-fill-color:#ffc107; }
.highlight-pink { color:#ff80ab; }
.hero-intimacy h1 .cursive-text { font-size:4.2rem; display:inline-block; transform:rotate(-4deg); margin:0 8px; }
.sale-box { background:rgba(255,255,255,0.12); backdrop-filter:blur(10px); border:2px solid rgba(255,255,255,0.25); border-radius:16px; padding:18px 35px; display:inline-flex; align-items:center; gap:15px; margin-bottom:18px; flex-wrap:wrap; justify-content:center; }
.sale-box-left { text-align:left; }
.sale-label { display:block; font-size:1.2rem; font-weight:600; line-height:1.3; }
.sale-label em { font-style:italic; font-weight:700; }
.sale-box-right { display:flex; align-items:baseline; gap:5px; }
.sale-upto { font-size:1rem; font-weight:600; text-transform:uppercase; }
.sale-percent { font-size:3.5rem; font-weight:900; color:#ffc107; line-height:1; }
.sale-percent small { font-size:1.8rem; }
.sale-off { font-size:1.8rem; font-weight:800; }
.sale-subtext { font-size:0.85rem; letter-spacing:3px; text-transform:uppercase; font-weight:500; margin-top:10px; color:rgba(255,255,255,0.8); }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* Floating hearts */
.floating-hearts { position:absolute; inset:0; z-index:1; pointer-events:none; overflow:hidden; }
.heart { position:absolute; animation: heartFloat 6s ease-in-out infinite; opacity:0.3; font-size:2.5rem; }
.h1 { top:15%; left:5%; animation-delay:0s; }
.h2 { top:60%; right:8%; animation-delay:2s; font-size:1.5rem; }
.h3 { bottom:10%; left:15%; animation-delay:4s; font-size:3rem; }
@keyframes heartFloat { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-20px) scale(1.1)} }

/* --- Pink Trust Bar --- */
.trust-bar-pink { background:linear-gradient(90deg,#ad1457,#c2185b,#ad1457); padding:16px 5%; display:flex; justify-content:center; align-items:center; flex-wrap:wrap; gap:25px; }
.trust-bar-pink .trust-item { color:#fff; font-size:1.05rem; font-weight:600; display:flex; align-items:center; gap:8px; }
.trust-bar-pink .trust-item i { font-size:1.2rem; }
.trust-sep { width:2px; height:20px; background:rgba(255,255,255,0.3); }

/* --- Golden Banner --- */
.golden-section { padding:50px 5%; margin:0 auto; background:linear-gradient(to bottom, #0a0406, #16080b, #0a0406); border-top:1px solid rgba(255,255,255,0.05); border-bottom:1px solid rgba(255,255,255,0.05); }
.golden-banner { max-width:1200px; margin:0 auto; background:linear-gradient(135deg,#f9a825,#ffca28,#f9a825); border-radius:24px; padding:40px 50px; display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:20px; box-shadow:0 15px 50px rgba(249,168,37,0.3); color:#111; position:relative; overflow:hidden; }
.golden-banner::before { content:''; position:absolute; top:-50px; right:-50px; width:200px; height:200px; background:rgba(255,255,255,0.15); border-radius:50%; }
.gb-left h2 { font-size:3.5rem; font-weight:900; line-height:1; margin:0; color:#111; text-align:left; font-family:'Outfit',sans-serif; }
.gb-center { flex:1 1 200px; max-width: 300px; text-align:center; }
.gb-presenter-img { width:100%; max-width:250px; height:auto; border-radius:16px; filter:drop-shadow(0 10px 25px rgba(0,0,0,0.2)); }
.gb-right { text-align:right; flex:1 1 250px; }
.gb-old-price { font-size:1.6rem; font-weight:700; text-decoration:line-through; color:rgba(0,0,0,0.4); display:block; }
.gb-new-price { font-size:3rem; font-weight:900; display:block; margin:-5px 0 10px; }
.gb-emi { background:#111; color:#fff; padding:6px 16px; border-radius:6px; font-size:0.85rem; font-weight:600; display:inline-block; }
.secondary-trust { display:flex; justify-content:center; gap:35px; flex-wrap:wrap; margin-top:25px; padding:15px 0; }
.st-item { color:#ccc; font-weight:600; font-size:0.95rem; display:flex; align-items:center; gap:8px; }
.st-item i { color:#ffca28; }

/* --- Pain Points / Thought Bubbles --- */
.pain-section { padding:60px 5%; background:linear-gradient(to bottom,#0a0406,#16080b); overflow:hidden; }
.pain-title { text-align:center; color:#fff; font-size:1.9rem; margin-bottom:40px; font-weight:400; font-family:'Playfair Display',serif; }
.thought-bubbles-container { display:flex; flex-wrap:wrap; justify-content:center; gap:15px; max-width:1100px; margin:0 auto; }
.thought-bubble { background:#16080b; border:1px solid rgba(255,255,255,0.1); color:#ccc; padding:14px 28px; border-radius:50px; font-size:0.95rem; font-weight:500; box-shadow:0 4px 15px rgba(0,0,0,0.2); transition:all 0.3s; cursor:default; }
.thought-bubble:hover { transform:translateY(-3px); border-color:#d81b60; color:#fff; box-shadow:0 8px 25px rgba(216,27,96,0.2); }

/* --- Dark VIP Section --- */
.vip-dark-section { background:#111; color:#fff; padding:80px 5%; }
.vip-container { max-width:1200px; margin:0 auto; display:flex; gap:60px; align-items:center; }
.vip-left { flex:1; position:relative; max-width: 500px; margin: 0 auto; }
.vip-image-stack { position:relative; }
.vip-image { width:100%; border-radius:20px; box-shadow:0 20px 60px rgba(0,0,0,0.5); }
.vip-combo-badge { position:absolute; bottom:20px; left:20px; background:linear-gradient(135deg,#d81b60,#e91e63); color:#fff; padding:12px 20px; border-radius:12px; }
.combo-title { display:block; font-size:1.3rem; font-weight:800; }
.combo-count { display:block; font-size:0.85rem; font-weight:600; opacity:0.9; }
.vip-right { flex:1; }
.vip-badge { background:#ffca28; color:#111; padding:6px 18px; border-radius:50px; font-size:0.8rem; font-weight:800; display:inline-block; margin-bottom:15px; letter-spacing:1px; }
.vip-title { font-size:2.8rem; margin-bottom:15px; color:#fff; font-family:'Playfair Display',serif; }
.vip-desc { font-size:1.05rem; color:#999; margin-bottom:30px; line-height:1.7; }
.vip-list { list-style:none; padding:0; margin:0 0 30px; }
.vip-list li { display:flex; align-items:center; gap:12px; margin-bottom:14px; color:#ddd; font-size:1rem; }
.vip-list li i { color:#ffca28; font-size:1.1rem; }
.vip-pricing-box { background:rgba(255,255,255,0.05); padding:25px 30px; border-radius:16px; margin-bottom:25px; border:1px solid rgba(255,255,255,0.08); }
.v-new { font-size:2.8rem; font-weight:900; color:#fff; margin-right:15px; }
.v-old { font-size:1.4rem; text-decoration:line-through; color:#666; }
.v-note { font-size:0.88rem; color:#888; margin:8px 0 12px; }
.v-emi-badge { background:#2e7d32; color:#fff; padding:6px 14px; border-radius:6px; font-size:0.85rem; font-weight:600; display:inline-flex; align-items:center; gap:6px; }
.vip-actions { display:flex; gap:15px; }
.btn-pill { border-radius:50px; padding:14px 30px; font-weight:700; font-size:1rem; transition:all 0.3s; display:inline-flex; align-items:center; justify-content:center; cursor:pointer; text-decoration:none; }
.btn-yellow { background:#ffca28; color:#111; border:2px solid #ffca28; }
.btn-yellow:hover { background:#ffb300; border-color:#ffb300; transform:translateY(-2px); box-shadow:0 6px 20px rgba(255,179,0,0.4); }
.btn-outline-white { background:transparent; color:#fff; border:2px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background:rgba(255,255,255,0.1); border-color:#fff; }

/* --- Store / Product Grid --- */
.store-section { padding:60px 5%; max-width:1300px; margin:0 auto; }
.store-header { margin-bottom:10px; }
.store-eyebrow { color:#d81b60; font-size:0.85rem; font-weight:700; text-transform:uppercase; letter-spacing:2px; }
.store-title { font-size:2.8rem; color:#fff; font-family:'Playfair Display',serif; margin-top:5px; }
.category-tabs { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:30px; padding:15px 0; border-bottom:1px solid rgba(255,255,255,0.08); }
.cat-tab { padding:8px 22px; border-radius:50px; font-size:0.9rem; font-weight:600; color:#aaa; background:#16080b; transition:all 0.2s; border:1px solid rgba(255,255,255,0.1); }
.cat-tab:hover,.cat-tab.active { background:#d81b60; color:#fff; border-color:#d81b60; }
.store-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:25px; }
.product-card { background:#16080b; border-radius:16px; overflow:hidden; border:1px solid rgba(255,255,255,0.05); transition:all 0.3s; box-shadow:0 2px 10px rgba(0,0,0,0.2); }
.product-card:hover { transform:translateY(-5px); box-shadow:0 12px 35px rgba(0,0,0,0.4); border-color:rgba(216,27,96,0.3); }
.product-img-wrapper { position:relative; overflow:hidden; aspect-ratio:3/4; background:#0a0406; }
.product-img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s; }
.product-card:hover .product-img { transform:scale(1.05); }
.sale-badge-new { position:absolute; top:12px; left:12px; background:#d81b60; color:#fff; padding:5px 14px; border-radius:6px; font-size:0.75rem; font-weight:800; text-transform:uppercase; z-index:3; letter-spacing:0.5px; }
.product-content { padding:20px; }
.product-title { font-size:1.15rem; font-weight:700; margin-bottom:8px; color:#fff; font-family:'Outfit',sans-serif; }
.product-desc { font-size:0.88rem; color:#888; margin-bottom:15px; line-height:1.5; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.product-price-row { display:flex; align-items:center; gap:10px; margin-bottom:15px; }
.product-price-new { font-size:1.4rem; font-weight:800; color:#fff; }
.product-price-old { font-size:1rem; text-decoration:line-through; color:#666; }
.product-save { background:rgba(46,125,50,0.2); color:#4caf50; padding:3px 10px; border-radius:4px; font-size:0.75rem; font-weight:700; }
.buy-btn-new { display:flex; align-items:center; justify-content:center; gap:8px; width:100%; padding:14px; background:#d81b60; color:#fff; border-radius:12px; font-size:1rem; font-weight:700; transition:all 0.3s; }
.buy-btn-new:hover { background:#ad1457; transform:translateY(-2px); box-shadow:0 6px 20px rgba(216,27,96,0.3); }
.empty-store { text-align:center; grid-column:1/-1; padding:60px 20px; color:#888; background:#16080b; border-radius:18px; border:1px solid rgba(255,255,255,0.05); }
.empty-store i { font-size:3rem; opacity:0.3; margin-bottom:15px; display:block; color:#666; }

/* --- Proof / Testimonials --- */
.proof-section { padding:60px 5%; max-width:1200px; margin:0 auto; }
.proof-header { text-align:center; margin-bottom:35px; }
.proof-header h2 { font-size:2.2rem; color:#fff; font-family:'Playfair Display',serif; }
.proof-sub { color:#888; font-size:1rem; margin-top:8px; }
.proof-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
@media(min-width:600px){.proof-grid{grid-template-columns:repeat(4,1fr)}}
.proof-card { position:relative; border-radius:14px; overflow:hidden; border:1px solid rgba(255,255,255,0.05); background:#16080b; aspect-ratio:9/16; cursor:pointer; transition:transform 0.25s,box-shadow 0.25s; }
.proof-card:hover { transform:translateY(-6px); box-shadow:0 16px 40px rgba(0,0,0,0.4); border-color:rgba(216,27,96,0.3); }
.proof-card img { width:100%; height:100%; object-fit:cover; object-position:top; display:block; }
.proof-badge { position:absolute; top:10px; left:10px; background:linear-gradient(135deg,#d81b60,#e91e63); color:#fff; border-radius:8px; padding:5px 10px; font-size:0.7rem; font-weight:800; display:flex; align-items:center; gap:5px; }
.proof-footer { position:absolute; bottom:0; left:0; right:0; background:linear-gradient(to top,rgba(0,0,0,0.9),transparent); padding:24px 12px 12px; }
.proof-growth { font-family:'Outfit',sans-serif; font-weight:800; font-size:0.95rem; color:#ff80ab; }
.proof-label { font-size:0.68rem; color:rgba(255,255,255,0.7); margin-top:3px; }

/* --- Community Section --- */
.community-section { padding:60px 5%; max-width:1000px; margin:40px auto; text-align:center; background:var(--bg-surface); border:1px solid var(--glass-border); border-radius:24px; }
.community-inner h2 { font-size:2.2rem; margin-bottom:15px; color:#fff; font-family:'Playfair Display',serif; }
.community-desc { color:#888; font-size:1.05rem; margin-bottom:30px; max-width:600px; margin-left:auto; margin-right:auto; line-height:1.6; }
.community-buttons { display:flex; gap:20px; justify-content:center; flex-wrap:wrap; }
.btn-community { display:flex; align-items:center; gap:10px; color:#fff; padding:15px 30px; border-radius:50px; font-weight:700; font-size:1.1rem; transition:all 0.3s; }
.btn-whatsapp { background:#25d366; box-shadow:0 4px 15px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { transform:translateY(-3px); box-shadow:0 8px 25px rgba(37,211,102,0.5); }
.btn-telegram { background:#0088cc; box-shadow:0 4px 15px rgba(0,136,204,0.3); }
.btn-telegram:hover { transform:translateY(-3px); box-shadow:0 8px 25px rgba(0,136,204,0.5); }
.btn-community i { font-size:1.5rem; }

/* --- Responsive --- */
@media(max-width:1100px) {
    .hero-inner { gap:20px; }
    .hero-books { flex:0 0 220px; max-width:220px; }
    .hero-couple { flex:0 0 280px; max-width:280px; }
    .hero-intimacy h1 { font-size:2.8rem; }
    .hero-intimacy h1 .cursive-text { font-size:3.5rem; }
}
@media(max-width:900px) {
    .hero-inner { flex-direction:column; flex-wrap:wrap; text-align:center; gap:20px; }
    .hero-books,.hero-couple { flex:0 0 auto; max-width:250px; margin:0 auto; }
    .hero-books-img, .hero-couple-img { max-height:350px; }
    .hero-intimacy h1 { font-size:2.5rem; }
    .hero-intimacy h1 .cursive-text { font-size:3.5rem; }
    .sale-box { flex-direction:column; gap:10px; padding:15px 20px; }
    .golden-banner { flex-direction:column; text-align:center; padding:30px 20px; }
    .gb-left h2 { text-align:center; margin-bottom:15px; font-size:2.5rem; }
    .gb-center { margin:15px auto; max-width:200px; }
    .gb-right { text-align:center; }
    .vip-container { flex-direction:column; gap:30px; }
    .vip-left { max-width:350px; }
    .vip-actions { flex-direction:column; }
    .store-grid { grid-template-columns:repeat(2,1fr); gap:15px; }
}
@media(max-width:500px) {
    .hero-intimacy { min-height:auto; padding:20px 0; }
    .hero-books,.hero-couple { max-width:200px; }
    .hero-books-img, .hero-couple-img { max-height:280px; }
    .hero-intimacy h1 { font-size:2rem; }
    .hero-intimacy h1 .cursive-text { font-size:2.8rem; }
    .store-grid { grid-template-columns:1fr; }
    .store-title { font-size:2rem; }
    .golden-banner { padding:20px 15px; }
    .gb-left h2 { font-size:2rem; }
    .gb-new-price { font-size:2.2rem; }
    .vip-title { font-size:2rem; }
    .vip-left { max-width:280px; }
}

