@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
    --bg: #04050a;
    --bg-card: rgba(14, 18, 32, 0.82);
    --bg-card-hover: rgba(20, 26, 46, 0.94);
    --bg-card-premium: rgba(24, 18, 10, 0.88);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.18);
    --accent: #06b6d4;
    --accent-dim: rgba(6, 182, 212, 0.14);
    --accent-glow: rgba(6, 182, 212, 0.35);
    --text-1: #f8fafc;
    --text-2: #94a3b8;
    --text-3: #64748b;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.65);
    --font: 'Outfit', sans-serif;
    --mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font);
    -webkit-user-select: none;
    user-select: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text-1);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

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

/* ═══════════════════════════════════════
   DECORATIVE BACKGROUND AURAS & CANVAS
   ═══════════════════════════════════════ */
#bg-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-aura {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(100px);
    opacity: 0.35;
}

.bg-aura-1 {
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 720px;
    height: 480px;
    background: radial-gradient(ellipse, rgba(6, 182, 212, 0.28) 0%, rgba(99, 102, 241, 0.16) 45%, transparent 75%);
}

.bg-aura-2 {
    bottom: -80px;
    right: 5%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.16) 0%, rgba(6, 182, 212, 0.08) 50%, transparent 75%);
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.store-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 20px;
    background: rgba(4, 5, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.store-nav-inner {
    max-width: 1040px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.store-nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.store-nav-brand:hover {
    background: rgba(255, 255, 255, 0.04);
}

.store-nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
}

.store-nav-name {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--text-1);
}

.store-nav-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(6, 182, 212, 0.35);
    padding: 2px 7px;
    border-radius: 20px;
}

.store-nav-cta {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, rgba(38, 165, 228, 0.2) 0%, rgba(38, 165, 228, 0.1) 100%);
    border: 1px solid rgba(38, 165, 228, 0.4);
    padding: 7px 15px;
    border-radius: 20px;
    transition: all 0.25s ease;
}

.store-nav-cta:hover {
    background: linear-gradient(135deg, rgba(38, 165, 228, 0.35) 0%, rgba(38, 165, 228, 0.2) 100%);
    border-color: rgba(38, 165, 228, 0.7);
    box-shadow: 0 0 18px rgba(38, 165, 228, 0.3);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */
.store-hero {
    position: relative;
    z-index: 10;
    max-width: 1040px;
    margin: 0 auto;
    padding: 24px 20px 16px;
}

.hero-card {
    background: rgba(14, 18, 32, 0.75);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    transition: border-color 0.3s ease;
}

.hero-card:hover {
    border-color: rgba(6, 182, 212, 0.25);
}

.hero-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.hero-avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--accent), #6366f1, #38bdf8, var(--accent));
    animation: spin-ring 6s linear infinite;
    opacity: 0.75;
}

@keyframes spin-ring {
    to { transform: rotate(360deg); }
}

.hero-avatar {
    position: relative;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg);
    z-index: 1;
    display: block;
}

.hero-online-dot {
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid var(--bg);
    z-index: 2;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
    animation: pulse-online 2.5s infinite;
}

@keyframes pulse-online {
    0%, 100% { box-shadow: 0 0 8px rgba(34, 197, 94, 0.6); }
    50% { box-shadow: 0 0 16px rgba(34, 197, 94, 0.95); }
}

.hero-info {
    flex: 1;
    min-width: 0;
}

.hero-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent);
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 3px 9px;
    border-radius: 20px;
}

.hero-pill-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
}

.hero-pill-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-2);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 3px 8px;
    border-radius: 20px;
}

.hero-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.hero-name {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--text-1);
}

.hero-desc {
    font-size: 12.5px;
    color: var(--text-2);
    margin-bottom: 12px;
    line-height: 1.45;
}

.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-2);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 12px;
}

.trust-svg {
    width: 13px;
    height: 13px;
    fill: var(--accent);
    flex-shrink: 0;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(4, 5, 10, 0.55);
    border: 1px solid var(--border);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hero-stat-val {
    font-size: 16px;
    font-weight: 800;
    font-family: var(--mono);
    color: var(--text-1);
}

.hero-stat-label {
    font-size: 10px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.hero-stat-sep {
    width: 1px;
    height: 30px;
    background: var(--border);
}

/* ═══════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════ */
.store-main {
    position: relative;
    z-index: 10;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* SECURITY ALERT BANNER */
.store-security-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.28);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.security-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.16);
    border: 1px solid rgba(239, 68, 68, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ef4444;
}

.security-svg {
    width: 18px;
    height: 18px;
}

.security-content {
    flex: 1;
}

.security-title {
    font-size: 13px;
    font-weight: 800;
    color: #fca5a5;
    margin-bottom: 3px;
    letter-spacing: -0.2px;
}

.security-desc {
    font-size: 11.5px;
    color: var(--text-2);
    line-height: 1.5;
}

.security-highlight {
    color: #38bdf8;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* CATEGORIES */
.store-category {
    margin-bottom: 32px;
}

.store-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.store-category-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(20, 25, 44, 0.9);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.store-category-title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.2px;
    margin-bottom: 2px;
}

.store-category-sub {
    font-size: 11.5px;
    color: var(--text-3);
}

/* ═══════════════════════════════════════
   PRODUCT GRIDS
   ═══════════════════════════════════════ */
.product-grid {
    display: grid;
    gap: 14px;
}

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

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

/* ═══════════════════════════════════════
   FEATURED CARD: GEMINI AI PRO 18M
   ═══════════════════════════════════════ */
.product-card--featured {
    width: 100%;
    background: linear-gradient(135deg, rgba(22, 27, 46, 0.92) 0%, rgba(16, 20, 36, 0.95) 100%);
    border: 1px solid rgba(155, 114, 203, 0.35);
    margin-bottom: 14px;
    box-shadow: 0 8px 32px rgba(66, 133, 244, 0.12);
}

.product-card--featured:hover {
    border-color: rgba(155, 114, 203, 0.65);
    box-shadow: 0 16px 44px rgba(155, 114, 203, 0.22);
}

.featured-badge-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px 0;
    flex-wrap: wrap;
}

.product-badge--gemini {
    background: linear-gradient(90deg, rgba(66, 133, 244, 0.2) 0%, rgba(155, 114, 203, 0.25) 100%);
    border: 1px solid rgba(155, 114, 203, 0.45);
    color: #c4b5fd;
}

.product-badge--storage {
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #7dd3fc;
}

.featured-header-text {
    flex: 1;
}

.product-subtitle {
    display: block;
    font-size: 11.5px;
    color: var(--text-2);
    margin-top: 2px;
}

.feature-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 16px;
    margin-top: 10px;
    background: rgba(4, 5, 10, 0.35);
    border: 1px solid var(--border);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}

.feature-bullet {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--text-2);
    line-height: 1.45;
}

.bullet-check {
    width: 15px;
    height: 15px;
    fill: #22c55e;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-bullet strong {
    color: var(--text-1);
    font-weight: 600;
}

.product-btn--gemini {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.25) 0%, rgba(155, 114, 203, 0.25) 100%);
    border-color: rgba(155, 114, 203, 0.5);
    color: #e0e7ff;
}

.product-btn--gemini:hover {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.4) 0%, rgba(155, 114, 203, 0.45) 100%) !important;
    border-color: #9b72cb !important;
    box-shadow: 0 0 16px rgba(155, 114, 203, 0.35) !important;
}

.product-glow--gemini {
    background: radial-gradient(ellipse at top left, rgba(155, 114, 203, 0.16) 0%, transparent 65%);
}

/* ═══════════════════════════════════════
   DIAMANTES PACKAGES CHIPS
   ═══════════════════════════════════════ */
.diamond-packages {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}

.diamond-pill {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.25);
    padding: 2.5px 8px;
    border-radius: 6px;
}

/* ═══════════════════════════════════════
   PRODUCT CARDS (CONTAINER - NO LINK)
   ═══════════════════════════════════════ */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    color: var(--text-1);
    cursor: default; /* El contenedor NO redirige */
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.25s ease,
                box-shadow 0.28s ease,
                background-color 0.25s ease;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
    background: var(--bg-card-hover);
}

.product-card--premium {
    border-color: rgba(245, 158, 11, 0.25);
    background: var(--bg-card-premium);
}

.product-card--premium:hover {
    border-color: rgba(245, 158, 11, 0.45);
}

.product-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px 16px 12px;
    gap: 12px;
}

.product-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.05);
}

.product-icon--gemini {
    background: rgba(155, 114, 203, 0.15);
    border: 1px solid rgba(155, 114, 203, 0.3);
}

.product-icon--diamond {
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.25);
}

.product-icon--spotify {
    background: rgba(30, 215, 96, 0.12);
    border: 1px solid rgba(30, 215, 96, 0.22);
}

.product-icon--youtube {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.22);
}

.product-icon--premium {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.28);
}

.product-icon--block {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.22);
}

.product-badge {
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.product-badge--hot {
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fca5a5;
}

.product-badge--new {
    background: rgba(30, 215, 96, 0.15);
    border: 1px solid rgba(30, 215, 96, 0.3);
    color: #86efac;
}

.product-badge--plan {
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.35);
    color: #67e8f9;
}

.product-badge--vip {
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fcd34d;
}

.product-card-body {
    padding: 0 16px 14px;
    flex: 1;
}

.product-name {
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
    color: var(--text-1);
}

.product-desc {
    font-size: 11.5px;
    color: var(--text-2);
    line-height: 1.45;
    margin-bottom: 8px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.product-tag {
    font-size: 9.5px;
    font-weight: 600;
    color: var(--text-3);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 2.5px 8px;
    border-radius: 20px;
}

.product-card-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px 16px;
    border-top: 1px solid var(--border);
    margin-top: auto;
    background: rgba(4, 5, 10, 0.2);
}

.product-price {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-2);
    font-family: var(--mono);
}

/* ═══════════════════════════════════════
   BOTÓN ACTIVO (ÚNICO DISPARADOR A TELEGRAM)
   ═══════════════════════════════════════ */
.product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    background: var(--accent-dim);
    border: 1px solid rgba(6, 182, 212, 0.35);
    color: var(--accent) !important;
    text-decoration: none !important;
    transition: all 0.22s ease;
    cursor: pointer;
}

.product-btn:hover {
    background: rgba(6, 182, 212, 0.35);
    border-color: var(--accent);
    box-shadow: 0 0 16px var(--accent-glow);
    transform: translateY(-1px);
}

.product-btn--green {
    background: rgba(30, 215, 96, 0.12);
    border-color: rgba(30, 215, 96, 0.3);
    color: #4ade80 !important;
}

.product-btn--green:hover {
    background: rgba(30, 215, 96, 0.26);
    border-color: #22c55e;
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.35);
}

.product-btn--red {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.3);
    color: #f87171 !important;
}

.product-btn--red:hover {
    background: rgba(239, 68, 68, 0.24);
    border-color: #ef4444;
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.3);
}

.product-btn--gold {
    background: rgba(245, 158, 11, 0.14);
    border-color: rgba(245, 158, 11, 0.35);
    color: #fcd34d !important;
}

.product-btn--gold:hover {
    background: rgba(245, 158, 11, 0.3);
    border-color: #f59e0b;
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.35);
}

/* Card Radial Glows */
.product-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    border-radius: var(--radius-md);
}

.product-card:hover .product-glow {
    opacity: 1;
}

.product-glow--diamond {
    background: radial-gradient(ellipse at top left, rgba(56, 189, 248, 0.1) 0%, transparent 65%);
}

.product-glow--spotify {
    background: radial-gradient(ellipse at top left, rgba(30, 215, 96, 0.09) 0%, transparent 65%);
}

.product-glow--youtube {
    background: radial-gradient(ellipse at top left, rgba(255, 0, 0, 0.09) 0%, transparent 65%);
}

.product-glow--premium {
    background: radial-gradient(ellipse at top left, rgba(245, 158, 11, 0.12) 0%, transparent 65%);
}

.product-glow--block {
    background: radial-gradient(ellipse at top left, rgba(239, 68, 68, 0.1) 0%, transparent 65%);
}

/* ═══════════════════════════════════════
   TELEGRAM CTA BOX
   ═══════════════════════════════════════ */
.store-cta-box {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(14, 24, 46, 0.85) 0%, rgba(9, 14, 28, 0.95) 100%);
    border: 1px solid rgba(38, 165, 228, 0.35);
    overflow: hidden;
    margin-top: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.cta-box-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: radial-gradient(circle at right center, rgba(38, 165, 228, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-box-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.cta-box-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(38, 165, 228, 0.16);
    border: 1px solid rgba(38, 165, 228, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    flex-shrink: 0;
}

.cta-box-text {
    flex: 1;
}

.cta-box-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #fff;
    letter-spacing: -0.2px;
}

.cta-box-sub {
    font-size: 12.5px;
    color: var(--text-2);
    line-height: 1.45;
}

.cta-box-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border: 1px solid rgba(56, 189, 248, 0.5);
    padding: 12px 22px;
    border-radius: 14px;
    transition: all 0.28s ease;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(2, 132, 199, 0.35);
}

.cta-box-btn:hover {
    background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
    border-color: rgba(56, 189, 248, 0.8);
    box-shadow: 0 6px 24px rgba(2, 132, 199, 0.5);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.store-footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 24px 20px;
    font-size: 11.5px;
    color: var(--text-3);
    font-family: var(--mono);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-top: 1px solid var(--border);
    background: rgba(4, 5, 10, 0.6);
}

.store-footer-dot {
    opacity: 0.4;
}

/* ═══════════════════════════════════════
   ADMIN TOAST (SECRET 5 TAPS)
   ═══════════════════════════════════════ */
.admin-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(6, 182, 212, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(6, 182, 212, 0.4);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 30px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.admin-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════ */

/* Tablets & Small Laptops (<= 880px) */
@media (max-width: 880px) {
    .product-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-grid--3 #card-youtube {
        grid-column: span 2;
    }
    .feature-bullets {
        grid-template-columns: 1fr;
    }
    .hero-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .hero-stats {
        width: 100%;
        justify-content: space-around;
    }
    .cta-box-content {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-box-btn {
        justify-content: center;
    }
}

/* Standard Mobile (<= 600px) */
@media (max-width: 600px) {
    .store-hero {
        padding: 16px 14px 12px;
        max-width: 560px;
    }
    .hero-card {
        padding: 18px 16px;
        gap: 14px;
    }
    .hero-avatar {
        width: 72px;
        height: 72px;
    }
    .hero-name {
        font-size: 20px;
    }
    .hero-desc {
        font-size: 11.5px;
        margin-bottom: 10px;
    }
    .hero-trust-badges {
        gap: 6px;
    }
    .hero-trust-item {
        font-size: 10px;
        padding: 3px 8px;
    }
    .hero-stats {
        padding: 10px 14px;
        gap: 12px;
    }
    .hero-stat-val {
        font-size: 14px;
    }

    .store-main {
        padding: 0 14px 70px;
        max-width: 560px;
    }

    .store-security-alert {
        padding: 12px 14px;
        gap: 10px;
    }
    .security-title {
        font-size: 12px;
    }
    .security-desc {
        font-size: 11px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .product-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-grid--3 #card-youtube {
        grid-column: span 2;
    }
    .product-grid--2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card-top {
        padding: 12px 12px 8px;
    }
    .product-icon {
        width: 44px;
        height: 44px;
    }
    .product-card-body {
        padding: 0 12px 10px;
    }
    .product-name {
        font-size: 13px;
    }
    .product-desc {
        font-size: 11px;
    }
    .product-card-footer {
        padding: 8px 12px 12px;
    }
    .product-btn {
        font-size: 10.5px;
        padding: 7px 10px;
    }

    .cta-box-content {
        padding: 18px 16px;
        gap: 14px;
    }
    .cta-box-icon {
        width: 44px;
        height: 44px;
    }
    .cta-box-title {
        font-size: 14px;
    }
    .cta-box-sub {
        font-size: 11.5px;
    }
    .cta-box-btn {
        padding: 10px 18px;
        font-size: 12px;
    }
}

/* Very Small Mobile (<= 380px) */
@media (max-width: 380px) {
    .product-grid,
    .product-grid--3,
    .product-grid--2 {
        grid-template-columns: 1fr;
    }
    .product-grid--3 #card-youtube {
        grid-column: span 1;
    }
}
