:root {
    --bg: #07090e;
    --panel: #10141d;
    --panel-soft: #151b27;
    --line: rgba(255, 255, 255, 0.09);
    --text: #f8fafc;
    --muted: #a5adba;
    --orange: #7c3aed;
    --amber: #ffffff;
    --green: #22c55e;
    --blue: #38bdf8;
    --radius: 8px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.2), transparent 28rem),
        linear-gradient(180deg, #07090e 0%, #0b0f16 46%, #080a0f 100%);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

main {
    min-height: 70vh;
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.announcement-bar {
    padding: 10px 5%;
    text-align: center;
    font-weight: 800;
    font-size: 0.88rem;
    background: linear-gradient(90deg, #6d28d9 0%, #8b5cf6 70%, #ffffff 150%);
    color: #fff;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 5%;
    background: rgba(7, 9, 14, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.navbar-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: Outfit, sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 12px;
    background: #080b18;
    box-shadow: 0 0 18px rgba(139, 92, 246, 0.22);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.logo-text {
    font-size: 1.2rem;
}

.logo-text span {
    color: var(--orange);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.95rem;
}

.navbar-nav a:hover,
.active-link {
    color: #fff;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-link,
.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    font-weight: 800;
}

.cart-link span {
    min-width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 99px;
    background: var(--orange);
}

.navbar-timer {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 7px 10px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(124, 58, 237, 0.14);
    font-size: 0.8rem;
    font-weight: 900;
}

.navbar-timer small {
    color: var(--muted);
    font-weight: 700;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    padding: 8px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.category-bar {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px 5%;
    background: #0b0f16;
    border-bottom: 1px solid var(--line);
}

.category-bar a {
    flex: 0 0 auto;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-weight: 800;
    font-size: 0.86rem;
    background: rgba(255, 255, 255, 0.04);
}

.category-bar a:hover,
.active-cat {
    color: #fff !important;
    border-color: rgba(167, 139, 250, 0.7) !important;
    background: rgba(124, 58, 237, 0.18) !important;
}

.hero {
    max-width: 1240px;
    margin: 0 auto;
    min-height: calc(100vh - 142px);
    padding: 42px 5%;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.62fr);
    gap: 36px;
    align-items: center;
}

.badge,
.product-category,
.section-heading p,
.page-hero p,
.auth-card > p {
    color: var(--amber);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

h1,
h2,
h3 {
    font-family: Outfit, sans-serif;
    line-height: 1.1;
    margin: 0;
}

.hero h1 {
    margin-top: 18px;
    font-size: clamp(2.8rem, 5.4vw, 5.8rem);
    letter-spacing: 0;
}

.subtitle {
    max-width: 680px;
    color: #d7dde7;
    font-size: 1.13rem;
}

.pricing-box {
    display: inline-flex;
    margin: 10px 0 20px;
    padding: 11px 16px;
    border-radius: var(--radius);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.32);
    color: #86efac;
    font-weight: 900;
}

.hero-coupon-banner {
    width: min(100%, 560px);
    display: grid;
    grid-template-columns: minmax(210px, 0.95fr) minmax(190px, 1fr);
    gap: 0;
    margin: 20px 0 16px;
    padding: 12px;
    border: 2px solid rgba(236, 72, 153, 0.72);
    border-radius: 18px;
    background:
        radial-gradient(circle at 48% 50%, rgba(255, 255, 255, 0.14), transparent 2rem),
        linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(7, 9, 14, 0.94));
    box-shadow: 0 18px 46px rgba(124, 58, 237, 0.28);
}

.coupon-ticket {
    display: grid;
    place-items: center;
    gap: 5px;
    padding: 16px;
    border-radius: 12px;
    color: #351000;
    background: linear-gradient(135deg, #facc15, #fb923c);
    text-align: center;
    box-shadow: inset 0 0 0 2px rgba(120, 53, 15, 0.16);
}

.coupon-ticket span,
.coupon-copy-button,
.coupon-offer-copy span,
.coupon-offer-copy small {
    font-weight: 900;
    text-transform: uppercase;
}

.coupon-ticket span {
    font-size: 0.74rem;
}

.coupon-ticket strong {
    width: 100%;
    padding: 8px 12px;
    border-radius: 9px;
    color: #f5d0fe;
    background: linear-gradient(135deg, #581c87, #1f0935);
    font-size: 1.45rem;
    letter-spacing: 0.04em;
}

.coupon-copy-button {
    border: 0;
    padding: 6px 12px;
    border-radius: 999px;
    color: #351000;
    background: rgba(255, 255, 255, 0.36);
    font-size: 0.7rem;
    cursor: pointer;
}

.coupon-copy-button.copied {
    color: #fff;
    background: #16a34a;
}

.coupon-offer-copy {
    display: grid;
    align-content: center;
    padding: 16px 20px;
    color: #fff;
    border-left: 1px dashed rgba(255, 255, 255, 0.22);
}

.coupon-offer-copy span {
    color: #f5d0fe;
    font-size: 1rem;
}

.coupon-offer-copy strong {
    color: #facc15;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1;
}

.coupon-offer-copy small {
    color: #d8b4fe;
    font-size: 0.8rem;
}

.hero-timer {
    width: max-content;
    max-width: 100%;
    margin: 0 0 22px;
    padding: 14px 18px;
    border: 2px solid rgba(239, 68, 68, 0.82);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.24), rgba(239, 68, 68, 0.14));
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 18px 46px rgba(239, 68, 68, 0.22);
    animation: timerIntroGlow 2.4s ease-out 1, timerSoftPulse 2.8s ease-in-out 2.6s 3;
}

.hero-timer-label {
    display: block;
    margin-bottom: 10px;
    color: #ddd6fe;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-timer-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-timer-block {
    min-width: 92px;
    padding: 12px 10px;
    text-align: center;
    border: 1px solid rgba(239, 68, 68, 0.45);
    border-radius: 12px;
    background: rgba(8, 11, 17, 0.58);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    animation: timerBlockPop 1.1s ease-out both;
}

.hero-timer-block:nth-child(2) {
    animation-delay: 0.14s;
}

.hero-timer-block:nth-child(3) {
    animation-delay: 0.28s;
}

.hero-timer-block strong {
    display: block;
    color: #fff;
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1;
}

.hero-timer-block small {
    color: #d1d5db;
    font-size: 0.76rem;
    font-weight: 800;
}

@keyframes timerIntroGlow {
    0% {
        transform: scale(0.96);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
        opacity: 0.4;
    }
    55% {
        transform: scale(1.02);
        box-shadow: 0 0 0 14px rgba(239, 68, 68, 0), 0 22px 60px rgba(239, 68, 68, 0.34);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 18px 46px rgba(239, 68, 68, 0.22);
        opacity: 1;
    }
}

@keyframes timerSoftPulse {
    0%, 100% {
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 18px 46px rgba(239, 68, 68, 0.22);
    }
    50% {
        box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.82), 0 24px 60px rgba(239, 68, 68, 0.34);
    }
}

@keyframes timerBlockPop {
    0% {
        transform: translateY(8px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.cta-button,
.buy-btn,
.secondary-btn,
.icon-btn {
    border: 0;
    cursor: pointer;
    border-radius: var(--radius);
    font-weight: 900;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 12px 22px;
    color: #fff;
    background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 72%, #ffffff 150%);
    box-shadow: 0 16px 36px rgba(124, 58, 237, 0.3);
}

.cta-button small {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.cta-button:hover,
.buy-btn:hover,
.secondary-btn:hover,
.icon-btn:hover {
    transform: translateY(-2px);
}

.scarcity-text {
    color: #fca5a5;
    font-weight: 800;
}

.hero-visual {
    position: relative;
    min-height: 0;
    max-height: calc(100vh - 190px);
    display: grid;
    place-items: center;
    align-self: center;
}

.hero-product-image {
    width: min(100%, 390px);
    max-height: calc(100vh - 190px);
    object-fit: contain;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #080b11;
    box-shadow: var(--shadow);
}

.hero-offer-badge {
    position: absolute;
    top: 12%;
    right: max(-42px, -7%);
    width: clamp(110px, 12vw, 168px);
    z-index: 3;
    filter: drop-shadow(0 18px 28px rgba(236, 72, 153, 0.28));
    transform: rotate(4deg);
    pointer-events: none;
}

.trust-bar,
.money-section,
.store-section,
.proof-section,
.results-proof-section,
.customer-review-section,
.reel-preview-section,
.community-section,
.faq-section,
.content-panel,
.cart-layout,
.checkout-layout,
.product-detail,
.auth-layout,
.page-hero {
    max-width: 1240px;
    margin: 0 auto;
    padding: 46px 5%;
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.trust-bar div {
    min-height: 88px;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 8px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.045);
    font-weight: 800;
}

.trust-bar i {
    color: var(--amber);
    font-size: 1.25rem;
}

.money-section {
    background: rgba(34, 197, 94, 0.045);
    border-top: 1px solid rgba(34, 197, 94, 0.2);
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

.money-section h2,
.section-heading h2,
.community-section h2,
.faq-section h2,
.page-hero h1,
.content-panel h1,
.auth-card h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.money-grid,
.proof-grid,
.product-grid {
    display: grid;
    gap: 18px;
}

.money-grid,
.proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.money-grid article,
.proof-grid article,
.content-panel,
.cart-panel,
.summary-panel,
.checkout-form,
.auth-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.money-grid article,
.proof-grid article {
    padding: 24px;
}

.reel-preview-section {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(167, 139, 250, 0.28);
    border-bottom: 1px solid rgba(167, 139, 250, 0.28);
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.22), transparent 24rem),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.1), transparent 18rem),
        #06070b;
}

.reel-preview-stage {
    display: grid;
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
    gap: 26px;
    align-items: center;
}

.reel-preview-copy {
    display: grid;
    gap: 14px;
}

.reel-preview-copy > span {
    width: max-content;
    max-width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(167, 139, 250, 0.45);
    border-radius: 999px;
    color: #ddd6fe;
    background: rgba(124, 58, 237, 0.16);
    font-weight: 900;
}

.reel-preview-copy h3 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.reel-preview-copy p {
    color: var(--muted);
}

.sound-toggle {
    width: max-content;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid rgba(167, 139, 250, 0.42);
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #6d28d9, #8b5cf6);
    font-weight: 900;
    cursor: pointer;
}

.reel-preview-grid {
    display: grid;
    grid-template-columns: 1.22fr repeat(3, minmax(0, 0.82fr));
    grid-auto-rows: 190px;
    gap: 14px;
}

.reel-preview-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: #090b12;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.reel-preview-card.featured {
    grid-row: span 2;
}

.reel-preview-card video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.reel-preview-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.68), transparent 48%);
    pointer-events: none;
}

.reel-preview-meta {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.reel-preview-meta span {
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
    font-size: 0.78rem;
    font-weight: 900;
}

.reel-play-btn {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    background: rgba(124, 58, 237, 0.86);
    cursor: pointer;
}

.results-proof-section {
    text-align: center;
    border-top: 1px solid rgba(167, 139, 250, 0.22);
    border-bottom: 1px solid rgba(167, 139, 250, 0.22);
    background:
        radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.16), transparent 26rem),
        #07090e;
}

.results-proof-section .section-heading {
    margin-bottom: 34px;
}

.results-proof-section h2 span {
    color: var(--orange);
}

.results-proof-section .section-heading small {
    display: block;
    max-width: 620px;
    margin: 12px auto 0;
    color: #8f96a6;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
}

.results-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.results-proof-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.results-proof-card > span {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, #f97316, #db2777);
    font-size: 0.74rem;
    font-weight: 900;
}

.results-proof-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
}

.results-proof-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 34%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
    pointer-events: none;
}

.results-proof-overlay {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 2;
    display: grid;
    gap: 2px;
    text-align: left;
}

.results-proof-overlay strong {
    color: #4ade80;
    font-size: 1.05rem;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.results-proof-overlay small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
}

.customer-review-section {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(167, 139, 250, 0.22);
    background:
        radial-gradient(circle at 14% 12%, rgba(124, 58, 237, 0.2), transparent 22rem),
        radial-gradient(circle at 86% 18%, rgba(34, 197, 94, 0.12), transparent 20rem),
        #07090e;
}

.customer-review-section .section-heading small {
    display: block;
    max-width: 640px;
    margin: 10px auto 0;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
}

.review-stats-row {
    max-width: 820px;
    margin: 0 auto 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.review-stats-row div {
    min-height: 86px;
    display: grid;
    place-items: center;
    gap: 2px;
    padding: 14px;
    border: 1px solid rgba(167, 139, 250, 0.26);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
    text-align: center;
}

.review-stats-row strong {
    color: #fff;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1;
}

.review-stats-row span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.review-marquee {
    overflow: hidden;
    padding-block: 10px 4px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.review-track {
    width: max-content;
    display: flex;
    gap: 16px;
    animation: reviewScroll 34s linear infinite;
}

.review-marquee:hover .review-track {
    animation-play-state: paused;
}

.review-card {
    width: 342px;
    min-height: 238px;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        #10141d;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.review-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card-top > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    font-weight: 900;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.16);
}

.review-card-top strong {
    display: block;
    color: #fff;
    line-height: 1.15;
}

.review-card-top small {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #86efac;
    font-size: 0.76rem;
    font-weight: 900;
}

.review-stars {
    display: flex;
    gap: 4px;
    color: #facc15;
    font-size: 0.92rem;
}

.review-card p {
    margin: 0;
    color: #d6dbe5;
    font-weight: 700;
    line-height: 1.55;
}

.review-role {
    width: max-content;
    max-width: 100%;
    padding: 7px 10px;
    border-radius: 999px;
    color: #ddd6fe;
    background: rgba(124, 58, 237, 0.16);
    font-size: 0.78rem;
    font-weight: 900;
}

@keyframes reviewScroll {
    to {
        transform: translateX(-50%);
    }
}

.money-grid span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    font-weight: 900;
    margin-bottom: 16px;
}

.money-grid p,
.proof-grid span,
.product-desc,
.community-section p,
.faq-answer,
.content-panel p,
.cart-item p,
.form-note,
.page-hero span {
    color: var(--muted);
}

.section-heading {
    text-align: center;
    margin-bottom: 28px;
}

.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.product-img-wrapper,
.detail-art {
    position: relative;
    display: block;
    min-height: 0;
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--accent) 48%, transparent), transparent 70%),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.2), transparent 10rem),
        #121824;
    overflow: hidden;
}

.product-img-wrapper {
    aspect-ratio: 1 / 1;
}

.product-art {
    position: relative;
    height: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.product-art img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #080b11;
}

.product-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent 42%);
    pointer-events: none;
}

.product-art i {
    position: relative;
    z-index: 2;
    font-size: 4.4rem;
}

.product-art strong {
    position: relative;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.26);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: var(--radius);
    background: #ef4444;
    color: #fff;
    font-weight: 900;
    font-size: 0.75rem;
}

.product-info {
    padding: 16px;
}

.product-title {
    min-height: 52px;
    margin: 4px 0 10px;
    font-size: 1.02rem;
    line-height: 1.18;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-desc {
    min-height: 62px;
    font-size: 0.88rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-read-more {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    color: #fb7185;
    font-size: 0.82rem;
    font-weight: 900;
}

.product-read-more::before {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
}

.price-row,
.card-actions,
.detail-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-actions .cta-button {
    flex: 1;
    text-align: center;
}

.price-row {
    margin: 16px 0;
}

.current-price {
    color: var(--green);
    font-size: 1.35rem;
    font-weight: 900;
}

.old-price {
    color: #778092;
    text-decoration: line-through;
    font-weight: 800;
}

.home-offer-btn {
    display: grid;
    grid-template-columns: 88px 1fr;
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: #121827;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.home-offer-price,
.home-offer-cta {
    min-height: 68px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 12px;
}

.home-offer-price {
    background: #151a2a;
}

.home-offer-price small {
    color: #8b93a6;
    text-decoration: line-through;
    font-size: 0.9rem;
    font-weight: 800;
}

.home-offer-price strong {
    color: #fff;
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
}

.home-offer-cta {
    background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 72%, #c4b5fd 100%);
    color: #fff;
    text-align: center;
}

.home-offer-cta strong {
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.08;
}

.home-offer-cta small {
    margin-top: 5px;
    align-self: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.18);
    font-size: 0.72rem;
    font-weight: 800;
}

.buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    flex: 1;
    padding: 10px 14px;
    background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 72%, #ffffff 150%);
    color: #fff;
}

.buy-btn.inline {
    flex: 0 0 auto;
}

.icon-btn,
.secondary-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.08);
}

.page-hero.compact {
    text-align: center;
    padding-top: 58px;
    padding-bottom: 28px;
}

.page-hero.success h1 {
    color: #86efac;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-art {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 1 / 1;
    min-height: 0;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.detail-art i {
    position: relative;
    z-index: 2;
    font-size: 8rem;
}

.detail-art img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #080b11;
}

.detail-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.68), transparent 44%);
    pointer-events: none;
}

.detail-art strong {
    position: absolute;
    z-index: 2;
    bottom: 28px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.3);
}

.detail-copy h1 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    margin: 10px 0 18px;
}

.detail-price .current-price {
    font-size: 2.2rem;
}

.detail-grab-panel {
    margin: 24px 0;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.detail-grab-panel h2 {
    margin-bottom: 18px;
    font-size: 1.3rem;
}

.detail-grab-panel h2 i {
    color: var(--amber);
}

.detail-grab-panel h2 span {
    color: var(--orange);
}

.detail-grab-panel ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.detail-grab-panel li {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: #f3f4f6;
    font-weight: 600;
}

.detail-grab-panel li i {
    margin-top: 3px;
    color: #4ade80;
}

.detail-grab-panel li strong {
    font-weight: 900;
}

.detail-timer {
    margin: 24px 0 16px;
    padding: 16px 18px;
    border: 1px solid rgba(249, 115, 22, 0.42);
    border-radius: 18px;
    background: rgba(13, 17, 26, 0.9);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.detail-timer-label {
    display: block;
    margin-bottom: 12px;
    color: #f59e0b;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.detail-timer-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.detail-timer-block {
    min-width: 84px;
    padding: 12px 10px 10px;
    text-align: center;
    border: 1px solid rgba(249, 115, 22, 0.36);
    border-radius: 12px;
    background: rgba(19, 24, 36, 0.95);
}

.detail-timer-block strong {
    display: block;
    color: #f97316;
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1;
}

.detail-timer-block small {
    color: #fbbf24;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.detail-timer-separator {
    color: #f97316;
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
}

.offer-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0;
}

.offer-list span {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 800;
}

.offer-list i {
    color: var(--green);
}

.detail-download-button {
    min-height: 92px;
    background: linear-gradient(180deg, #3bb54a 0%, #33a643 100%);
    box-shadow: 0 18px 40px rgba(51, 166, 67, 0.26);
}

.detail-download-button strong {
    font-size: 1.9rem;
    letter-spacing: 0;
}

.detail-download-button small {
    margin-top: 8px;
    color: rgba(230, 255, 236, 0.78);
    font-size: 0.95rem;
    font-weight: 800;
}

.product-preview-section {
    border-top-color: rgba(34, 197, 94, 0.22);
}

.product-sticky-offer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    min-height: 74px;
    display: grid;
    grid-template-columns: minmax(210px, 0.72fr) minmax(280px, 1fr) minmax(190px, 0.42fr);
    align-items: center;
    gap: 18px;
    padding: 10px 4%;
    border-top: 1px solid rgba(239, 68, 68, 0.35);
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.42);
}

.sticky-offer-timer {
    display: grid;
    gap: 5px;
}

.sticky-offer-timer > span {
    color: #9ca3af;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sticky-offer-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-offer-row div {
    min-width: 42px;
    padding: 7px 6px 6px;
    text-align: center;
    border: 1px solid rgba(239, 68, 68, 0.45);
    border-radius: 7px;
    background: rgba(17, 24, 39, 0.92);
}

.sticky-offer-row strong {
    display: block;
    color: #ff5a3d;
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1;
}

.sticky-offer-row small {
    display: block;
    margin-top: 3px;
    color: #aab2c1;
    font-size: 0.52rem;
    font-weight: 800;
    text-transform: uppercase;
}

.sticky-offer-row b {
    color: #ff5a3d;
    font-size: 1.15rem;
}

.sticky-offer-price {
    justify-self: center;
    min-width: min(100%, 520px);
    padding: 12px 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 0 10px 10px;
    background: linear-gradient(180deg, rgba(30, 38, 62, 0.96), rgba(25, 33, 55, 0.96));
}

.sticky-offer-price strong {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 900;
    text-transform: uppercase;
}

.sticky-offer-price span {
    margin-left: 8px;
    color: #8b93a6;
    font-weight: 900;
    text-decoration: line-through;
}

.sticky-offer-price small {
    display: block;
    margin-top: 6px;
    color: #c5cad5;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.sticky-offer-button {
    justify-self: end;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, #22c55e, #4ade80);
    box-shadow: 0 16px 34px rgba(34, 197, 94, 0.28);
    font-weight: 900;
}

.community-section {
    text-align: center;
    border-top: 1px solid var(--line);
}

.community-section p {
    max-width: 640px;
    margin: 14px auto 26px;
}

.community-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.community-actions a {
    padding: 14px 22px;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
}

.community-actions a:first-child {
    background: #25d366;
}

.community-actions a:last-child {
    background: #0088cc;
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.045);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    border: 0;
    background: transparent;
    color: #fff;
    font-weight: 900;
    text-align: left;
}

.faq-answer {
    display: none;
    padding: 0 18px 18px;
}

.faq-item.active .faq-answer {
    display: block;
}

.cart-layout,
.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
}

.cart-panel,
.summary-panel,
.checkout-form,
.auth-card,
.content-panel {
    padding: 24px;
}

.cart-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto 28px;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.cart-item:last-child {
    border-bottom: 0;
}

.cart-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--accent) 28%, #111827);
    overflow: hidden;
}

.cart-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #080b11;
}

.summary-panel {
    align-self: start;
    position: sticky;
    top: 120px;
}

.summary-panel div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.summary-total {
    font-size: 1.2rem;
}

.clear-link {
    display: block;
    margin-top: 14px;
    color: #fca5a5;
    font-weight: 800;
    text-align: center;
}

.checkout-form {
    display: grid;
    gap: 15px;
}

.razorpay-checkout .checkout-form {
    overflow: hidden;
    padding: 0;
    background: #f8fafc;
    color: #172033;
}

.razorpay-checkout .checkout-form h2,
.razorpay-checkout .checkout-form label,
.razorpay-checkout .checkout-form .checkout-steps,
.razorpay-checkout .checkout-form .checkout-badges,
.razorpay-checkout .checkout-form .checkout-two,
.razorpay-checkout .checkout-form .checkout-pay-button,
.razorpay-checkout .checkout-form .form-note,
.razorpay-checkout .checkout-form > input:not([type="hidden"]) {
    margin-left: 16px;
    margin-right: 16px;
}

.checkout-offer-bar {
    padding: 12px 16px;
    text-align: center;
    color: #fff;
    background: linear-gradient(90deg, #6d28d9 0%, #8b5cf6 72%, #ffffff 150%);
    font-weight: 900;
}

.razorpay-checkout .checkout-form h2 {
    margin-top: 16px;
}

.checkout-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    color: #b7bfcc;
    font-size: 0.82rem;
    font-weight: 900;
    text-align: center;
}

.checkout-steps span {
    padding-top: 10px;
    border-top: 2px solid #e5e7eb;
}

.checkout-steps .active {
    color: var(--orange);
    border-color: var(--orange);
}

.checkout-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.checkout-badges span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 999px;
    color: #166534;
    background: #dcfce7;
    font-size: 0.8rem;
    font-weight: 900;
}

.checkout-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.checkout-two label:only-child {
    grid-column: 1 / -1;
}

.razorpay-checkout .checkout-form label {
    color: #334155;
}

.razorpay-checkout .checkout-form input {
    border-color: #d7dce5;
    background: #fff;
    color: #111827;
}

.checkout-pay-button {
    width: calc(100% - 32px);
    margin-top: 10px;
    margin-bottom: 0;
}

.razorpay-checkout .form-note {
    margin-bottom: 16px;
    color: #6b7280;
    text-align: center;
    font-size: 0.85rem;
}

.checkout-trust-hero {
    max-width: 1240px;
    margin: 0 auto;
    padding: 28px 5% 20px;
    text-align: center;
}

.checkout-urgency-bar {
    max-width: 1240px;
    margin: 20px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0 5%;
}

.checkout-urgency-bar span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border: 1px solid rgba(249, 115, 22, 0.35);
    border-radius: 999px;
    color: #fed7aa;
    background: rgba(249, 115, 22, 0.11);
    font-size: 0.86rem;
    font-weight: 900;
}

.checkout-security-pill {
    width: max-content;
    margin: 0 auto 14px;
    padding: 7px 14px;
    border: 1px solid rgba(167, 139, 250, 0.5);
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(15, 23, 42, 0.76);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.checkout-security-pill span,
.checkout-trust-hero h1 span {
    color: #8b5cf6;
}

.checkout-trust-hero h1 {
    font-size: clamp(2.25rem, 5vw, 4rem);
}

.checkout-trust-hero p {
    margin: 10px 0 24px;
    color: #cbd5e1;
    font-size: 1.05rem;
}

.checkout-trust-strip {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.checkout-trust-strip div {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 10px;
    align-items: center;
    padding: 14px;
    text-align: left;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
}

.checkout-trust-strip i {
    grid-row: span 2;
    color: #4ade80;
    font-size: 1.2rem;
}

.checkout-trust-strip strong {
    color: #facc15;
    font-size: 0.82rem;
}

.checkout-trust-strip span {
    color: #cbd5e1;
    font-size: 0.78rem;
}

.razorpay-checkout {
    grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
    align-items: start;
}

.checkout-side-panel {
    display: grid;
    gap: 18px;
}

.razorpay-checkout .checkout-form {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.razorpay-checkout .checkout-form h2,
.razorpay-checkout .checkout-form label,
.razorpay-checkout .checkout-form .checkout-steps,
.razorpay-checkout .checkout-form .checkout-badges,
.razorpay-checkout .checkout-form .checkout-two,
.razorpay-checkout .checkout-form .checkout-pay-button,
.razorpay-checkout .checkout-form .checkout-form-intro,
.razorpay-checkout .checkout-form .checkout-razorpay-note,
.razorpay-checkout .checkout-form > input:not([type="hidden"]) {
    margin-left: 24px;
    margin-right: 24px;
}

.checkout-offer-bar i {
    color: #facc15;
}

.checkout-form-intro {
    margin-top: -8px;
    color: #64748b;
    font-size: 0.92rem;
}

.razorpay-checkout .checkout-form h2 i {
    color: #7c3aed;
}

.checkout-badges {
    padding: 12px;
    border: 1px dashed rgba(124, 58, 237, 0.4);
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.04);
}

.checkout-badges span {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    justify-content: start;
    text-align: left;
    border-radius: 12px;
    color: #166534;
    background: rgba(240, 253, 244, 0.9);
}

.checkout-badges span i {
    grid-row: span 2;
    place-self: center;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
}

.checkout-badges span strong,
.checkout-badges span small {
    display: block;
}

.checkout-badges span small {
    color: #64748b;
    font-size: 0.72rem;
}

.checkout-coupon-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: 10px;
    align-items: end;
    margin-left: 24px;
    margin-right: 24px;
    padding: 14px;
    border: 1px dashed rgba(124, 58, 237, 0.35);
    border-radius: 14px;
    background: rgba(124, 58, 237, 0.055);
}

.checkout-coupon-box[hidden],
.checkout-fail-help[hidden],
.coupon-reveal-button[hidden] {
    display: none !important;
}

.coupon-reveal-button {
    width: max-content;
    margin-left: 24px;
    border: 0;
    padding: 0;
    color: #7c3aed;
    background: transparent;
    font-weight: 900;
    cursor: pointer;
}

.checkout-coupon-box label {
    margin: 0 !important;
}

.checkout-coupon-box button {
    min-height: 46px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, #6d28d9, #9333ea);
    font-weight: 900;
    cursor: pointer;
}

.checkout-coupon-box p {
    grid-column: 1 / -1;
    min-height: 18px;
    margin: 0;
    font-size: 0.82rem;
    font-weight: 800;
}

.checkout-coupon-box p.success {
    color: #16a34a;
}

.checkout-coupon-box p.error {
    color: #dc2626;
}

.checkout-pay-button {
    min-height: 82px;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 58%, #86efac 140%);
    box-shadow: 0 20px 44px rgba(34, 197, 94, 0.3);
}

.checkout-pay-button strong {
    font-size: 1.22rem;
}

.checkout-fail-help {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 24px;
    padding: 12px;
    border: 1px solid rgba(34, 197, 94, 0.28);
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.08);
}

.checkout-fail-help strong {
    color: #14532d;
}

.checkout-fail-help a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border-radius: 999px;
    color: #fff;
    background: #16a34a;
    font-size: 0.86rem;
    font-weight: 900;
}

.checkout-razorpay-note {
    margin-bottom: 18px;
    color: #64748b;
    text-align: center;
    font-size: 0.88rem;
}

.checkout-razorpay-note strong {
    color: #1e293b;
    font-size: 1.05rem;
    font-style: italic;
}

.checkout-razorpay-note span {
    margin: 0 8px;
    color: #94a3b8;
}

.checkout-order-card {
    position: static;
    padding: 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
}

.checkout-order-card h2 {
    margin-bottom: 14px;
    font-size: 1.25rem;
}

.summary-panel .checkout-order-item {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px 0 18px;
}

.checkout-order-thumb {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #080b11;
}

.checkout-order-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkout-order-copy {
    display: grid;
    gap: 5px;
}

.checkout-order-copy > strong {
    line-height: 1.25;
}

.checkout-order-copy small {
    color: #cbd5e1;
    font-size: 0.78rem;
}

.checkout-order-copy i,
.checkout-trust-card i {
    color: #22c55e;
}

.checkout-order-price {
    color: #fff;
    font-size: 1.12rem;
}

.checkout-discount-row {
    display: none !important;
    color: #86efac;
}

.checkout-discount-row.visible {
    display: flex !important;
}

.checkout-trust-card {
    padding: 20px;
    border-radius: 16px;
    color: #064e3b;
    background: linear-gradient(135deg, #f0fdf4, #ecfeff);
}

.checkout-trust-card h3 {
    margin-bottom: 14px;
    font-size: 1rem;
    color: #047857;
}

.checkout-trust-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.checkout-trust-card li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 8px;
}

.checkout-proof-numbers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
}

.checkout-proof-numbers span {
    padding: 10px 8px;
    border-radius: 10px;
    color: #064e3b;
    background: rgba(255, 255, 255, 0.64);
    font-size: 0.72rem;
    font-weight: 800;
    text-align: center;
}

.checkout-proof-numbers strong {
    display: block;
    color: #047857;
    font-size: 0.95rem;
}

.checkout-trust-card strong,
.checkout-trust-card small {
    display: block;
}

.checkout-trust-card small {
    color: #475569;
    font-size: 0.76rem;
}

.checkout-payment-methods {
    display: grid;
    gap: 10px;
}

.checkout-payment-methods > strong {
    font-size: 0.9rem;
}

.checkout-payment-methods div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.checkout-payment-methods span {
    min-width: 48px;
    padding: 8px 9px;
    border-radius: 6px;
    color: #1e293b;
    background: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    text-align: center;
}

.checkout-bottom-trust {
    max-width: 1240px;
    margin: 0 auto 34px;
    padding: 12px 5%;
    color: #cbd5e1;
    text-align: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
    font-size: 0.86rem;
}

.checkout-bottom-trust i {
    color: #22c55e;
}

.form-feedback {
    margin: 0 0 6px;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-weight: 800;
}

.form-feedback.success {
    border: 1px solid rgba(34, 197, 94, 0.32);
    color: #86efac;
    background: rgba(34, 197, 94, 0.12);
}

.form-feedback.error {
    border: 1px solid rgba(239, 68, 68, 0.32);
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.12);
}

.download-links {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
}

.download-item div {
    display: grid;
    gap: 4px;
}

.download-item span {
    color: var(--muted);
}

.missing-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 12px;
    border-radius: var(--radius);
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.12);
    font-weight: 800;
}

label {
    display: grid;
    gap: 7px;
    color: #dbe3ee;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 13px 14px;
    outline: 0;
}

select option {
    color: #111827;
}

.auth-layout {
    display: grid;
    place-items: center;
}

.auth-card {
    width: min(480px, 100%);
    display: grid;
    gap: 16px;
}

.auth-card a {
    color: var(--amber);
}

.content-panel {
    max-width: 920px;
}

.legal h2 {
    margin-top: 26px;
}

.empty-state {
    width: min(680px, 100%);
    margin: 40px auto;
    padding: 34px;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
}

.site-footer {
    margin-top: 40px;
    padding: 42px 5% 90px;
    border-top: 1px solid var(--line);
    background: #07090e;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 22px 0;
    color: var(--muted);
    font-weight: 800;
}

.footer-seo,
.disclaimer {
    max-width: 920px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.82rem;
}

.mobile-bottom-nav {
    display: none;
}

.purchase-popup {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 80;
    width: min(340px, calc(100vw - 32px));
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(13, 17, 29, 0.95);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(12px);
    transform: translateY(24px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.purchase-popup.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.purchase-popup-accent {
    width: 4px;
    border-radius: 18px 0 0 18px;
    background: linear-gradient(180deg, #ff5a3d, #7c3aed);
}

.purchase-popup-body {
    flex: 1;
    padding: 14px 14px 12px;
}

.purchase-popup-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.purchase-popup-top strong {
    font-size: 1rem;
    font-weight: 900;
}

.purchase-popup-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #4ade80;
    font-size: 0.88rem;
    font-weight: 800;
}

.purchase-popup-body p {
    margin: 0 0 8px;
    color: #c9d2e3;
    font-size: 1rem;
    line-height: 1.45;
}

.purchase-popup-body p span {
    color: #60a5fa;
    font-weight: 800;
}

.purchase-popup-body small {
    color: var(--muted);
    font-size: 0.82rem;
}

.purchase-popup-close {
    align-self: flex-start;
    margin: 10px 10px 0 0;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #9ca3af;
    background: transparent;
    cursor: pointer;
}

@media (max-width: 1080px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .results-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .review-stats-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .trust-bar {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    .navbar {
        gap: 12px;
    }
    .navbar-nav {
        position: fixed;
        top: 106px;
        left: 5%;
        right: 5%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #0b0f16;
        box-shadow: var(--shadow);
    }
    .navbar-nav.open {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .login-link {
        display: none;
    }
    .navbar-timer {
        font-size: 0.72rem;
        padding: 6px;
    }
    .hero,
    .product-detail,
    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .checkout-layout {
        padding: 18px 4% 112px;
        gap: 14px;
    }
    .checkout-trust-hero {
        padding: 22px 4% 12px;
    }
    .checkout-trust-hero h1 {
        font-size: 2.25rem;
    }
    .checkout-trust-hero p {
        margin-bottom: 18px;
        font-size: 0.92rem;
    }
    .checkout-trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .checkout-trust-strip div {
        padding: 10px;
        grid-template-columns: 24px minmax(0, 1fr);
    }
    .checkout-trust-strip strong {
        font-size: 0.72rem;
    }
    .checkout-trust-strip span {
        font-size: 0.68rem;
    }
    .razorpay-checkout .checkout-form {
        border-radius: 16px;
    }
    .checkout-offer-bar {
        padding: 10px 12px;
        font-size: 0.78rem;
        line-height: 1.25;
    }
    .razorpay-checkout .checkout-form h2,
    .razorpay-checkout .checkout-form label,
    .razorpay-checkout .checkout-form .checkout-steps,
    .razorpay-checkout .checkout-form .checkout-badges,
    .razorpay-checkout .checkout-form .checkout-two,
    .razorpay-checkout .checkout-form .checkout-pay-button,
    .razorpay-checkout .checkout-form .form-note,
    .razorpay-checkout .checkout-form .checkout-form-intro,
    .razorpay-checkout .checkout-form .checkout-razorpay-note,
    .razorpay-checkout .checkout-form > input:not([type="hidden"]) {
        margin-left: 12px;
        margin-right: 12px;
    }
    .checkout-coupon-box {
        margin-left: 12px;
        margin-right: 12px;
        padding: 10px;
    }
    .coupon-reveal-button {
        margin-left: 12px;
    }
    .razorpay-checkout .checkout-form h2 {
        margin-top: 14px;
        font-size: 1.55rem;
    }
    .checkout-steps {
        gap: 6px;
        font-size: 0.72rem;
    }
    .checkout-steps span {
        padding-top: 8px;
        white-space: nowrap;
    }
    .checkout-badges {
        gap: 6px;
        padding: 8px;
    }
    .checkout-badges span {
        min-height: 42px;
        padding: 6px;
        font-size: 0.68rem;
        line-height: 1.15;
        text-align: center;
        grid-template-columns: 28px minmax(0, 1fr);
    }
    .razorpay-checkout .checkout-form label {
        font-size: 0.9rem;
        line-height: 1.2;
    }
    .razorpay-checkout .checkout-form input {
        min-height: 46px;
        margin-top: 6px;
        padding: 10px 12px;
        font-size: 0.92rem;
    }
    .checkout-two {
        gap: 8px;
    }
    .checkout-pay-button {
        width: calc(100% - 24px);
        min-height: 64px;
        padding: 10px 12px;
    }
    .checkout-pay-button strong {
        font-size: 0.94rem;
        line-height: 1.2;
    }
    .checkout-pay-button small {
        font-size: 0.74rem;
        line-height: 1.25;
    }
    .razorpay-checkout .form-note {
        margin-bottom: 22px;
        font-size: 0.74rem;
        line-height: 1.35;
    }
    .razorpay-checkout .summary-panel {
        order: -1;
        padding: 14px;
        border-radius: 14px;
    }
    .razorpay-checkout .summary-panel h2 {
        font-size: 1.15rem;
    }
    .razorpay-checkout .summary-panel div {
        padding: 9px 0;
        font-size: 0.86rem;
    }
    .checkout-side-panel {
        order: -1;
    }
    .summary-panel .checkout-order-item {
        grid-template-columns: 64px minmax(0, 1fr) auto;
        gap: 10px;
    }
    .checkout-order-thumb {
        width: 64px;
        height: 64px;
    }
    .checkout-order-copy small {
        font-size: 0.68rem;
    }
    .checkout-trust-card {
        padding: 14px;
    }
    .checkout-trust-card ul {
        grid-template-columns: 1fr;
    }
    .checkout-proof-numbers {
        grid-template-columns: 1fr;
    }
    .checkout-fail-help {
        margin: 0 12px;
        align-items: stretch;
        flex-direction: column;
    }
    .checkout-payment-methods {
        padding-bottom: 4px;
    }
    .checkout-bottom-trust {
        margin: 0 4% 92px;
        padding: 10px 12px;
        font-size: 0.74rem;
    }
    .hero {
        padding-top: 44px;
        min-height: auto;
    }
    .hero-timer {
        width: 100%;
    }
    .hero-timer-row {
        gap: 8px;
    }
    .hero-timer-block {
        min-width: 0;
        flex: 1;
    }
    .hero-visual {
        max-height: none;
    }
    .hero-product-image {
        width: min(340px, 92vw);
        max-height: 70vh;
    }
    .hero-coupon-banner {
        grid-template-columns: 1fr;
        width: 100%;
    }
    .coupon-offer-copy {
        border-left: 0;
        border-top: 1px dashed rgba(255, 255, 255, 0.22);
        text-align: center;
    }
    .hero-offer-badge {
        top: 8%;
        right: max(8px, calc(50% - 180px));
        width: 112px;
    }
    .trust-bar,
    .money-grid,
    .proof-grid,
    .reel-preview-stage,
    .offer-list {
        grid-template-columns: 1fr;
    }
    .results-proof-section .section-heading small {
        font-size: 0.86rem;
    }
    .results-proof-grid {
        gap: 12px;
    }
    .results-proof-card {
        min-height: 360px;
        border-radius: 12px;
    }
    .review-stats-row {
        grid-template-columns: 1fr;
        margin-bottom: 18px;
    }
    .review-stats-row div {
        min-height: 72px;
    }
    .review-marquee {
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-mask-image: none;
        mask-image: none;
        scrollbar-width: none;
    }
    .review-marquee::-webkit-scrollbar {
        display: none;
    }
    .review-track {
        width: auto;
        padding-inline: 2px 16px;
        animation: none;
        scroll-snap-type: x mandatory;
    }
    .review-card {
        width: min(82vw, 330px);
        min-height: 220px;
        scroll-snap-align: start;
    }
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .product-card {
        min-width: 0;
    }
    .product-info {
        padding: 10px;
    }
    .product-category {
        font-size: 0.62rem;
        line-height: 1.2;
    }
    .product-title {
        margin: 3px 0 6px;
        font-size: 0.84rem;
        line-height: 1.16;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .product-desc {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 0.68rem;
        line-height: 1.3;
    }
    .product-read-more {
        margin-top: 3px;
        font-size: 0.62rem;
    }
    .price-row {
        margin: 8px 0;
        gap: 6px;
        flex-wrap: wrap;
    }
    .current-price {
        font-size: 0.92rem;
    }
    .old-price {
        font-size: 0.72rem;
    }
    .home-offer-btn {
        grid-template-columns: 50px 1fr;
        margin-top: 7px;
        border-radius: 10px;
    }
    .home-offer-price,
    .home-offer-cta {
        min-height: 46px;
        padding: 6px;
    }
    .home-offer-price small {
        font-size: 0.56rem;
    }
    .home-offer-price strong {
        font-size: 0.92rem;
    }
    .home-offer-cta strong {
        font-size: 0.64rem;
        line-height: 1.05;
    }
    .home-offer-cta small {
        margin-top: 2px;
        padding: 2px 5px;
        font-size: 0.5rem;
    }
    .card-actions {
        gap: 8px;
    }
    .buy-btn,
    .icon-btn {
        min-height: 38px;
        padding: 8px 10px;
    }
    .buy-btn {
        font-size: 0.88rem;
    }
    .icon-btn {
        flex: 0 0 38px;
    }
    .sale-badge {
        top: 8px;
        left: 8px;
        padding: 4px 7px;
        font-size: 0.6rem;
    }
    .product-art strong {
        padding: 5px 7px;
        font-size: 0.64rem;
    }
    .reel-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 220px;
    }
    .reel-preview-card.featured {
        grid-column: span 2;
        grid-row: span 2;
    }
    .product-title,
    .product-desc {
        min-height: auto;
    }
    .detail-timer {
        padding: 14px 12px;
    }
    .detail-grab-panel {
        margin: 18px 0;
        padding: 16px;
        border-radius: 14px;
    }
    .detail-grab-panel h2 {
        font-size: 1.05rem;
        line-height: 1.25;
    }
    .detail-grab-panel ul {
        gap: 12px;
    }
    .detail-grab-panel li {
        grid-template-columns: 18px minmax(0, 1fr);
        font-size: 0.84rem;
        line-height: 1.45;
    }
    .detail-timer-row {
        gap: 8px;
    }
    .detail-timer-block {
        min-width: 0;
        flex: 1;
        padding: 10px 6px 8px;
    }
    .detail-timer-block strong {
        font-size: 1.3rem;
    }
    .detail-timer-block small {
        font-size: 0.58rem;
    }
    .detail-timer-separator {
        font-size: 1.2rem;
    }
    .detail-download-button {
        min-height: 82px;
    }
    .detail-download-button strong {
        font-size: 1.35rem;
    }
    .detail-download-button small {
        font-size: 0.76rem;
    }
    .product-sticky-offer {
        bottom: 58px;
        min-height: auto;
        grid-template-columns: 1fr auto;
        gap: 10px;
        padding: 8px 10px;
    }
    .sticky-offer-price {
        display: none;
    }
    .sticky-offer-timer > span {
        font-size: 0.58rem;
    }
    .sticky-offer-row {
        gap: 5px;
    }
    .sticky-offer-row div {
        min-width: 34px;
        padding: 5px 4px;
    }
    .sticky-offer-row strong {
        font-size: 0.82rem;
    }
    .sticky-offer-row small {
        font-size: 0.46rem;
    }
    .sticky-offer-row b {
        font-size: 0.85rem;
    }
    .sticky-offer-button {
        min-height: 42px;
        padding: 10px 13px;
        border-radius: 9px;
        font-size: 0.78rem;
        white-space: nowrap;
    }
    .summary-panel {
        position: static;
    }
    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2px;
        padding: 8px;
        background: rgba(7, 9, 14, 0.96);
        border-top: 1px solid var(--line);
        backdrop-filter: blur(12px);
    }
    .purchase-popup {
        left: 12px;
        bottom: 78px;
        width: min(320px, calc(100vw - 24px));
    }
    .mobile-bottom-nav a {
        display: grid;
        place-items: center;
        gap: 3px;
        color: var(--muted);
        font-size: 0.72rem;
        font-weight: 800;
    }
    .mobile-bottom-nav i {
        font-size: 1rem;
    }
    .mobile-bottom-nav .mobile-cta {
        color: #fff;
    }
}

@media (max-width: 520px) {
    .announcement-bar {
        font-size: 0.76rem;
    }
    .logo-text {
        font-size: 1rem;
    }
    .cart-link {
        padding: 7px;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .hero-timer {
        padding: 12px;
    }
    .hero-timer-block {
        padding: 10px 6px;
    }
    .hero-timer-block strong {
        font-size: 1.3rem;
    }
    .hero-timer-block small {
        font-size: 0.68rem;
    }
    .hero-offer-badge {
        top: 7%;
        right: 2%;
        width: 96px;
    }
    .page-hero.compact {
        padding: 24px 5% 12px;
    }
    .page-hero.compact h1 {
        font-size: 1.65rem;
    }
    .page-hero.compact span {
        font-size: 0.86rem;
    }
    .checkout-layout {
        padding-top: 12px;
    }
    .checkout-security-pill {
        font-size: 0.7rem;
    }
    .checkout-trust-hero h1 {
        font-size: 1.85rem;
    }
    .checkout-trust-strip {
        grid-template-columns: 1fr;
    }
    .checkout-urgency-bar {
        margin-top: 12px;
        gap: 6px;
    }
    .checkout-urgency-bar span {
        font-size: 0.68rem;
        padding: 6px 9px;
    }
    .checkout-two {
        grid-template-columns: 1fr;
    }
    .checkout-badges span {
        min-height: 38px;
        border-radius: 14px;
        font-size: 0.62rem;
    }
    .checkout-badges {
        grid-template-columns: 1fr;
    }
    .checkout-coupon-box {
        grid-template-columns: 1fr;
    }
    .coupon-ticket strong {
        font-size: 1.15rem;
    }
    .coupon-offer-copy strong {
        font-size: 2.2rem;
    }
    .checkout-steps {
        font-size: 0.66rem;
    }
    .checkout-order-price {
        grid-column: 2;
        justify-self: start;
    }
    .summary-panel .checkout-order-item {
        grid-template-columns: 58px minmax(0, 1fr);
    }
    .checkout-order-thumb {
        width: 58px;
        height: 58px;
    }
    .checkout-payment-methods span {
        min-width: 42px;
        font-size: 0.68rem;
    }
    .checkout-pay-button strong {
        font-size: 0.86rem;
    }
    .checkout-pay-button small {
        font-size: 0.68rem;
    }
    .results-proof-section {
        padding-inline: 4%;
    }
    .results-proof-section .section-heading {
        margin-bottom: 22px;
    }
    .results-proof-section h2 {
        font-size: 1.75rem;
    }
    .results-proof-grid {
        grid-template-columns: 1fr;
    }
    .results-proof-card {
        min-height: 520px;
    }
    .customer-review-section {
        padding-inline: 4%;
    }
    .customer-review-section h2 {
        font-size: 1.75rem;
    }
    .customer-review-section .section-heading small {
        font-size: 0.86rem;
    }
    .review-card {
        width: 84vw;
        padding: 15px;
    }
    .review-card p {
        font-size: 0.9rem;
    }
    .product-sticky-offer {
        bottom: 54px;
    }
    .sticky-offer-button {
        padding-inline: 10px;
        font-size: 0.72rem;
    }
    .product-grid {
        gap: 10px;
    }
    .purchase-popup {
        bottom: 84px;
    }
    .product-info {
        padding: 9px;
    }
    .product-title {
        font-size: 0.8rem;
    }
    .product-desc {
        font-size: 0.64rem;
        -webkit-line-clamp: 2;
    }
    .product-read-more {
        font-size: 0.58rem;
    }
    .home-offer-btn {
        grid-template-columns: 46px 1fr;
        border-radius: 10px;
    }
    .home-offer-price,
    .home-offer-cta {
        min-height: 42px;
        padding: 5px;
    }
    .home-offer-price strong {
        font-size: 0.84rem;
    }
    .home-offer-cta strong {
        font-size: 0.58rem;
    }
    .home-offer-cta small {
        font-size: 0.46rem;
    }
    .cart-item {
        grid-template-columns: 48px minmax(0, 1fr);
    }
    .cart-item strong,
    .cart-item a {
        grid-column: 2;
    }
}

@media (max-width: 520px) {
    .reel-preview-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 360px;
    }
    .reel-preview-card.featured {
        grid-column: auto;
        grid-row: auto;
    }
}
