/* ==========================================================================
   REEL BAZAAR — OFFICIAL DESIGN SYSTEM & ECOMMERCE STYLES
   ========================================================================== */

:root {
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Surface Colors */
    --bg-main: #060609;
    --bg-surface: #0c0d14;
    --bg-card: rgba(18, 20, 32, 0.65);
    --bg-card-hover: rgba(26, 30, 48, 0.85);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #9da3bc;
    --text-muted: #646a85;
    
    /* Accents & Gradients */
    --accent-purple: #9b4dff;
    --accent-cyan: #00f0ff;
    --accent-pink: #ff2a85;
    --accent-gold: #ffb703;
    --accent-green: #00e676;
    
    --gradient-primary: linear-gradient(135deg, #9b4dff 0%, #00f0ff 100%);
    --gradient-fire: linear-gradient(135deg, #ff3b30 0%, #ff9500 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    --gradient-hover: linear-gradient(135deg, #af6aff 0%, #38f4ff 100%);
    
    /* Borders & Glows */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(155, 77, 255, 0.35);
    --shadow-glow: 0 0 35px rgba(155, 77, 255, 0.35);
    --shadow-cyan-glow: 0 0 30px rgba(0, 240, 255, 0.25);
    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.6);
    
    /* Radius */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-pill: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Ambient Animated Holographic Background */
.bg-animation {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(140px);
    opacity: 0.35;
    border-radius: 50%;
    animation: floatBlob 24s infinite ease-in-out alternate;
}

.blob-1 {
    top: -15%; left: -10%; width: 650px; height: 650px;
    background: var(--accent-purple);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -15%; right: -10%; width: 700px; height: 700px;
    background: #0077ff;
    animation-delay: -6s;
}

.blob-3 {
    top: 40%; left: 45%; width: 450px; height: 450px;
    background: rgba(0, 240, 255, 0.25);
    animation-delay: -12s;
}

.grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at 50% 50%, black 50%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 50%, transparent 90%);
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, 40px) scale(1.1); }
    100% { transform: translate(-40px, 30px) scale(0.95); }
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.35rem; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.w-100 { width: 100%; }

.section-header {
    margin-bottom: 3.5rem;
}

.section-header h2 {
    margin-top: 0.75rem;
    font-size: 2.6rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0.75rem auto 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.925rem;
    cursor: pointer;
    border: none;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: inherit;
    white-space: nowrap;
    text-decoration: none;
}

.btn-sm {
    padding: 0.5rem 1.15rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(155, 77, 255, 0.35);
}

.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(155, 77, 255, 0.5), 0 0 16px rgba(0, 240, 255, 0.35);
    color: #ffffff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #f0f2ff;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: 0.6s;
    z-index: -1;
}

.glow-btn:hover::before {
    left: 100%;
}

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.glow-box {
    border-color: rgba(155, 77, 255, 0.3);
    box-shadow: 0 0 40px rgba(155, 77, 255, 0.15);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-glow {
    background: rgba(155, 77, 255, 0.12);
    border: 1px solid rgba(155, 77, 255, 0.4);
    color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(155, 77, 255, 0.2);
}

.badge-trending { background: rgba(0, 240, 255, 0.15); color: #00f0ff; border: 1px solid rgba(0, 240, 255, 0.4); }
.badge-hot { background: rgba(255, 59, 48, 0.15); color: #ff5252; border: 1px solid rgba(255, 59, 48, 0.4); }
.badge-bestseller { background: var(--gradient-fire); color: #ffffff; box-shadow: 0 0 15px rgba(255, 149, 0, 0.4); }
.badge-popular { background: rgba(155, 77, 255, 0.2); color: #c48fff; border: 1px solid rgba(155, 77, 255, 0.4); }

/* Navigation */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: 72px;
    background: rgba(6, 6, 9, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(6, 6, 9, 0.95);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    border-bottom-color: rgba(155, 77, 255, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    gap: 2rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover {
    transform: scale(1.03);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    -webkit-text-fill-color: white;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(155, 77, 255, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.45rem 0.2rem;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 4px;
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
}

.nav-links a:hover {
    color: #ffffff;
    transform: translateY(-2px) scale(1.04);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.nav-highlight {
    color: var(--accent-cyan);
}

.nav-links a.nav-highlight::after {
    width: 40%;
    background: var(--accent-cyan);
    opacity: 0.8;
}

.nav-links a.nav-highlight:hover::after {
    width: 100%;
    opacity: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-admin-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1.15rem;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}

.nav-admin-link:hover {
    background: rgba(155, 77, 255, 0.18);
    border-color: rgba(155, 77, 255, 0.45);
    color: #ffffff;
    transform: translateY(-2px) rotate(45deg) scale(1.05);
    box-shadow: 0 0 16px rgba(155, 77, 255, 0.35);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.7rem;
    cursor: pointer;
    padding: 0.25rem;
}

/* Mobile Drawer */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: rgba(8, 9, 14, 0.98);
    backdrop-filter: blur(25px);
    z-index: 1050;
    padding-top: 5rem;
    transition: var(--transition-normal);
    border-left: 1px solid var(--border-color);
}

.mobile-menu.active { right: 0; }

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 2rem;
}

.mobile-link {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-link:hover {
    color: var(--accent-cyan);
    transform: translateX(4px);
}

/* Live Marquee Ticker (Clean Separate Row with Proper Gap) */
.marquee-banner {
    position: relative;
    margin-top: 86px; /* 14px clean spacing below fixed 72px navbar */
    margin-bottom: 1.5rem;
    background: rgba(12, 14, 24, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.85rem 0;
    overflow: hidden;
    z-index: 10;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

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

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-right: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    white-space: nowrap;
}

.marquee-dot {
    color: var(--accent-cyan);
    font-size: 0.9rem;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    padding: 3.5rem 0 5rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-title {
    margin: 1.25rem 0 1.25rem;
    font-size: 3.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 580px;
}

.hero-search-wrapper {
    background: rgba(20, 22, 36, 0.6);
    border: 1px solid rgba(155, 77, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
}

.search-input-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
}

.search-input-box i {
    color: var(--accent-cyan);
    font-size: 1.3rem;
}

.search-input-box input {
    flex: 1;
    background: none;
    border: none;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
}

.btn-search {
    background: var(--gradient-primary);
    color: white;
    border: none;
    width: 36px; height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.quick-tags button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    color: var(--text-secondary);
    padding: 0.25rem 0.65rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.quick-tags button:hover {
    background: rgba(155, 77, 255, 0.2);
    color: white;
    border-color: var(--accent-purple);
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2.25rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-trust i {
    color: var(--accent-cyan);
    font-size: 1rem;
}

.hero-visual {
    position: relative;
    height: 480px;
    perspective: 1200px;
}

.floating-cards {
    position: relative;
    width: 100%; height: 100%;
    transform-style: preserve-3d;
}

.f-card {
    position: absolute;
    background: rgba(20, 22, 38, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.f-thumb {
    width: 100%;
    flex: 1;
    background-size: cover;
    background-position: center;
}

.f-thumb-1 { background: linear-gradient(135deg, #2b1055, #7597de); }
.f-thumb-2 { background: linear-gradient(135deg, #ff758c, #ff7eb3); }
.f-thumb-3 { background: linear-gradient(135deg, #0ba360, #3cba92); }

.card-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.card-info {
    padding: 1rem;
    background: rgba(10, 11, 18, 0.9);
}

.card-info h4 { font-size: 0.95rem; margin-bottom: 2px; }
.card-info span { font-size: 0.75rem; color: var(--accent-cyan); }

.c-1 {
    width: 250px; height: 350px;
    top: 45%; left: 45%;
    transform: translate(-50%, -50%) rotateY(-12deg);
    z-index: 3;
    border-color: rgba(155, 77, 255, 0.5);
    box-shadow: var(--shadow-glow);
    animation: float1 7s infinite ease-in-out;
}

.c-2 {
    width: 210px; height: 290px;
    top: 5%; left: 8%;
    transform: translateZ(-60px) rotate(-8deg);
    z-index: 2;
    animation: float2 8.5s infinite ease-in-out;
}

.c-3 {
    width: 190px; height: 260px;
    bottom: 8%; right: 8%;
    transform: translateZ(-100px) rotate(12deg);
    z-index: 1;
    animation: float3 7.5s infinite ease-in-out;
}

@keyframes float1 {
    0%, 100% { transform: translate(-50%, -50%) rotateY(-12deg) translateY(0); }
    50% { transform: translate(-50%, -50%) rotateY(-12deg) translateY(-18px); }
}
@keyframes float2 {
    0%, 100% { transform: translateZ(-60px) rotate(-8deg) translateY(0); }
    50% { transform: translateZ(-60px) rotate(-8deg) translateY(15px); }
}
@keyframes float3 {
    0%, 100% { transform: translateZ(-100px) rotate(12deg) translateY(0); }
    50% { transform: translateZ(-100px) rotate(12deg) translateY(-14px); }
}

/* Social Proof */
.social-proof {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(10, 11, 18, 0.6);
    backdrop-filter: blur(10px);
}

.proof-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.proof-num {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.2rem;
}

.proof-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ==========================================================================
   4-COLUMN PRODUCT CATALOG & FILTER TABS
   ========================================================================== */
.bundles-catalog-section {
    background: radial-gradient(circle at 50% 20%, rgba(155, 77, 255, 0.08) 0%, transparent 60%);
}

.catalog-filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 3rem;
}

.catalog-tab {
    background: rgba(20, 22, 36, 0.6);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.catalog-tab:hover {
    background: rgba(155, 77, 255, 0.15);
    color: white;
    border-color: rgba(155, 77, 255, 0.4);
    transform: translateY(-2px);
}

.catalog-tab.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 18px rgba(155, 77, 255, 0.4);
}

/* 4-Column Grid */
.product-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.catalog-card {
    background: rgba(16, 18, 30, 0.7);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(16px);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-card);
}

.catalog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(155, 77, 255, 0.5);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(155, 77, 255, 0.2);
    background: rgba(22, 26, 44, 0.85);
}

.catalog-cover-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1.5rem;
}

.cover-mockup {
    width: 85%;
    height: 85%;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    position: relative;
    transition: var(--transition-normal);
}

.catalog-card:hover .cover-mockup {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.cover-mockup i {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
}

.cover-mockup-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.card-discount-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: #ff3b30;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    z-index: 5;
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.4);
}

.card-status-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent-cyan);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    z-index: 5;
}

.catalog-cover-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    transition: transform var(--transition-normal);
}

.catalog-card:hover .catalog-cover-media {
    transform: scale(1.06);
}

.video-preview-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(0, 240, 255, 0.4);
    color: var(--accent-cyan);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 6;
    letter-spacing: 0.5px;
}

.video-sound-toggle {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.video-sound-toggle:hover {
    background: rgba(0, 240, 255, 0.3);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: scale(1.14);
}

.video-sound-toggle i.sound-active {
    color: var(--accent-cyan);
    animation: soundPulse 1.2s infinite alternate ease-in-out;
}

@keyframes soundPulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px #00f0ff); }
    100% { transform: scale(1.2); filter: drop-shadow(0 0 8px #00f0ff); }
}

.catalog-body {
    padding: 1.25rem 1.25rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: rgba(10, 11, 18, 0.95);
}

.catalog-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.35rem;
    color: white;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.7rem;
}

.catalog-category-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.catalog-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: #ffd700;
    margin-bottom: 0.85rem;
}

.catalog-rating span {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.catalog-pricing-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
}

.catalog-old-price {
    font-size: 0.95rem;
    text-decoration: line-through;
    color: var(--text-muted);
    margin-right: 0.5rem;
}

.catalog-new-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #00e676;
}

.btn-buy-card {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Generator */
.generator-section {
    background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.06) 0%, transparent 70%);
}

.generator-box {
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    background: rgba(14, 16, 26, 0.75);
    border: 1px solid rgba(155, 77, 255, 0.35);
}

.generator-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gen-control-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.gen-control-group label i { color: var(--accent-cyan); }

.gen-select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(6, 7, 12, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gen-select:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.2);
}

.gen-select option { background: #0d0f18; color: white; }

.gen-result-box {
    margin-top: 2.5rem;
    background: rgba(8, 9, 15, 0.9);
    border: 1px solid rgba(0, 240, 255, 0.4);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-cyan-glow);
    animation: fadeIn 0.4s ease;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.result-section { margin-bottom: 1.5rem; }

.result-section .label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-cyan);
    margin-bottom: 0.4rem;
}

.code-block {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 1rem;
    font-family: monospace;
    font-size: 0.9rem;
    color: #38f4ff;
    line-height: 1.5;
    word-break: break-word;
}

.script-text {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.result-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
}

/* Feed & Modals */
.feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feed-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.feed-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(155, 77, 255, 0.5);
    box-shadow: var(--shadow-glow);
}

.feed-thumb {
    width: 100%;
    aspect-ratio: 9/16;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transition: var(--transition-slow);
}

.feed-thumb-1 { background: linear-gradient(135deg, #1b0a2a, #4a154b); }
.feed-thumb-2 { background: linear-gradient(135deg, #091c36, #124e78); }
.feed-thumb-3 { background: linear-gradient(135deg, #2a1b0a, #784a12); }
.feed-thumb-4 { background: linear-gradient(135deg, #0a2a1a, #12784e); }

.feed-badge {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 5;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
}

.feed-play-btn {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.feed-card:hover .feed-play-btn {
    transform: scale(1.15);
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(155, 77, 255, 0.6);
}

.feed-info {
    padding: 1.25rem;
    background: rgba(12, 13, 20, 0.95);
    position: relative;
    z-index: 2;
}

.feed-cat {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.3rem;
}

.feed-info h4 { font-size: 0.95rem; margin-bottom: 0.85rem; line-height: 1.4; }

.feed-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.75rem;
    font-size: 0.8rem;
}

.feed-footer .likes {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.feed-footer .likes i { color: #ff2a85; }

.feed-footer .get-btn {
    color: var(--accent-cyan);
    font-weight: 700;
    cursor: pointer;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal-card {
    width: 100%;
    max-width: 480px;
    padding: 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    background: #0d0f18;
}

.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: white;
    width: 34px; height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.modal-video-container {
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 420px;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 1.5rem 0;
    position: relative;
}

.modal-simulated-video {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1b0a2a, #001f3f);
}

.sim-pulse-orb {
    width: 120px; height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    filter: blur(30px);
    animation: orbPulse 3s infinite alternate;
}

@keyframes orbPulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0.9; }
}

.sim-overlay-text {
    position: absolute;
    bottom: 20px; left: 20px; right: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: var(--radius-sm);
}

.sim-overlay-text h3 { font-size: 1.1rem; margin: 0.5rem 0 0.25rem; }
.sim-overlay-text p { font-size: 0.85rem; color: var(--text-secondary); }

.modal-actions { display: flex; gap: 1rem; }

/* FAQ */
.faq-container { max-width: 840px; }

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-fast);
}

.accordion-header {
    padding: 1.4rem 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.accordion-header:hover { background: rgba(255, 255, 255, 0.02); }

.accordion-header i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    color: var(--accent-cyan);
}

.accordion-item.active .accordion-header i { transform: rotate(180deg); }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.6rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 250px;
    padding: 0 1.6rem 1.4rem;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px; right: 30px;
    background: rgba(14, 16, 26, 0.95);
    border: 1px solid var(--accent-cyan);
    box-shadow: var(--shadow-cyan-glow);
    padding: 1rem 1.75rem;
    border-radius: var(--radius-pill);
    color: white;
    font-weight: 600;
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-normal);
}

.toast.show { transform: translateY(0); opacity: 1; }

/* Footer */
.footer {
    background: #030305;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.footer-col p { color: var(--text-secondary); font-size: 0.9rem; }

.footer-col a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-col a:hover { color: var(--accent-cyan); }

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    color: var(--accent-cyan);
}

.support-mail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (4-COL -> 2-COL -> 1-COL)
   ========================================================================== */
@media (max-width: 1200px) {
    .product-grid-4col { grid-template-columns: repeat(3, 1fr); }
    .feed-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
    .product-grid-4col { grid-template-columns: repeat(2, 1fr); }
    .feed-grid { grid-template-columns: repeat(2, 1fr); }
    .generator-form-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 868px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle { margin: 0 auto 2rem; }
    .hero-cta, .hero-trust { justify-content: center; }
    .hero-search-wrapper { max-width: 500px; margin: 0 auto 2rem; }
    
    .nav-links, .nav-actions .btn { display: none; }
    .mobile-menu-btn { display: block; }
    
    .generator-box { padding: 2rem 1.5rem; }
    .generator-form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    h1 { font-size: 2.2rem; }
    .product-grid-4col { grid-template-columns: 1fr; }
    .feed-grid { grid-template-columns: 1fr; }
    .catalog-filter-tabs { gap: 0.4rem; }
    .catalog-tab { font-size: 0.8rem; padding: 0.5rem 0.9rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col a { justify-content: center; }
    .footer-logo { justify-content: center; }
    .hero-cta { flex-direction: column; }
}

.hidden { display: none !important; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
