/* ============================================================
   AsicPower - Modern High-Tech Crypto E-Commerce Stylesheet
   Dark/Cyberpunk Gold Theme - Ultra Fast & Clean CSS
   ============================================================ */

:root {
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-card: #161f30;
    --bg-card-hover: #1c283f;
    --bg-glass: rgba(22, 31, 48, 0.85);
    
    --accent-gold: #f59e0b;
    --accent-gold-light: #fbbf24;
    --accent-gold-dark: #d97706;
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --border-color: #1f293d;
    --border-highlight: #2d3b55;
    --border-gold: rgba(245, 158, 11, 0.4);
    
    --font-main: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 0 20px rgba(245, 158, 11, 0.25);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    direction: ltr;
    text-align: left;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

a {
    color: var(--accent-gold-light);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--accent-gold);
}

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

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

/* Utilities */
.text-gold { color: var(--accent-gold) !important; }
.text-cyan { color: var(--accent-cyan) !important; }
.text-silver { color: #d1d5db !important; }
.text-whatsapp { color: #25d366 !important; }
.accent-gold { color: var(--accent-gold); }

/* Crypto Ticker Bar */
.crypto-ticker-bar {
    background: #06090e;
    border-bottom: 1px solid var(--border-color);
    padding: 6px 0;
    font-size: 0.85rem;
}

.ticker-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    color: var(--text-secondary);
}

.ticker-item span {
    color: var(--accent-green);
    font-weight: 700;
}

.ticker-badge {
    color: var(--accent-gold-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Main Header */
.main-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    gap: 20px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #000;
    box-shadow: var(--shadow-gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.72rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Search Bar */
.header-search {
    flex: 1;
    max-width: 540px;
}

.search-form {
    display: flex;
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 10px 48px 10px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 0.92rem;
    font-family: var(--font-main);
    transition: all 0.3s;
}

.search-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.search-form button {
    position: absolute;
    right: 8px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-gold);
    color: #000;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.search-form button:hover {
    background: var(--accent-gold-light);
}

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

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #128c7e;
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    transition: background 0.2s;
}

.btn-whatsapp:hover {
    background: #25d366;
    color: #000;
}

.cart-trigger {
    position: relative;
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.cart-trigger:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.cart-badge {
    position: absolute;
    top: -6px;
    left: -6px;
    background: var(--accent-gold);
    color: #000;
    font-size: 0.72rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Navigation Bar */
.main-nav {
    background: #0c121d;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.2s;
}

.nav-item:hover > a, .nav-item.active > a {
    color: var(--accent-gold);
}

.nav-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 260px;
    padding: 8px 0;
    list-style: none;
    display: none;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: var(--text-primary);
    font-size: 0.88rem;
    transition: background 0.2s;
}

.dropdown-menu li a:hover {
    background: var(--bg-card-hover);
    color: var(--accent-gold);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 70px 0 60px;
    background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
                var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.7rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #fff;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-mono);
    color: var(--accent-gold);
}

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

/* Hero Showcase Card */
.hero-showcase {
    position: relative;
}

.showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.showcase-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent-gold);
    color: #000;
    font-weight: 800;
    font-size: 0.78rem;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.showcase-img {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.showcase-img img {
    max-height: 100%;
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.6));
    transition: transform 0.4s ease;
}

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

.showcase-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #fff;
}

.showcase-specs {
    display: flex;
    gap: 15px;
    margin: 12px 0;
    font-size: 0.88rem;
}

.spec-pill {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

.showcase-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.showcase-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: var(--font-mono);
}

/* Section Common */
.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-subtitle {
    color: var(--accent-gold);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Product Cards Grid */
.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;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.product-thumb {
    position: relative;
    height: 220px;
    background: #0d131f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-thumb img {
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-thumb img {
    transform: scale(1.06);
}

.product-badge-group {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.badge-featured {
    background: var(--accent-gold);
    color: #000;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
}

.badge-stock {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.in-stock { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); border: 1px solid rgba(16, 185, 129, 0.3); }
.out-of-stock { background: rgba(239, 68, 68, 0.15); color: var(--accent-red); border: 1px solid rgba(239, 68, 68, 0.3); }
.pre-order { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); border: 1px solid rgba(6, 182, 212, 0.3); }

.product-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-brand {
    font-size: 0.78rem;
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.product-title a {
    color: #fff;
}

.product-title a:hover {
    color: var(--accent-gold);
}

/* Star Rating Visual */
.star-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.star-rating .filled {
    color: var(--accent-gold);
}

.star-rating .rating-num {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-family: var(--font-mono);
    margin-right: 4px;
}

/* Product Key Specs Bar */
.product-specs-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: var(--bg-primary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.mini-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
}

.mini-spec i {
    color: var(--accent-gold);
    font-size: 0.85rem;
}

.product-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-current {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: var(--font-mono);
    line-height: 1;
}

.price-compare {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-family: var(--font-mono);
    margin-top: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--accent-gold);
    color: #000;
}

.btn-primary:hover {
    background: var(--accent-gold-light);
    box-shadow: var(--shadow-gold);
    color: #000;
}

.btn-outline-gold {
    background: transparent;
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: #000;
}

.btn-icon {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: #fff;
}

.btn-icon:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.82rem;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* Google SERP Live Simulation Widget (For Product Detail & Admin) */
.serp-preview-card {
    background: #202124;
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid #303134;
    margin: 25px 0;
    font-family: Arial, sans-serif;
    text-align: left;
    box-shadow: var(--shadow-md);
}

.serp-badge-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8ab4f8;
    font-size: 0.82rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.serp-url-box {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #bdc1c6;
    margin-bottom: 4px;
}

.serp-favicon {
    width: 16px;
    height: 16px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: inline-block;
}

.serp-title {
    font-size: 1.25rem;
    color: #8ab4f8;
    font-weight: 400;
    margin-bottom: 6px;
    line-height: 1.3;
    text-decoration: underline;
    cursor: pointer;
}

.serp-rating-line {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bdc1c6;
    font-size: 0.85rem;
    margin-bottom: 6px;
    font-family: Arial, sans-serif;
}

.serp-stars {
    color: #fbbc04;
    letter-spacing: 2px;
}

.serp-desc {
    font-size: 0.88rem;
    color: #bdc1c6;
    line-height: 1.45;
}

.serp-attributes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #3c4043;
    font-size: 0.82rem;
    color: #9aa0a6;
}

/* Product Detail Page */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    margin: 30px 0;
}

.product-gallery {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-gallery-img {
    max-height: 380px;
    object-fit: contain;
    margin-bottom: 20px;
}

.product-info-panel h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.product-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.product-price-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-main {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-gold);
    font-family: var(--font-mono);
}

.price-usdt-equiv {
    font-size: 0.88rem;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    display: block;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.specs-table th, .specs-table td {
    padding: 12px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.92rem;
}

.specs-table th {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    width: 35%;
}

.specs-table td {
    color: #fff;
    font-weight: 600;
}

/* Reviews List */
.reviews-section {
    margin: 40px 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.review-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-author {
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-verified {
    font-size: 0.72rem;
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

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

/* Cart & Checkout */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 20px 0;
}

.cart-table th, .cart-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cart-summary-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
}

/* Form Controls */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 11px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.92rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    left: auto;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
}

.floating-tooltip {
    position: absolute;
    right: 70px;
    left: auto;
    background: #000;
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.floating-whatsapp:hover .floating-tooltip {
    opacity: 1;
}

/* Main Footer */
.main-footer {
    background: #070a10;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 35px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.crypto-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.crypto-tag {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    color: var(--accent-gold-light);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: auto;
    width: 35px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.footer-bottom {
    background: #04060a;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.84rem;
    color: var(--text-muted);
}

.footer-bottom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.admin-link {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.admin-link:hover {
    color: var(--accent-gold);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-grid, .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-search {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }
    
    .dropdown-menu {
        position: static;
        display: block;
        background: transparent;
        border: none;
        box-shadow: none;
        padding-right: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}
