/* ============== VARIABLES & ROOT ============== */
:root {
    --bg-dark: #07090e;
    --bg-surface: #0b1320;
    --text-main: #f3fbff;
    --text-muted: #8ba4b8;
    --accent-orange: #0ea5e9;
    --accent-yellow: #5eead4;
    --accent-blue: #38bdf8;
    --accent-purple: #10b981;
    --grad-primary: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    --grad-secondary: linear-gradient(135deg, #0369a1 0%, #059669 100%);
    --glass-bg: rgba(14, 165, 233, 0.05);
    --glass-border: rgba(45, 212, 191, 0.16);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ============== RESET ============== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(14, 165, 233, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(16, 185, 129, 0.08) 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(14, 165, 233, 0.45);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 12px rgba(14, 165, 233, 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(7, 9, 14, 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: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.navbar-logo .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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: 10px;
    flex-shrink: 0;
}

.nav-cart {
    color: #fff;
    font-size: 1.2rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.2s, transform 0.2s;
}

.nav-cart:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-1px);
}

.nav-login {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    background: var(--grad-primary);
    padding: 8px 16px;
    border-radius: 9px;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.32);
    transition: opacity 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-login:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.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, 87, 34, 0.1);
    border: 1px solid rgba(255, 87, 34, 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, 87, 34, 0.12);
    color: var(--accent-orange);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 87, 34, 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, 87, 34, 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, 87, 34, 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(45, 212, 191, 0.45);
}

.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(7, 9, 14, 0.85);
    color: var(--accent-orange);
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 87, 34, 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(14, 165, 233, 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: var(--grad-primary);
    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: #fff;
    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(14, 165, 233, 0.10) 0%, rgba(16, 185, 129, 0.07) 100%);
    border: 1px solid rgba(45, 212, 191, 0.20);
    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.bg-gray-900 {
    background: linear-gradient(180deg, rgba(11, 19, 32, 0.98) 0%, #07090e 100%);
    color: rgba(243, 251, 255, 0.78);
    padding: 56px 5% 28px;
    border-top: 1px solid rgba(45, 212, 191, 0.18);
    box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.22);
}

footer.bg-gray-900 .max-w-7xl {
    max-width: 1180px;
    margin: 0 auto;
}

footer.bg-gray-900 .grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.8fr) minmax(240px, 1fr);
    gap: 34px;
    align-items: start;
}

footer.bg-gray-900 h4 {
    color: #fff;
    margin: 0 0 14px;
    font-family: var(--font-heading);
    letter-spacing: 0;
}

footer.bg-gray-900 .text-xl {
    font-size: 1.28rem;
    font-weight: 800;
}

footer.bg-gray-900 .text-lg {
    font-size: 1rem;
    font-weight: 750;
}

footer.bg-gray-900 p,
footer.bg-gray-900 .text-sm {
    color: rgba(243, 251, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.75;
}

footer.bg-gray-900 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px;
}

footer.bg-gray-900 li {
    margin: 0;
    padding: 0;
}

footer.bg-gray-900 a {
    color: rgba(243, 251, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

footer.bg-gray-900 a:hover {
    color: #5eead4;
}

footer.bg-gray-900 .border-t {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

footer.bg-gray-900 .mt-8 {
    margin-top: 34px;
}

footer.bg-gray-900 .pt-8 {
    padding-top: 22px;
}

footer.bg-gray-900 .text-center {
    text-align: center;
}

@media (max-width: 768px) {
    footer.bg-gray-900 {
        padding: 38px 20px 96px;
        text-align: left;
    }

    footer.bg-gray-900 .grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    footer.bg-gray-900 .text-center {
        text-align: left;
    }
}

.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: #fff;
}

.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(255, 255, 255, 0.25);
    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(13, 15, 30, 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: #fff;
}

/* ============== 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 {
        height: auto;
        min-height: 60px;
        padding: 10px 12px;
        gap: 8px;
    }

    .navbar-logo {
        gap: 8px;
        min-width: 0;
    }

    .navbar-logo .logo-icon {
        width: 34px;
        height: 34px;
        border-radius: 50%;
    }

    .navbar-logo .logo-text {
        font-size: 0.95rem;
        letter-spacing: 0.4px;
        white-space: nowrap;
    }

    .navbar-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(7, 9, 14, 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;
    }

    .navbar-right {
        gap: 6px;
        min-width: 0;
    }

    .nav-cart {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .nav-login {
        padding: 7px 10px;
        font-size: 0.82rem;
        border-radius: 9px;
    }

    .navbar-timer {
        display: none;
    }

    .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: 380px) {
    .navbar-logo .logo-text {
        font-size: 0.84rem;
    }

    .nav-login {
        width: 34px;
        height: 34px;
        padding: 0;
        justify-content: center;
    }

    .nav-login span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }
}

@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(14, 165, 233, 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: var(--grad-primary);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.45);
    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(16, 185, 129, 0.55);
}

.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: #ff5722;
    }

    .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, #ff5722, #ff9800);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 20px rgba(255, 87, 34, 0.55);
        transition: transform 0.2s, box-shadow 0.2s;
        border: 3px solid rgba(10, 10, 14, 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, 87, 34, 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, 87, 34, 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;
        }
    }
}
