/* =========================
   Global Reset & Base
========================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --bg-main: #050816;
    --bg-elevated: #0b1020;
    --bg-elevated-soft: #111827;
    --border-soft: rgba(148, 163, 184, 0.25);
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --accent-pink: #ec4899;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-green: #22c55e;
    --accent-amber: #f59e0b;
    --danger: #ef4444;
    --radius-lg: 24px;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition-all: 220ms ease;
}
html, body {
    height: 100%;
}
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top, #111827 0%, #020617 40%, #000 100%);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}
/* =========================
   Layout Helpers
========================= */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
/* Utility */
.d-none {
    display: none !important;
}
/* =========================
   Header
========================= */
.main-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.75));
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}
.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 1.25rem;
}
.logo {
    color: #f9fafb;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.logo span {
    color: var(--accent-pink);
    font-size: 1.3rem;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}
.main-nav a {
    position: relative;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    transition: var(--transition-all);
    white-space: nowrap;
}
.main-nav a::after {
    content: '';
    position: absolute;
    inset-inline: 0.8rem;
    bottom: 0.25rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(to right, var(--accent-pink), var(--accent-blue));
    opacity: 0;
    transform: scaleX(0.6);
    transition: var(--transition-all);
}
.main-nav a:hover {
    color: #f9fafb;
    background: rgba(15, 23, 42, 0.6);
}
.main-nav a:hover::after, .main-nav a.active::after {
    opacity: 1;
    transform: scaleX(1);
}
.main-nav a.active {
    color: #f9fafb;
    background: linear-gradient(to right, rgba(236, 72, 153, 0.14), rgba(59, 130, 246, 0.08));
}
/* Responsive header */
@media (max-width: 768px) {
    .main-header .container {
        flex-wrap: wrap;
        height: auto;
        padding-block: 0.6rem;
    }
    .main-nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        scrollbar-width: none;
    }
    .main-nav::-webkit-scrollbar {
        display: none;
    }
}
/* =========================
   Buttons
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-all);
    gap: 0.4rem;
    white-space: nowrap;
}
.btn-primary {
    background-image: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: #f9fafb;
    box-shadow: 0 16px 40px rgba(236, 72, 153, 0.35);
}
.btn-primary:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 18px 45px rgba(236, 72, 153, 0.5);
}
.btn-outline {
    background: transparent;
    color: #e5e7eb;
    border-color: rgba(148, 163, 184, 0.4);
}
.btn-outline:hover {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.7);
}
.btn-secondary {
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    border-color: rgba(148, 163, 184, 0.5);
}
.btn-secondary:hover {
    background: rgba(15, 23, 42, 1);
    border-color: rgba(148, 163, 184, 0.9);
}
.btn-small {
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
}
/* =========================
   HERO SLIDER (Updated)
========================= */
.hero-slider {
    margin-top: 1.6rem;
    margin-bottom: 2.5rem;
}
.hero-shell {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(56, 189, 248, 0.12), transparent 55%),
        radial-gradient(circle at top right, rgba(236, 72, 153, 0.18), transparent 60%),
        linear-gradient(to bottom right, #020617, #020617 45%, #000000);
    padding: 18px 14px 26px;
    color: #e5e7eb;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.35);
}
/* Container that holds all slides */
.hero-slides {
    position: relative;
    min-height: 250px;
}
/* Individual slide */
.hero-slide {
    position: absolute;
    inset: 0;
    padding: 16px 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: opacity 0.45s ease, transform 0.45s ease;
    opacity: 0;
    transform: translateY(12px) scale(0.97);
    pointer-events: none;
    border-radius: 22px;
    box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.55);
}
/* Active slide */
.hero-slide.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
/* Gradient variants per slide */
.hero-slide[data-gradient="pink"] {
    background: radial-gradient(circle at top left, #f973c5 0, #4c1d95 45%, #020617 100%);
}
.hero-slide[data-gradient="blue"] {
    background: radial-gradient(circle at top left, #38bdf8 0, #1d4ed8 45%, #020617 100%);
}
.hero-slide[data-gradient="green"] {
    background: radial-gradient(circle at top left, #4ade80 0, #16a34a 45%, #020617 100%);
}
.hero-slide[data-gradient="purple"] {
    background: radial-gradient(circle at top left, #a855f7 0, #6d28d9 45%, #020617 100%);
}
/* Slide content */
.hero-slide-content {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
}
.hero-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.65);
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}
.hero-slide.is-active .hero-icon {
    transform: rotate(360deg);
}
.hero-icon svg {
    width: 22px;
    height: 22px;
    stroke: #f9fafb;
    fill: none;
}
/* Text area */
.hero-text {
    max-width: 620px;
}
.hero-text h1 {
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 800;
    color: #f9fafb;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.45);
}
.hero-text p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #e5e7eb;
    margin-bottom: 0.9rem;
}
/* CTA row */
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 0.9rem;
}
/* Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 0.15rem;
}
.hero-stat {
    padding: 0.5rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.45);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.7);
}
.hero-stat:hover {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.85);
}
.hero-stat .stat-number {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #e5e7eb;
}
.hero-stat .stat-label {
    display: block;
    font-size: 0.72rem;
    color: #9ca3af;
}
/* Nav arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.92);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
}
.hero-nav svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}
.hero-nav.hero-prev {
    left: 12px;
}
.hero-nav.hero-next {
    right: 12px;
}
.hero-nav:hover {
    transform: translateY(-50%) scale(1.06);
    background: rgba(15, 23, 42, 1);
    border-color: rgba(129, 140, 248, 0.9);
}
/* Dots */
.hero-dots {
    margin-top: 1.1rem;
    display: flex;
    justify-content: center;
    gap: 0.35rem;
}
.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.6);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.22s ease, width 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.hero-dot.is-active {
    width: 20px;
    background: linear-gradient(90deg, #fb923c, #fb7185);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(248, 113, 113, 0.6);
}
/* --------- Responsive tweaks --------- */
@media (min-width: 640px) {
    .hero-slider {
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
    .hero-shell {
        padding: 22px 20px 30px;
    }
    .hero-slides {
        min-height: 270px;
    }
    .hero-slide {
        padding: 18px 18px 16px;
    }
    .hero-slide-content {
        gap: 1.3rem;
    }
    .hero-text h1 {
        font-size: 1.9rem;
    }
    .hero-text p {
        font-size: 1.05rem;
    }
}
@media (min-width: 1024px) {
    .hero-shell {
        padding: 26px 30px 34px;
        border-radius: 30px;
    }
    .hero-slides {
        min-height: 290px;
    }
    .hero-slide-content {
        gap: 1.5rem;
    }
    .hero-text h1 {
        font-size: 2.4rem;
    }
    .hero-text p {
        font-size: 1.1rem;
        max-width: 36rem;
    }
    .hero-stats {
        max-width: 480px;
    }
    .hero-icon {
        width: 64px;
        height: 64px;
    }
    .hero-icon svg {
        width: 28px;
        height: 28px;
    }
}
@media (max-width: 640px) {
    .hero-slides {
        min-height: 240px;
    }
    .hero-slide-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-text {
        max-width: 100%;
    }
    .hero-text h1 {
        font-size: 1.25rem;
    }
    .hero-text p {
        font-size: 0.9rem;
    }
    .hero-stats {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 380px) {
    .hero-slides {
        min-height: 220px;
    }
    .hero-nav {
        display: none;
    }
}
/* =========================
   Quick Cards
========================= */
.quick-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.8rem;
}
.quick-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.1rem 1.3rem;
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.15);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}
.quick-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.1), 0 3px 7px -3px rgba(0, 0, 0, 0.1);
}
.quick-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 55%);
    opacity: 0;
    transition: opacity var(--transition-all);
}
.quick-card:hover::before {
    opacity: 1;
}
.quick-card-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9fafb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.quick-card-icon svg {
    width: 22px;
    height: 22px;
}
.quick-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.quick-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}
/* Card color accents */
.quick-card-blue {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.32), rgba(15, 23, 42, 0.98));
    border-color: rgba(59, 130, 246, 0.45);
}
.quick-card-blue .quick-card-icon {
    background: radial-gradient(circle at top left, #60a5fa, #1d4ed8);
}
.quick-card-pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.34), rgba(15, 23, 42, 0.98));
    border-color: rgba(236, 72, 153, 0.55);
}
.quick-card-pink .quick-card-icon {
    background: radial-gradient(circle at top left, #fb7185, #db2777);
}
.quick-card-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.35), rgba(15, 23, 42, 0.98));
    border-color: rgba(34, 197, 94, 0.55);
}
.quick-card-green .quick-card-icon {
    background: radial-gradient(circle at top left, #4ade80, #16a34a);
}
/* Responsive quick cards */
@media (max-width: 768px) {
    .quick-cards {
        grid-template-columns: 1fr;
    }
}
/* =========================
   Trust Row
========================= */
.trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2.2rem;
}
.trust-card {
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.3rem;
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), rgba(15, 23, 42, 0.96));
    border: 1px solid rgba(59, 130, 246, 0.45);
    font-size: 0.86rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.1), 0 3px 7px -3px rgba(0, 0, 0, 0.1);
}
.trust-card.pink {
    background: radial-gradient(circle at top right, rgba(236, 72, 153, 0.2), rgba(15, 23, 42, 0.96));
    border-color: rgba(236, 72, 153, 0.55);
}
.trust-card.green {
    background: radial-gradient(circle at top, rgba(34, 197, 94, 0.2), rgba(15, 23, 42, 0.96));
    border-color: rgba(34, 197, 94, 0.55);
}
.trust-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}
.trust-card p {
    color: var(--text-muted);
    font-size: 0.8rem;
}
/* Responsive trust row */
@media (max-width: 768px) {
    .trust-row {
        grid-template-columns: 1fr;
    }
}
/* =========================
   Sections / Titles
========================= */
.section-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #e5e7eb;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.section-title::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: radial-gradient(circle at top left, #fb7185, #3b82f6);
    box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.15);
}
.section-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(148, 163, 184, 0.7), transparent);
}
/* =========================
   Product Cards / Grid
========================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
/* Generic card style */
.card-style {
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.15);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.card-style::before {
    content: '';
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.14), transparent 55%),
        radial-gradient(circle at 100% 0, rgba(236, 72, 153, 0.14), transparent 55%);
    opacity: 0;
    transition: opacity var(--transition-all);
    pointer-events: none;
}
.card-style:hover::before {
    opacity: 1;
}
/* Product card */
.product-card {
    display: flex;
    flex-direction: column;
    padding: 0.85rem 0.85rem 0.9rem;
    transition: transform var(--transition-all), box-shadow var(--transition-all), border-color var(--transition-all);
}
.product-card:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(129, 140, 248, 0.9);
    box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.1), 0 3px 7px -3px rgba(0, 0, 0, 0.1);
}
.product-image {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    object-fit: cover;
    background: #020617;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(30, 64, 175, 0.7);
}
.product-content {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
/* Product header */
.product-header h3 {
    font-size: 0.9rem;
    font-weight: 600;
}
/* Product info: stock / sold */
.product-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 0.35rem;
    font-size: 0.74rem;
    margin-top: 0.1rem;
}
.stock {
    padding: 0.18rem 0.45rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.7);
    color: #bbf7d0;
    white-space: nowrap;
}
.stock.low {
    background: rgba(234, 179, 8, 0.16);
    border-color: rgba(234, 179, 8, 0.85);
    color: #fef9c3;
}
.stock.out {
    background: rgba(239, 68, 68, 0.16);
    border-color: rgba(239, 68, 68, 0.8);
    color: #fecaca;
}
.sold {
    color: var(--text-muted);
    font-size: 0.73rem;
}
/* Promo banner on card */
.card-promo-banner {
    margin-top: 0.45rem;
    border-radius: 12px;
    padding: 0.4rem 0.6rem;
    background: radial-gradient(circle at top left, rgba(236, 72, 153, 0.2), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(236, 72, 153, 0.7);
    font-size: 0.74rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.card-promo-banner p {
    color: #fecdd3;
}
.countdown {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}
/* Features list */
.product-features {
    margin-top: 0.35rem;
    list-style: none;
    padding-left: 0;
    font-size: 0.76rem;
    color: var(--text-muted);
    max-height: 96px;
    overflow: hidden;
}
.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 0.2rem;
}
.product-features li::before {
    content: '•';
    color: var(--accent-blue);
    margin-top: 0.04rem;
}
/* View more features button */
.btn-view-details {
    background: none;
    border: none;
    color: var(--accent-blue);
    font-size: 0.75rem;
    margin-top: 0.1rem;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}
/* Pricing & actions */
.product-pricing {
    margin-top: 0.5rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.45);
    padding-top: 0.55rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.product-variants .form-group {
    margin-bottom: 0.25rem;
}
/* Form group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.78rem;
}
.form-group label {
    color: var(--text-muted);
}
/* Inputs & selects */
input[type="text"],
input[type="email"],
select,
textarea {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.98);
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
    color: #e5e7eb;
    outline: none;
    transition: border-color var(--transition-all), box-shadow var(--transition-all), background var(--transition-all);
}
textarea {
    border-radius: 12px;
    min-height: 90px;
    resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
    border-color: rgba(129, 140, 248, 0.95);
    box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.7);
    background: rgba(15, 23, 42, 1);
}
/* Price display */
.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}
.final-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: #f9fafb;
}
.original-price {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: #9ca3af;
}
/* Promo form */
.promo-form {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.promo-form input[type="text"] {
    flex-grow: 1;
}
/* Actions */
.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.2rem;
}
.btn-review {
    background: none;
    border-radius: 999px;
    border: 1px dashed rgba(148, 163, 184, 0.7);
    color: var(--text-muted);
    font-size: 0.75rem;
    padding: 0.45rem 0.9rem;
    cursor: pointer;
    transition: var(--transition-all);
}
.btn-review:hover {
    color: #e5e7eb;
    border-style: solid;
    border-color: rgba(129, 140, 248, 0.95);
    background: rgba(15, 23, 42, 0.95);
}
/* Store controls */
.store-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: flex-end;
    margin-bottom: 1rem;
    margin-top: 0.3rem;
}
@media (max-width: 768px) {
    .store-controls {
        flex-direction: column;
    }
    .product-card {
        padding: 0.8rem 0.85rem 0.9rem;
    }
}
/* =========================
   Reviews
========================= */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
    margin-top: 0.5rem;
}
.review-card {
    padding: 0.9rem 0.95rem;
    font-size: 0.82rem;
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.15);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}
.review-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.1), 0 3px 7px -3px rgba(0, 0, 0, 0.1);
}
.review-card p {
    margin-bottom: 0.7rem;
    color: #e5e7eb;
}
.review-footer {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.review-footer .stars {
    color: #facc15;
    font-size: 0.8rem;
}
.review-footer .author {
    font-weight: 600;
    font-size: 0.78rem;
}
@media (max-width: 992px) {
    .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   How to Buy / Payments
========================= */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.1rem;
}
.payment-card {
    padding: 0.9rem 1rem 1rem;
    font-size: 0.85rem;
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.15);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}
.payment-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.1), 0 3px 7px -3px rgba(0, 0, 0, 0.1);
}
.payment-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
.payment-details {
    font-family: 'JetBrains Mono', Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    font-size: 0.8rem;
    color: #e5e7eb;
}
.payment-note {
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
}
@media (max-width: 992px) {
    .payment-methods {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .payment-methods {
        grid-template-columns: 1fr;
    }
}
/* =========================
   Why Choose Us (Features)
========================= */
#features-section {
    margin-top: 2.2rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0.7rem;
}
.feature-card {
    padding: 0.9rem 1rem 1rem;
    font-size: 0.84rem;
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.15);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}
.feature-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.1), 0 3px 7px -3px rgba(0, 0, 0, 0.1);
}
.feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.9), rgba(37, 99, 235, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.45rem;
    color: #eff6ff;
}
.feature-icon svg {
    width: 18px;
    height: 18px;
}
.feature-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
.feature-card p {
    color: var(--text-muted);
}
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   Modals
========================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
    padding: 1rem;
}
.modal-overlay.active {
    display: flex;
}
.modal-content {
    width: 100%;
    max-width: 420px;
    padding: 1.2rem 1.1rem 1.15rem;
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.15);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.7rem;
}
.modal-title {
    font-size: 1rem;
    font-weight: 700;
}
.modal-close {
    border: none;
    background: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}
.modal-close:hover {
    color: #f9fafb;
}
.modal-body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-size: 0.84rem;
}
/* Stars input */
.stars-input {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 0.1rem;
}
.stars-input input {
    display: none;
}
.stars-input label {
    cursor: pointer;
    font-size: 1.1rem;
    color: #4b5563;
    transition: color 0.15s ease;
}
.stars-input input:checked ~ label,
.stars-input label:hover,
.stars-input label:hover ~ label {
    color: #facc15;
}
/* =========================
   Toast Notifications
========================= */
#toast-container {
    position: fixed;
    bottom: 1.3rem;
    right: 1.2rem;
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.toast {
    min-width: 220px;
    max-width: 320px;
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: var(--text-main);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(10px);
}
.toast.show {
    opacity: 1;
    transform: translateY(0);
}
.toast.success {
    border-color: rgba(34, 197, 94, 0.8);
}
.toast.error {
    border-color: rgba(239, 68, 68, 0.9);
}
/* Responsive toast */
@media (max-width: 640px) {
    #toast-container {
        right: 0.75rem;
        left: 0.75rem;
        align-items: center;
    }
    .toast {
        width: 100%;
        max-width: none;
    }
}
/* =========================
   WhatsApp Widget
========================= */
.whatsapp-widget {
    position: fixed;
    right: 1.4rem;
    bottom: 1.6rem;
    z-index: 45;
}
.whatsapp-widget a {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: radial-gradient(circle at top left, #22c55e, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecfdf3;
    box-shadow: 0 18px 40px rgba(22, 163, 74, 0.7);
    transition: var(--transition-all);
}
.whatsapp-widget a:hover {
    transform: translateY(-2px) scale(1.03);
}
/* =========================
   Footer
========================= */
footer {
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), #020617);
}
/* =========================
   Animations
========================= */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
