/* =============================================
   ROVYN - Move Different | Main Stylesheet
   Gold & Dark Premium Theme
   ============================================= */

/* =============================================
   CSS Variables
   ============================================= */
:root {
    /* Gold Palette */
    --gold-primary: #C9A84C;
    --gold-light: #E8D48B;
    --gold-dark: #A67C28;
    --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E8D48B 50%, #C9A84C 100%);
    --gold-text-gradient: linear-gradient(135deg, #C9A84C 0%, #E8D48B 40%, #C9A84C 60%, #A67C28 100%);
    
    /* Dark Palette */
    --dark-bg: #0A0A0A;
    --dark-surface: #111111;
    --dark-card: #1A1A1A;
    --dark-border: #2A2A2A;
    --dark-hover: #252525;
    
    /* Light Palette */
    --light-text: #FFFFFF;
    --light-muted: #B0B0B0;
    --light-dim: #777777;
    
    /* Accent Colors */
    --green-whatsapp: #25D366;
    --instagram-pink: #E1306C;
    --instagram-purple: #833AB4;
    
    /* Shadows */
    --shadow-gold: 0 0 20px rgba(201, 168, 76, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =============================================
   Global Reset & Base
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
}

/* =============================================
   Typography
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.gold-text {
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-text-solid {
    color: var(--gold-primary);
}

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    color: var(--light-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* =============================================
   Navigation
   ============================================= */
.navbar-rovyn {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    padding: 1rem 0;
    transition: var(--transition-normal);
}

.navbar-rovyn.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.3));
}

.navbar-brand-text {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link-rovyn {
    color: var(--light-muted) !important;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-normal);
}

.nav-link-rovyn:hover,
.nav-link-rovyn.active {
    color: var(--gold-primary) !important;
}

.nav-link-rovyn::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-normal);
}

.nav-link-rovyn:hover::after,
.nav-link-rovyn.active::after {
    width: 100%;
}

.btn-shop-now {
    background: var(--gold-gradient);
    color: var(--dark-bg) !important;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border: none;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-gold);
}

.btn-shop-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.5);
}

/* =============================================
   Hero Section
   ============================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.1) 0%, transparent 60%),
                var(--dark-bg);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.hero-logo {
    width: 180px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--light-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gold-gradient);
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    border: 2px solid var(--gold-primary);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-gold);
}

.hero-btn:hover {
    background: transparent;
    color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.hero-scroll-indicator i {
    font-size: 2rem;
    color: var(--gold-primary);
}

/* =============================================
   Section Styling
   ============================================= */
.section-padding {
    padding: 100px 0;
}

.section-dark {
    background: var(--dark-bg);
}

.section-surface {
    background: var(--dark-surface);
}

.section-card {
    background: var(--dark-card);
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

/* =============================================
   Stats Section
   ============================================= */
.stats-section {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--light-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* =============================================
   Brand Cards
   ============================================= */
.brand-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.brand-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.brand-card:hover::before {
    transform: scaleX(1);
}

.brand-card-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    transition: var(--transition-normal);
}

.brand-card:hover .brand-card-logo {
    filter: brightness(1) sepia(1) hue-rotate(10deg) saturate(5);
}

.brand-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-card-count {
    color: var(--gold-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   Product Cards
   ============================================= */
.product-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.product-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--dark-surface);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-card-image img {
    transform: scale(1.1);
}

.product-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold-primary);
    color: var(--dark-bg);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card-badge.sale {
    background: #E74C3C;
    color: white;
}

.product-card-body {
    padding: 1.5rem;
}

.product-card-brand {
    color: var(--gold-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.product-card-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-card-name a:hover {
    color: var(--gold-primary);
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.price-current {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.price-original {
    font-size: 0.95rem;
    color: var(--light-dim);
    text-decoration: line-through;
}

.price-discount {
    background: #E74C3C;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-buy-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 0.75rem;
    background: var(--green-whatsapp);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-normal);
    cursor: pointer;
}

.btn-buy-whatsapp:hover {
    background: #20BA5C;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    color: white;
}

/* =============================================
   Category Cards
   ============================================= */
.category-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-normal);
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.category-card-image {
    height: 180px;
    overflow: hidden;
    background: var(--dark-surface);
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-card:hover .category-card-image img {
    transform: scale(1.1);
}

.category-card-body {
    padding: 1.5rem;
}

.category-card-name {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-card-count {
    color: var(--gold-primary);
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

/* =============================================
   Product Detail
   ============================================= */
.product-detail-section {
    padding: 100px 0 60px;
}

.product-detail-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.product-main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid var(--dark-border);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-normal);
}

.product-thumbnail.active,
.product-thumbnail:hover {
    border-color: var(--gold-primary);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info {
    padding-left: 2rem;
}

.product-detail-brand {
    color: var(--gold-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.product-detail-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--dark-border);
}

.product-detail-price .price-current {
    font-size: 2rem;
}

.product-detail-price .price-original {
    font-size: 1.2rem;
}

.product-detail-description {
    color: var(--light-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-add-to-cart {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 3rem;
    background: var(--gold-gradient);
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    border: none;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-gold);
    margin-right: 1rem;
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.5);
    color: var(--dark-bg);
}

.btn-whatsapp-detail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 3rem;
    background: var(--green-whatsapp);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    border: none;
    transition: var(--transition-normal);
}

.btn-whatsapp-detail:hover {
    background: #20BA5C;
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.3);
    color: white;
}

/* =============================================
   Feedback Section
   ============================================= */
.feedback-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition-normal);
    position: relative;
}

.feedback-card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.feedback-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--gold-primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.feedback-stars {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feedback-text {
    color: var(--light-muted);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feedback-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feedback-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-bg);
    font-size: 1.2rem;
}

.feedback-author-info h6 {
    margin: 0;
    font-weight: 600;
}

.feedback-author-info small {
    color: var(--light-dim);
}

.feedback-images {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.feedback-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--dark-border);
    cursor: pointer;
    transition: var(--transition-normal);
}

.feedback-image:hover {
    border-color: var(--gold-primary);
    transform: scale(1.05);
}

.feedback-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =============================================
   Instagram / Social CTA
   ============================================= */
.instagram-section {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
    padding: 80px 0;
    text-align: center;
}

.instagram-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.instagram-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--instagram-purple);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    border: none;
    transition: var(--transition-normal);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: var(--instagram-purple);
}

/* =============================================
   Footer
   ============================================= */
.footer-rovyn {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    padding: 60px 0 30px;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--light-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--light-dim);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light-muted);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-muted);
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: var(--dark-bg);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-border);
    text-align: center;
}

.footer-copyright {
    color: var(--light-dim);
    font-size: 0.85rem;
}

/* =============================================
   Floating WhatsApp Button
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--green-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-normal);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

/* =============================================
   Buttons General
   ============================================= */
.btn-gold {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    border: none;
    transition: var(--transition-normal);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--dark-bg);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-primary);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--gold-primary);
    transition: var(--transition-normal);
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* =============================================
   Breadcrumb
   ============================================= */
.breadcrumb-section {
    background: var(--dark-surface);
    border-bottom: 1px solid var(--dark-border);
    padding: 1.5rem 0;
}

.breadcrumb {
    margin: 0;
}

.breadcrumb-item a {
    color: var(--gold-primary);
}

.breadcrumb-item.active {
    color: var(--light-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light-dim);
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-detail-info {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .product-detail-gallery {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .product-card-image {
        height: 200px;
    }
    
    .product-main-image img {
        height: 300px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* =============================================
   Animations (Progressive Enhancement)
   Content visible by default, animated when JS loads
   ============================================= */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-loaded .fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.js-loaded .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-loaded .slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
}

.js-loaded .slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-loaded .slide-in-right {
    opacity: 0;
    transform: translateX(30px);
}

.js-loaded .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* =============================================
   Loading Overlay
   ============================================= */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--dark-border);
    border-top-color: var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =============================================
   Page Not Found
   ============================================= */
.not-found-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.not-found-section h1 {
    font-size: 6rem;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* =============================================
   Banner Slider
   ============================================= */
.banner-slider-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--dark-surface);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.7) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.banner-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease forwards;
}

.banner-subtitle {
    font-size: 1.2rem;
    color: var(--light-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.banner-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gold-gradient);
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    border: 2px solid var(--gold-primary);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-gold);
}

.banner-btn:hover {
    background: transparent;
    color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Banner Navigation */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid var(--gold-primary);
    border-radius: 50%;
    color: var(--gold-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-nav:hover {
    background: var(--gold-primary);
    color: var(--dark-bg);
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.3);
    border: 2px solid var(--gold-primary);
    cursor: pointer;
    transition: var(--transition-normal);
}

.banner-dot.active {
    background: var(--gold-primary);
    transform: scale(1.2);
}

.banner-dot:hover {
    background: rgba(201, 168, 76, 0.6);
}

/* Mobile Banner Adjustments */
@media (max-width: 767.98px) {
    .banner-slider-section {
        height: 50vh;
        min-height: 350px;
    }
    .banner-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    .banner-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    .banner-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    .banner-prev { left: 10px; }
    .banner-next { right: 10px; }
    .banner-btn {
        padding: 0.75rem 2rem;
        font-size: 0.85rem;
    }
}
