/**
 * ShopMU - Estilos Principais
 * Design inspirado em FoxMuTeam com tema gaming/cyberpunk
 */

/* ========================================
   VARIÁVEIS CSS
======================================== */
:root {
    /* Cores Principais */
    --primary: #00d4ff;
    --primary-dark: #00a8cc;
    --primary-glow: rgba(0, 212, 255, 0.5);
    
    --secondary: #7c3aed;
    --secondary-dark: #5b21b6;
    --secondary-glow: rgba(124, 58, 237, 0.5);
    
    --accent: #f59e0b;
    --accent-dark: #d97706;
    
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    
    /* Cores de Fundo */
    --bg-darker: #030308;
    --bg-dark: #0a0a1a;
    --bg-card: rgba(15, 15, 35, 0.95);
    --bg-card-hover: rgba(20, 20, 45, 0.98);
    
    /* Texto */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    /* Bordas */
    --border-color: rgba(0, 212, 255, 0.2);
    --border-glow: rgba(0, 212, 255, 0.4);
    
    /* Fontes */
    --font-primary: 'Rajdhani', sans-serif;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Exo 2', sans-serif;
    
    /* Espaçamentos */
    --section-padding: 100px;
    --card-radius: 16px;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   RESET & BASE
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-darker);
    overflow-x: hidden;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--bg-darker);
}

/* ========================================
   PARTICLES BACKGROUND
======================================== */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(15, 15, 35, 1) 0%, var(--bg-darker) 100%);
}

/* ========================================
   NAVBAR
======================================== */
.navbar {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand .logo-img {
    height: 45px;
    width: auto;
}

.navbar-brand .logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.navbar-brand .logo-text i {
    color: var(--primary);
    margin-right: 10px;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary) !important;
    padding: 10px 20px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2, #7289da);
    color: #fff !important;
    border-radius: 25px;
    margin-left: 10px;
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
}

/* Remove setas/chevrons dos dropdowns */
.dropdown-toggle::after {
    display: none !important;
    content: none !important;
}

.dropdown-menu {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px;
    margin-top: 10px;
}

.dropdown-item {
    color: var(--text-secondary);
    border-radius: 8px;
    padding: 10px 15px;
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
}

.dropdown-divider {
    border-color: var(--border-color);
}

/* ========================================
   HERO BANNER
======================================== */
.hero-banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        linear-gradient(225deg, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--primary-glow); }
    50% { box-shadow: 0 0 30px 10px transparent; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-shadow: 0 0 40px var(--primary-glow);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: var(--text-muted);
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: var(--bg-darker);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--primary-glow);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-darker);
}

.btn-glow {
    position: relative;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--bg-darker);
    box-shadow: 0 5px 20px var(--primary-glow);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--text-primary);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.btn-buy {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    border: none;
    color: #fff;
    font-size: 18px;
    padding: 15px 40px;
}

.btn-buy:hover {
    background: linear-gradient(135deg, #00d4ff, #0096c7);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.4);
    color: #fff;
}

/* ========================================
   SECTIONS
======================================== */
section {
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   FEATURES SECTION
======================================== */
.features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.03), transparent);
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-normal);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 30px var(--primary-glow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #fff;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-card h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    margin: 0;
}

/* ========================================
   PRODUCTS SECTION
======================================== */
.products-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
                0 0 40px var(--primary-glow);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.product-badge.new {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}

.product-badge.sale {
    background: linear-gradient(135deg, var(--danger), #dc2626);
    color: #fff;
    right: 15px;
    left: auto;
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(124,58,237,0.1));
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.product-title a:hover {
    color: var(--primary);
}

.product-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-price {
    margin-bottom: 20px;
}

.old-price {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 10px;
}

.current-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.product-actions {
    margin-top: auto;
}

/* Compact Card */
.product-card.compact .product-image {
    height: 160px;
}

.product-card.compact .product-info {
    padding: 20px;
}

.product-card.compact .product-title {
    font-size: 1rem;
}

.product-card.compact .current-price {
    font-size: 1.2rem;
}

/* ========================================
   CATEGORIES SECTION
======================================== */
.categories-section {
    padding: 80px 0;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--primary);
    transition: all var(--transition-normal);
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    transform: rotateY(180deg);
}

.category-card h5 {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(88, 101, 242, 0.3) 0%, transparent 50%),
        linear-gradient(225deg, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
        var(--bg-dark);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 60px;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-primary);
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* ========================================
   PAGE HEADER
======================================== */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-color);
}

.page-header-content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.page-header-content p {
    color: var(--text-muted);
}

.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

/* ========================================
   PRODUCTS LISTING PAGE
======================================== */
.products-listing-section {
    padding: 60px 0 var(--section-padding);
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 25px;
    margin-bottom: 25px;
}

.sidebar-widget h5 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.search-form .form-control {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px 0 0 8px;
}

.search-form .form-control:focus {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
    box-shadow: none;
}

.search-form .btn {
    border-radius: 0 8px 8px 0;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 5px;
}

.category-list li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.category-list li a:hover,
.category-list li.active a {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
}

.category-list li a i {
    width: 20px;
    margin-right: 10px;
}

.category-list li a span:first-of-type {
    flex-grow: 1;
}

.category-list li a .count {
    background: rgba(0, 212, 255, 0.2);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.info-box p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 14px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 15px 25px;
    margin-bottom: 30px;
}

.results-count {
    color: var(--text-secondary);
}

.sort-form .form-select {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 15px;
    border-radius: 8px;
    min-width: 180px;
}

.sort-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: none;
}

.no-products {
    text-align: center;
    padding: 80px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
}

.no-products i {
    font-size: 80px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-products h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

.no-products p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.pagination {
    gap: 5px;
}

.pagination .page-link {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 18px;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.pagination .page-link:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-darker);
}

/* ========================================
   PRODUCT DETAILS PAGE
======================================== */
.product-details-section {
    padding: 60px 0 var(--section-padding);
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    overflow: hidden;
    margin-bottom: 15px;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-zoom {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.image-zoom:hover {
    background: var(--primary);
    color: var(--bg-darker);
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.gallery-thumbs .thumb {
    width: 70px;
    height: 70px;
    border: 3px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    background: var(--bg-dark);
}

.gallery-thumbs .thumb:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.gallery-thumbs .thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.gallery-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    padding-left: 30px;
}

.product-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.product-details .product-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.product-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 14px;
    color: var(--text-muted);
}

.meta-item i {
    margin-right: 5px;
}

.product-price-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 25px;
    margin-bottom: 25px;
}

.price-discount {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.price-discount .old-price {
    font-size: 18px;
}

.discount-badge {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.product-price-box .price-label {
    font-size: 14px;
    color: var(--text-muted);
    display: block;
}

.product-price-box .price-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.payment-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-muted);
}

.payment-info i {
    color: var(--primary);
    margin-right: 8px;
}

.product-short-desc {
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.product-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.product-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.product-features .feature i {
    font-size: 18px;
}

.product-details .product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-share span {
    font-size: 14px;
    color: var(--text-muted);
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.share-btn.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.share-btn.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.share-btn.copy:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-darker);
}

/* Product Tabs */
.product-tabs {
    margin-top: 60px;
}

.product-tabs .nav-tabs {
    border: none;
    background: var(--bg-card);
    border-radius: var(--card-radius) var(--card-radius) 0 0;
    padding: 10px;
}

.product-tabs .nav-link {
    border: none;
    background: none;
    color: var(--text-muted);
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.product-tabs .nav-link:hover {
    color: var(--primary);
}

.product-tabs .nav-link.active {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
}

.product-tabs .tab-content {
    background: var(--bg-card);
    border-radius: 0 0 var(--card-radius) var(--card-radius);
    border: 1px solid var(--border-color);
    border-top: none;
}

.tab-content-inner {
    padding: 30px;
    color: var(--text-secondary);
}

.tab-content-inner h3,
.tab-content-inner h4 {
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.tab-content-inner ul {
    padding-left: 20px;
}

.tab-content-inner li {
    margin-bottom: 10px;
}

/* Related Products */
.related-products-section {
    padding: 80px 0 var(--section-padding);
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.03), transparent);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--bg-dark);
    padding: 80px 0 30px;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 18px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.social-btn.discord:hover { background: #5865F2; }
.social-btn.facebook:hover { background: #1877F2; }
.social-btn.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.youtube:hover { background: #FF0000; }
.social-btn.whatsapp:hover { background: #25D366; }

.footer-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 10px;
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.footer-contact i {
    width: 20px;
    color: var(--primary);
}

.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--primary);
}

.payment-methods h6 {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 25px;
    opacity: 0.7;
}

.payment-icons i {
    font-size: 24px;
    color: var(--text-muted);
}

.footer-divider {
    border-color: var(--border-color);
    margin: 40px 0 20px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* ========================================
   BACK TO TOP
======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--bg-darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: 0 5px 20px var(--primary-glow);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    color: var(--bg-darker);
}

/* ========================================
   ERROR PAGE
======================================== */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
}

.error-content i {
    font-size: 100px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.error-content h1 {
    margin-bottom: 15px;
}

.error-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 991.98px) {
    .hero-stats {
        gap: 30px;
    }
    
    .product-details {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .sidebar {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-banner {
        padding: 100px 0 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .products-toolbar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .product-features {
        justify-content: center;
    }
    
    .product-details .product-actions {
        flex-direction: column;
    }
    
    .product-details .product-actions .btn {
        width: 100%;
    }
    
    .cta-content {
        padding: 40px 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* ========================================
   ANIMATIONS
======================================== */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Custom animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--primary-glow); }
    50% { box-shadow: 0 0 40px var(--primary-glow), 0 0 60px var(--secondary-glow); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.glowing {
    animation: glow 2s ease-in-out infinite;
}

