/* ============================================
   FLOTH — For Love Of The Hobby
   Sports Cards & Collectibles
   Premium Dark Theme
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --bg-primary: #0a0a1a;
    --bg-secondary: #0f0f2a;
    --bg-card: #141432;
    --bg-card-hover: #1a1a40;
    --bg-surface: #1e1e3f;
    --bg-elevated: #252550;

    --text-primary: #f0f0ff;
    --text-secondary: #a0a0c0;
    --text-muted: #6a6a8e;

    --accent-red: #e63946;
    --accent-red-glow: rgba(230, 57, 70, 0.3);
    --accent-blue: #4361ee;
    --accent-blue-glow: rgba(67, 97, 238, 0.3);
    --accent-gold: #f4a261;
    --accent-gold-glow: rgba(244, 162, 97, 0.3);
    --accent-green: #2ec48a;
    --accent-purple: #7c3aed;

    --gradient-primary: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-blue) 100%);
    --gradient-gold: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    --gradient-holo: linear-gradient(135deg, #ff6b6b, #ffd93d, #6bcb77, #4d96ff, #9b59b6, #ff6b6b);

    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(67, 97, 238, 0.2);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(67, 97, 238, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --font-display: 'Bebas Neue', 'Oswald', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --header-height: 80px;
    --ticker-height: 36px;
    --announce-height: 36px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + var(--ticker-height) + var(--announce-height));
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Gradient Text ---- */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px var(--accent-red-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--accent-red-glow);
}

.btn-accent {
    background: var(--gradient-gold);
    color: white;
    box-shadow: 0 4px 15px var(--accent-gold-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    border-color: var(--accent-blue);
    background: rgba(67, 97, 238, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}
.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* ==============================
   MARKET PRICE TICKER
   ============================== */
.ticker-bar {
    height: var(--ticker-height);
    background: #050510;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 1000;
}

.ticker-label {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 16px;
    background: linear-gradient(90deg, #050510 70%, transparent);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-green);
    z-index: 2;
    gap: 6px;
}

.ticker-track {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 130px;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: ticker-scroll 60s linear infinite;
}

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

.ticker-item {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ticker-icon {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.ticker-icon-img {
    width: 14px;
    height: 14px;
    display: inline-block;
}

.ticker-price {
    color: var(--text-primary);
    font-weight: 700;
}

.ticker-change {
    font-weight: 700;
    font-size: 0.72rem;
}
.ticker-change.up { color: var(--accent-green); }
.ticker-change.down { color: var(--accent-red); }
.ticker-change.neutral { color: var(--text-muted); }

.ticker-divider {
    color: var(--border-color);
    padding: 0 16px;
    font-size: 0.7rem;
}

/* ==============================
   ANNOUNCEMENT BAR
   ============================== */
.announcement-bar {
    height: var(--announce-height);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-bar p {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

.announcement-bar i {
    margin-right: 4px;
}

/* ==============================
   HEADER
   ============================== */
.main-header {
    height: var(--header-height);
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s;
}

.main-header.scrolled {
    background: rgba(10, 10, 26, 0.98);
    box-shadow: var(--shadow-md);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo */
.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Nav */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links > li > a {
    padding: 8px 16px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links > li > a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links > li > a i {
    font-size: 0.6rem;
    transition: transform 0.2s;
}

/* Mega Menu */
.nav-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 680px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover > a i {
    transform: rotate(180deg);
}

.mega-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-blue);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mega-col a {
    display: block;
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.mega-col a:hover {
    color: var(--text-primary);
    padding-left: 6px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.2s;
    font-size: 1.05rem;
}

.header-icon:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: var(--accent-red);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Overlay */
.search-toggle {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.2s;
}

.search-toggle:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 100px 24px 40px;
    background: rgba(10, 10, 26, 0.97);
    backdrop-filter: blur(30px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-box {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 2px solid var(--accent-blue);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 40px var(--accent-blue-glow);
}

.search-box i {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-family: var(--font-body);
    outline: none;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s;
}

.search-close:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.search-suggestions {
    max-width: 700px;
    margin: 16px auto 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.suggestion-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.suggestion-tag {
    padding: 6px 14px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.suggestion-tag:hover {
    border-color: var(--accent-blue);
    color: var(--text-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ==============================
   HERO SECTION
   ============================== */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height) - var(--ticker-height) - var(--announce-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(230, 57, 70, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(67, 97, 238, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 0%, rgba(244, 162, 97, 0.06) 0%, transparent 50%);
    z-index: 0;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(67, 97, 238, 0.15);
    border: 1px solid rgba(67, 97, 238, 0.3);
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 12px;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent-blue);
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Hero Visual — Floating Cards */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-card {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
}

.float-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.float-card.card-1 {
    width: 280px;
    height: 320px;
    top: 10%;
    left: 5%;
    transform: rotate(-8deg);
    animation: float-1 6s ease-in-out infinite;
    z-index: 3;
    border: 3px solid rgba(230, 57, 70, 0.4);
}

.float-card.card-2 {
    width: 240px;
    height: 300px;
    top: 25%;
    right: 5%;
    transform: rotate(6deg);
    animation: float-2 7s ease-in-out infinite;
    z-index: 2;
    border: 3px solid rgba(67, 97, 238, 0.4);
}

.float-card.card-3 {
    width: 260px;
    height: 280px;
    bottom: 5%;
    left: 25%;
    transform: rotate(-3deg);
    animation: float-3 8s ease-in-out infinite;
    z-index: 1;
    border: 3px solid rgba(244, 162, 97, 0.4);
}

@keyframes float-1 {
    0%, 100% { transform: rotate(-8deg) translateY(0px); }
    50% { transform: rotate(-8deg) translateY(-15px); }
}

@keyframes float-2 {
    0%, 100% { transform: rotate(6deg) translateY(0px); }
    50% { transform: rotate(6deg) translateY(-20px); }
}

@keyframes float-3 {
    0%, 100% { transform: rotate(-3deg) translateY(0px); }
    50% { transform: rotate(-3deg) translateY(-12px); }
}

/* Holographic Shimmer on Float Cards */
.float-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 20%,
        rgba(255, 255, 255, 0.08) 40%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.08) 60%,
        transparent 80%
    );
    background-size: 200% 200%;
    animation: shimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { background-position: -200% -200%; }
    100% { background-position: 200% 200%; }
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--accent-blue);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-bob 2s ease-in-out infinite;
}

@keyframes scroll-bob {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* ==============================
   SECTION HEADERS
   ============================== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

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

.subsection-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 48px 0 24px;
    color: var(--text-secondary);
}

/* ==============================
   CATEGORIES
   ============================== */
.categories-section {
    padding: 100px 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(67, 97, 238, 0.05) 0%, transparent 70%);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-glow);
}

.category-card:hover::before {
    opacity: 1;
}

.cat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.cat-sports .cat-icon { background: rgba(230, 57, 70, 0.15); color: var(--accent-red); }
.cat-pokemon .cat-icon { background: rgba(244, 162, 97, 0.15); color: var(--accent-gold); }
.cat-onepiece .cat-icon { background: rgba(67, 97, 238, 0.15); color: var(--accent-blue); }
.cat-gaming .cat-icon { background: rgba(124, 58, 237, 0.15); color: var(--accent-purple); }
.cat-graded .cat-icon { background: rgba(46, 196, 138, 0.15); color: var(--accent-green); }
.cat-supplies .cat-icon { background: rgba(255, 255, 255, 0.08); color: var(--text-secondary); }

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.category-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.cat-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==============================
   PRODUCTS
   ============================== */
.products-section {
    padding: 100px 0;
}

.product-tabs {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 8px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover {
    border-color: var(--accent-blue);
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(67, 97, 238, 0.3);
    box-shadow: var(--shadow-glow);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new { background: var(--accent-blue); color: white; }
.badge-hot { background: var(--accent-red); color: white; }
.badge-sale { background: var(--accent-green); color: white; }
.badge-preorder { background: var(--accent-gold); color: white; }
.badge-trending { background: var(--accent-purple); color: white; }

.product-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--bg-secondary);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(8px);
}

.action-btn:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-blue);
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 6px 0 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-pricing {
    margin-bottom: 12px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.product-price-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 8px;
}

.market-ref {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.market-label {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.market-value {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.market-save {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-green);
    background: rgba(46, 196, 138, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.8rem;
}

.stock {
    display: flex;
    align-items: center;
    gap: 4px;
}

.in-stock { color: var(--accent-green); }
.low-stock { color: var(--accent-gold); }
.preorder { color: var(--accent-purple); }

.rating {
    color: var(--accent-gold);
    font-weight: 600;
}

.btn-add-cart {
    width: 100%;
    justify-content: center;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ==============================
   MARKET PRICES SECTION
   ============================== */
.market-section {
    padding: 100px 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(46, 196, 138, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(67, 97, 238, 0.06) 0%, transparent 60%);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.market-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s;
}

.market-card:hover {
    border-color: rgba(67, 97, 238, 0.3);
    box-shadow: var(--shadow-glow);
}

.market-card-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.market-sport {
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.market-sport i {
    color: var(--accent-blue);
}

.market-updated {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.market-card-body {
    padding: 8px 0;
}

.market-item {
    padding: 14px 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s;
}

.market-item:last-child {
    border-bottom: none;
}

.market-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.market-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    grid-column: 1;
}

.market-data {
    display: flex;
    align-items: center;
    gap: 10px;
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
}

.m-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.m-change {
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2px;
}

.m-change.up { color: var(--accent-green); }
.m-change.down { color: var(--accent-red); }
.m-change.neutral { color: var(--text-muted); }

.sparkline {
    grid-column: 1;
    height: 24px;
}

.sparkline canvas {
    width: 100%;
    height: 100%;
}

.market-disclaimer {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 24px;
}

.market-disclaimer i {
    margin-right: 4px;
}

/* ==============================
   LIVE BREAKS SECTION
   ============================== */
.breaks-section {
    padding: 100px 0;
    position: relative;
}

.live-stream-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stream-player {
    position: relative;
}

.stream-placeholder {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.stream-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stream-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 26, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.live-badge-lg {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: var(--accent-red);
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px var(--accent-red-glow);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px var(--accent-red-glow);
}

.play-btn i {
    margin-left: 4px;
}

.stream-overlay p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown {
    display: flex;
    gap: 16px;
}

.cd-unit {
    text-align: center;
}

.cd-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--text-primary);
    line-height: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
}

.cd-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.stream-info {
    padding: 32px 32px 32px 0;
}

.stream-date {
    font-size: 0.82rem;
    color: var(--accent-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stream-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 8px 0 12px;
}

.stream-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.break-products {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.break-product {
    padding: 6px 12px;
    background: rgba(67, 97, 238, 0.1);
    border: 1px solid rgba(67, 97, 238, 0.2);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    gap: 6px;
}

.break-slots {
    margin-bottom: 24px;
}

.slots-bar {
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.slots-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 0.5s;
}

.slots-text {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.stream-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Breaks Schedule */
.breaks-schedule {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.break-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.break-card:hover {
    border-color: rgba(67, 97, 238, 0.3);
    box-shadow: var(--shadow-glow);
}

.break-date {
    min-width: 80px;
    text-align: center;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
}

.b-month {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-red);
}

.b-day {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.1;
}

.b-time {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.break-details {
    flex: 1;
}

.break-details h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.break-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.break-type {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    gap: 4px;
}

.break-status {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.spots-left {
    font-size: 0.78rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.breaks-archive-link {
    text-align: center;
    margin-top: 32px;
}

/* ==============================
   EVENTS
   ============================== */
.events-section {
    padding: 100px 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(244, 162, 97, 0.06) 0%, transparent 60%);
}

.events-grid {
    display: grid;
    gap: 24px;
}

.event-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s;
}

.event-card:hover {
    border-color: rgba(244, 162, 97, 0.3);
    box-shadow: 0 0 30px rgba(244, 162, 97, 0.1);
}

/* Featured Event */
.event-featured {
    border-color: rgba(244, 162, 97, 0.3);
}

.event-featured .event-image {
    position: relative;
    max-height: 300px;
    overflow: hidden;
}

.event-featured .event-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.event-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: var(--accent-gold);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 1px;
}

.event-info {
    padding: 28px;
    display: flex;
    gap: 24px;
}

.event-date-block {
    min-width: 70px;
    text-align: center;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    align-self: flex-start;
}

.e-month {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
}

.e-day {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 1.1;
}

.e-year {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.event-details h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.event-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-meta i {
    color: var(--text-muted);
    width: 16px;
}

.event-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 12px 0;
    line-height: 1.6;
}

.event-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.event-tag {
    padding: 4px 12px;
    background: rgba(244, 162, 97, 0.1);
    border: 1px solid rgba(244, 162, 97, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.event-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Regular Event Cards */
.event-card-inner {
    padding: 24px;
    display: flex;
    gap: 20px;
}

.event-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.event-type.tournament {
    background: rgba(124, 58, 237, 0.15);
    color: var(--accent-purple);
}

.event-type.trade-night {
    background: rgba(46, 196, 138, 0.15);
    color: var(--accent-green);
}

.event-progress {
    margin: 12px 0;
}

.progress-bar {
    height: 6px;
    background: var(--bg-secondary);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-fill {
    height: 100%;
    background: var(--accent-purple);
    border-radius: 3px;
}

.event-progress span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==============================
   ABOUT SECTION
   ============================== */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-image-badge i {
    color: var(--accent-gold);
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-content > p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.about-feature:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-glow);
}

.about-feature > i {
    font-size: 1.3rem;
    color: var(--accent-blue);
    margin-top: 2px;
}

.about-feature h4 {
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Store Hours */
.store-hours h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.hours-grid {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.hour-row:last-child { border-bottom: none; }

.hour-row.highlight {
    background: rgba(67, 97, 238, 0.08);
}

.hour-row.highlight span:last-child {
    color: var(--accent-blue);
    font-weight: 600;
}

.hour-row.closed span:last-child {
    color: var(--accent-red);
    font-weight: 600;
}

/* ==============================
   OWNER QUOTE + GOOGLE REVIEWS
   ============================== */
.reviews-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.owner-quote {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
    opacity: 0.5;
}

.owner-quote blockquote {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.4;
    font-style: italic;
    margin: 0 0 20px;
}

.quote-author {
    font-size: 1rem;
    color: var(--text-secondary);
}

.quote-author strong {
    color: var(--accent-gold);
}

.google-rating-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.google-icon {
    width: 24px;
    height: 24px;
}

.google-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #f4a261;
    font-size: 1.2rem;
}

.rating-number {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-left: 6px;
}

.review-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .owner-quote blockquote {
        font-size: 1.4rem;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   NOTIFICATION SIGNUP
   ============================== */
.notify-section {
    padding: 100px 0;
}

.notify-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.notify-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.06) 0%, transparent 50%);
    animation: notify-glow 10s ease-in-out infinite alternate;
}

@keyframes notify-glow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10%, 10%); }
}

.notify-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.notify-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-size: 1.8rem;
    color: white;
}

.notify-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 12px;
}

.notify-content > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.notify-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s;
}

.input-group:focus-within {
    border-color: var(--accent-blue);
}

.input-group i {
    color: var(--text-muted);
}

.input-group input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.92rem;
    outline: none;
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.notify-prefs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pref-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.pref-tag:has(input:checked) {
    border-color: var(--accent-blue);
    background: rgba(67, 97, 238, 0.1);
    color: var(--text-primary);
}

.pref-tag input {
    display: none;
}

.pref-tag span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.notify-btn {
    min-width: 200px;
}

.notify-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ==============================
   CONTACT
   ============================== */
.contact-section {
    padding: 100px 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(67, 97, 238, 0.06) 0%, transparent 60%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-glow);
}

.contact-card > i {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-bottom: 12px;
}

.contact-card h4 {
    font-size: 0.85rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.contact-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-card a {
    color: var(--accent-blue);
}

.contact-card a:hover {
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 400px;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 12px;
    color: var(--accent-blue);
}

.map-placeholder p {
    font-size: 1rem;
    text-align: center;
}

.map-placeholder small {
    color: var(--text-muted);
}

/* ==============================
   FOOTER
   ============================== */
.main-footer {
    padding: 60px 0 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    height: 60px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
}

.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    padding: 5px 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: all 0.2s;
}

.footer-col a:hover {
    color: var(--text-primary);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-payment i {
    font-size: 1.8rem;
    color: var(--text-secondary);
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-credit a {
    color: var(--accent-blue);
}

.footer-credit a:hover {
    color: var(--text-primary);
}

/* ==============================
   BACK TO TOP
   ============================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    box-shadow: 0 4px 20px var(--accent-red-glow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* ==============================
   CART DRAWER
   ============================== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    pointer-events: none;
    visibility: hidden;
}

.cart-overlay.active {
    pointer-events: all;
    visibility: visible;
}

.cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-overlay.active .cart-backdrop {
    opacity: 1;
}

.cart-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.cart-overlay.active .cart-drawer {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header h3 i {
    color: var(--accent-blue);
}

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close:hover {
    background: rgba(230, 57, 70, 0.15);
    color: var(--accent-red);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.cart-item-img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-card);
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.cart-item-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 0.82rem;
    color: var(--accent-blue);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    color: var(--text-primary);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

.qty-display {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    width: 28px;
    text-align: center;
}

.cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.cart-item-total {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cart-item-remove {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: none;
    background: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    background: rgba(230, 57, 70, 0.15);
    color: var(--accent-red);
}

.cart-empty {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 16px;
    color: var(--text-muted);
    padding: 40px;
}

.cart-empty i {
    font-size: 3rem;
    opacity: 0.3;
}

.cart-empty p {
    font-size: 1.1rem;
}

.cart-overlay.empty .cart-empty { display: flex; }
.cart-overlay.empty .cart-items { display: none; }
.cart-overlay.empty .cart-footer { display: none; }

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.cart-summary {
    margin-bottom: 16px;
}

.cart-sum-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.cart-sum-total {
    border-top: 1px solid var(--border-color);
    margin-top: 8px;
    padding-top: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cart-free-ship {
    background: rgba(46, 196, 138, 0.08);
    border: 1px solid rgba(46, 196, 138, 0.2);
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--accent-green);
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.cart-free-ship i {
    font-size: 1rem;
}

.free-ship-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 4px;
}

.free-ship-fill {
    height: 100%;
    background: var(--accent-green);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.cart-free-ship.reached {
    background: rgba(46, 196, 138, 0.15);
    border-color: var(--accent-green);
}

.cart-checkout-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
}

.cart-continue-btn {
    width: 100%;
    justify-content: center;
}

/* ==============================
   CHECKOUT PAGE
   ============================== */
.checkout-page {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-primary);
    overflow-y: auto;
}

.checkout-page.active {
    display: block;
}

.checkout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
    position: sticky;
    top: 0;
    z-index: 10;
}

.checkout-logo img {
    height: 40px;
}

.checkout-steps {
    display: flex;
    align-items: center;
    gap: 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    opacity: 0.4;
    transition: all 0.3s;
}

.step.active, .step.done {
    opacity: 1;
}

.step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
    transition: all 0.3s;
}

.step.active .step-num {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
}

.step.done .step-num {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: white;
}

.step-label {
    font-size: 0.88rem;
    font-weight: 500;
}

.step-line {
    width: 40px;
    height: 2px;
    background: var(--border-color);
    transition: background 0.3s;
}

.step-line.done {
    background: var(--accent-green);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 40px;
}

.checkout-form h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.checkout-step {
    display: none;
}

.checkout-step.active {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.form-grid .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-grid .full-w {
    grid-column: 1 / -1;
}

.form-grid label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.co-input {
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.92rem;
    font-family: var(--font-body);
    transition: all 0.2s;
    width: 100%;
}

.co-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px var(--accent-blue-glow);
}

.co-input::placeholder {
    color: var(--text-muted);
}

.co-input.error {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
}

.ship-method-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 32px 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ship-method-title i {
    color: var(--accent-blue);
}

.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.ship-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.ship-option:hover {
    border-color: rgba(67, 97, 238, 0.3);
}

.ship-option:has(input:checked) {
    border-color: var(--accent-blue);
    background: rgba(67, 97, 238, 0.05);
}

.ship-option input[type="radio"] {
    accent-color: var(--accent-blue);
    width: 18px;
    height: 18px;
}

.ship-option-info {
    flex: 1;
}

.ship-option-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ship-price {
    font-weight: 700;
    color: var(--text-primary);
}

.ship-eta {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.co-next-btn {
    width: 100%;
    justify-content: center;
}

.co-btn-row {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.co-btn-row .btn-outline {
    flex-shrink: 0;
}

.co-btn-row .co-next-btn {
    flex: 1;
}

.payment-secure {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(46, 196, 138, 0.08);
    border: 1px solid rgba(46, 196, 138, 0.2);
    border-radius: 8px;
    color: var(--accent-green);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.card-input-wrap {
    position: relative;
}

.card-input-wrap .co-input {
    padding-right: 50px;
}

.card-type-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--text-muted);
}

.billing-same {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.billing-same input {
    accent-color: var(--accent-blue);
    width: 18px;
    height: 18px;
}

/* Confirmation */
.confirm-success {
    text-align: center;
    padding: 40px 0 32px;
}

.confirm-check {
    font-size: 4rem;
    color: var(--accent-green);
    margin-bottom: 16px;
    animation: confirmPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes confirmPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.confirm-success h2 {
    font-size: 2rem;
    text-align: center;
}

.confirm-order-num {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.confirm-order-num strong {
    color: var(--accent-blue);
}

.confirm-email {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.confirm-details {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.confirm-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.confirm-row:last-child {
    border-bottom: none;
}

.confirm-row.total {
    font-size: 1.1rem;
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
    margin-top: 8px;
    padding-top: 16px;
}

.confirm-items {
    margin-bottom: 24px;
}

.confirm-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.confirm-item img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

/* Checkout Summary Sidebar */
.checkout-summary {
    position: sticky;
    top: 100px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    height: fit-content;
}

.cos-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.cos-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 16px;
}

.cos-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    align-items: center;
}

.cos-item-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.cos-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cos-item-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--accent-blue);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cos-item-name {
    font-size: 0.82rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cos-item-price {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.cos-item-total {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    flex-shrink: 0;
}

.cos-promo {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.cos-promo .co-input {
    flex: 1;
    padding: 10px 14px;
    font-size: 0.85rem;
}

.cos-totals {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.cos-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.cos-total {
    border-top: 1px solid var(--border-color);
    margin-top: 8px;
    padding-top: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .cart-drawer {
        width: 100%;
    }
    .checkout-header {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 12px;
    }
    .checkout-steps {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    .step-label {
        display: none;
    }
    .checkout-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
        margin: 24px auto;
        gap: 24px;
    }
    .checkout-summary {
        position: static;
        order: -1;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-grid .full-w {
        grid-column: 1;
    }
    .co-btn-row {
        flex-direction: column;
    }
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

    .live-stream-hero {
        grid-template-columns: 1fr;
    }

    .stream-info {
        padding: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav.active {
        display: block;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-primary);
        padding: 24px;
        z-index: 998;
    }

    .main-nav.active .nav-links {
        flex-direction: column;
        gap: 4px;
    }

    .main-nav.active .nav-links > li > a {
        padding: 14px 16px;
        font-size: 1.1rem;
    }

    .mega-menu {
        position: static;
        transform: none;
        min-width: auto;
        grid-template-columns: 1fr 1fr;
        opacity: 1;
        visibility: visible;
        margin-top: 8px;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

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

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .market-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .notify-card {
        padding: 40px 24px;
    }

    .notify-inputs {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .break-card {
        flex-direction: column;
        text-align: center;
    }

    .break-status {
        align-items: center;
    }

    .event-info {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .countdown {
        gap: 8px;
    }

    .cd-num {
        font-size: 1.6rem;
        padding: 6px 10px;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .stream-actions {
        flex-direction: column;
    }

    .stream-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==============================
   ANIMATIONS (Scroll Reveal)
   ============================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for grid items */
.category-card,
.product-card,
.market-card,
.break-card,
.event-card,
.contact-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.category-card.animate,
.product-card.animate,
.market-card.animate,
.break-card.animate,
.event-card.animate,
.contact-card.animate {
    opacity: 1;
    transform: translateY(0);
}
