/*
Theme Name: Golden Numbers
Theme URI: https://goldennumbers.net
Author: Golden Numbers Team
Author URI: https://goldennumbers.net
Description: Ultra-Luxury Premium Mobile Numbers WordPress Theme - Custom Built for VIP Clients
Version: 1.0.0
License: Private
License URI: https://goldennumbers.net
Text Domain: goldennumbers
Domain Path: /languages
Tags: luxury, premium, mobile-numbers, vip, elite
*/

/* ============================================
   GOLDEN NUMBERS - ULTRA LUXURY THEME
   Primary Background: #0D0D0D
   Gold Accent: #C9A227
   Soft White: #F5F5F5
   Muted Gray: #BFBFBF
   ============================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0D0D0D;
    color: #F5F5F5;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #F5F5F5;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

a {
    color: #C9A227;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #E5C100;
}

p {
    color: #BFBFBF;
    margin-bottom: 1rem;
}

/* Mobile Number Font (MANDATORY) */
.gn-mobile-number {
    font-family: 'Arial', sans-serif !important;
    font-weight: 700;
    font-size: 1.5rem;
    white-space: nowrap;
    color: #F5F5F5;
    letter-spacing: 1px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.gn-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    transition: all 0.3s ease;
}

.gn-header.scrolled {
    background: rgba(13, 13, 13, 0.98);
    box-shadow: 0 4px 30px rgba(201, 162, 39, 0.1);
}

.gn-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gn-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gn-logo img {
    height: 50px;
    width: auto;
}

.gn-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #C9A227;
    letter-spacing: 2px;
}

.gn-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.gn-nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #F5F5F5;
    position: relative;
}

.gn-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C9A227, #E5C100);
    transition: width 0.3s ease;
}

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

.gn-nav a:hover {
    color: #C9A227;
}

.gn-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.gn-mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #C9A227;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.gn-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0D0D0D 0%, #1a1a1a 50%, #0D0D0D 100%);
    overflow: hidden;
    padding: 120px 2rem 4rem;
}

.gn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(201, 162, 39, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.gn-hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.gn-crown-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.gn-crown-badge svg {
    width: 24px;
    height: 24px;
    fill: #C9A227;
}

.gn-crown-badge span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #C9A227;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gn-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #F5F5F5 0%, #C9A227 50%, #F5F5F5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.gn-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #BFBFBF;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Hero Counters */
.gn-hero-counters {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.gn-counter {
    text-align: center;
}

.gn-counter-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #C9A227;
    display: block;
    line-height: 1;
}

.gn-counter-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    color: #BFBFBF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.gn-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

/* ============================================
   BUTTONS
   ============================================ */
.gn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.gn-btn-primary {
    background: linear-gradient(135deg, #C9A227, #E5C100);
    color: #0D0D0D;
}

.gn-btn-primary:hover {
    background: linear-gradient(135deg, #E5C100, #C9A227);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.gn-btn-outline {
    background: transparent;
    color: #C9A227;
    border: 2px solid #C9A227;
}

.gn-btn-outline:hover {
    background: #C9A227;
    color: #0D0D0D;
}

.gn-btn-whatsapp {
    background: #128C7E;
    color: #fff;
}

.gn-btn-whatsapp:hover {
    background: #075E54;
    color: #fff;
}

.gn-btn-call {
    background: linear-gradient(135deg, #C9A227, #E5C100);
    color: #0D0D0D;
}

.gn-btn-call:hover {
    background: linear-gradient(135deg, #E5C100, #C9A227);
}

/* ============================================
   PRODUCT GRID & CARDS
   ============================================ */
.gn-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gn-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gn-section-header h2 {
    margin-bottom: 1rem;
}

.gn-section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Bar */
.gn-filter-bar {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.gn-filter-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.gn-filter-group label {
    font-size: 0.875rem;
    color: #BFBFBF;
    font-weight: 500;
}

.gn-filter-select,
.gn-filter-input {
    background: #0D0D0D;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    color: #F5F5F5;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    min-width: 150px;
}

.gn-filter-select:focus,
.gn-filter-input:focus {
    outline: none;
    border-color: #C9A227;
}

.gn-filter-btn {
    background: linear-gradient(135deg, #C9A227, #E5C100);
    color: #0D0D0D;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gn-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 162, 39, 0.3);
}

/* Product Grid */
.gn-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Product Card */
.gn-product-card {
    background: linear-gradient(145deg, #1a1a1a, #0D0D0D);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.gn-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201, 162, 39, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.gn-product-card:hover::before {
    left: 100%;
}

.gn-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 162, 39, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(201, 162, 39, 0.1);
}

/* Card Badges Row - Network Left, Featured/Hot Right */
.gn-card-badges-row {
    padding: 1rem 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gn-network-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gn-network-jazz { background: rgba(237, 28, 36, 0.2); color: #ED1C24; }
.gn-network-telenor { background: rgba(0, 153, 204, 0.2); color: #0099CC; }
.gn-network-ufone { background: rgba(255, 102, 0, 0.2); color: #FF6600; }
.gn-network-zong { background: rgba(0, 153, 0, 0.2); color: #009900; }
.gn-network-warid { background: rgba(102, 0, 153, 0.2); color: #660099; }
.gn-network-onic { background: rgba(255, 193, 7, 0.2); color: #FFC107; }
.gn-network-scom { background: rgba(0, 150, 136, 0.2); color: #009688; }
.gn-network-uan { background: rgba(96, 125, 139, 0.2); color: #607D8B; }

/* Network Logo in Card */
.gn-network-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
}

.gn-card-body {
    padding: 1.5rem;
    text-align: center;
}

.gn-mobile-number-display {
    font-family: 'Arial', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #F5F5F5;
    white-space: nowrap;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gn-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #C9A227;
    margin-bottom: 1.5rem;
}

.gn-price-on-call {
    color: #BFBFBF;
    font-style: italic;
}

.gn-card-actions {
    display: flex;
    gap: 0.75rem;
    padding: 0 1.5rem 1.5rem;
}

.gn-card-actions .gn-btn {
    flex: 1;
    padding: 0.875rem 1rem;
    font-size: 0.75rem;
}

/* Featured & Hot Deal Badges */
.gn-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.gn-badge-featured {
    background: linear-gradient(135deg, #C9A227, #E5C100);
    color: #0D0D0D;
}

.gn-badge-hot {
    background: linear-gradient(135deg, #FF4444, #FF6666);
    color: #fff;
}

/* ============================================
   PAGINATION
   ============================================ */
.gn-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.gn-pagination a,
.gn-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 4px;
    color: #F5F5F5;
    font-weight: 500;
    transition: all 0.3s ease;
}

.gn-pagination a:hover {
    background: rgba(201, 162, 39, 0.2);
    border-color: #C9A227;
}

.gn-pagination .current {
    background: linear-gradient(135deg, #C9A227, #E5C100);
    color: #0D0D0D;
    border-color: #C9A227;
    font-weight: 600;
}

.gn-pagination .dots {
    background: transparent;
    border: none;
}

/* ============================================
   REQUEST NUMBER SECTION
   ============================================ */
.gn-request-section {
    background: linear-gradient(145deg, #1a1a1a, #0D0D0D);
    border-radius: 16px;
    padding: 4rem;
    margin: 4rem auto;
    max-width: 800px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    position: relative;
    overflow: hidden;
}

.gn-request-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C9A227, transparent);
}

.gn-form-group {
    margin-bottom: 1.5rem;
}

.gn-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #BFBFBF;
}

.gn-form-group input,
.gn-form-group select,
.gn-form-group textarea {
    width: 100%;
    background: #0D0D0D;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 4px;
    padding: 1rem;
    color: #F5F5F5;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.gn-form-group input:focus,
.gn-form-group select:focus,
.gn-form-group textarea:focus {
    outline: none;
    border-color: #C9A227;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.1);
}

.gn-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.gn-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gn-form-submit {
    width: 100%;
    padding: 1.25rem;
    font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.gn-footer {
    background: linear-gradient(180deg, #0D0D0D, #050505);
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.gn-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

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

.gn-footer-brand {
    max-width: 300px;
}

.gn-footer-brand img {
    height: 60px;
    margin-bottom: 1rem;
}

.gn-footer-brand p {
    font-size: 0.875rem;
    line-height: 1.8;
}

.gn-footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #C9A227;
}

.gn-footer-column ul {
    list-style: none;
}

.gn-footer-column li {
    margin-bottom: 0.75rem;
}

.gn-footer-column a {
    font-size: 0.875rem;
    color: #BFBFBF;
}

.gn-footer-column a:hover {
    color: #C9A227;
}

.gn-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gn-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #BFBFBF;
}

.gn-footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: #C9A227;
    flex-shrink: 0;
}

.gn-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.gn-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gn-social-links a:hover {
    background: #C9A227;
    transform: translateY(-3px);
}

.gn-social-links a:hover svg {
    fill: #0D0D0D;
}

.gn-social-links svg {
    width: 20px;
    height: 20px;
    fill: #C9A227;
    transition: all 0.3s ease;
}

.gn-footer-bottom {
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.gn-footer-bottom p {
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .gn-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gn-footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gn-header-inner {
        padding: 1rem;
    }
    
    .gn-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid rgba(201, 162, 39, 0.2);
    }
    
    .gn-nav.active {
        display: flex;
    }
    
    .gn-mobile-menu-toggle {
        display: flex;
    }
    
    .gn-hero {
        padding: 100px 1rem 3rem;
    }
    
    .gn-hero-counters {
        flex-direction: column;
        gap: 2rem;
    }
    
    .gn-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gn-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .gn-filter-group {
        flex-direction: column;
        width: 100%;
    }
    
    .gn-filter-select,
    .gn-filter-input {
        width: 100%;
    }
    
    .gn-section {
        padding: 3rem 1rem;
    }
    
    .gn-request-section {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
    }
    
    .gn-form-row {
        grid-template-columns: 1fr;
    }
    
    .gn-footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gn-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .gn-pagination {
        gap: 0.25rem;
    }
    
    .gn-pagination a,
    .gn-pagination span {
        min-width: 36px;
        height: 36px;
        padding: 0 0.5rem;
        font-size: 0.875rem;
    }
    
    .gn-card-actions {
        flex-direction: column;
    }
    
    .gn-card-actions .gn-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .gn-logo-text {
        font-size: 1.25rem;
    }
    
    .gn-hero h1 {
        font-size: 2rem;
    }
    
    .gn-mobile-number-display {
        font-size: 1.65rem;
        letter-spacing: 1px;
    }
    
    .gn-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.75rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.gn-text-center { text-align: center; }
.gn-text-gold { color: #C9A227; }
.gn-text-white { color: #F5F5F5; }
.gn-text-muted { color: #BFBFBF; }

.gn-mt-1 { margin-top: 1rem; }
.gn-mt-2 { margin-top: 2rem; }
.gn-mt-3 { margin-top: 3rem; }
.gn-mb-1 { margin-bottom: 1rem; }
.gn-mb-2 { margin-bottom: 2rem; }
.gn-mb-3 { margin-bottom: 3rem; }

/* Loading State */
.gn-loading {
    position: relative;
    pointer-events: none;
}

.gn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(201, 162, 39, 0.2);
    border-top-color: #C9A227;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* No Results */
.gn-no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.gn-no-results svg {
    width: 80px;
    height: 80px;
    fill: rgba(201, 162, 39, 0.3);
    margin-bottom: 1.5rem;
}

.gn-no-results h3 {
    margin-bottom: 1rem;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0D0D0D;
}

::-webkit-scrollbar-thumb {
    background: rgba(201, 162, 39, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C9A227;
}

/* Selection */
::selection {
    background: rgba(201, 162, 39, 0.3);
    color: #F5F5F5;
}

/* ============================================
   FEATURED SLIDER
   ============================================ */
.gn-featured-slider-section {
    background: linear-gradient(180deg, #0D0D0D, #1a1a1a);
    padding: 4rem 0;
    overflow: hidden;
}

.gn-featured-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.gn-featured-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gn-featured-slider::-webkit-scrollbar {
    display: none;
}

.gn-featured-slider .gn-product-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 300px;
    scroll-snap-align: start;
}

.gn-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C9A227, #E5C100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.gn-slider-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
}

.gn-slider-arrow svg {
    width: 24px;
    height: 24px;
    fill: #0D0D0D;
}

.gn-slider-prev {
    left: 1rem;
}

.gn-slider-next {
    right: 1rem;
}

.gn-no-featured {
    text-align: center;
    color: #BFBFBF;
    padding: 3rem;
    width: 100%;
}

/* Hide slider on mobile */
@media (max-width: 768px) {
    .gn-featured-slider-section {
        display: none;
    }
}

@media (max-width: 1200px) {
    .gn-featured-slider .gn-product-card {
        flex: 0 0 calc(50% - 1rem);
    }
}
