:root {
    /* Core System Variables - Dark Theme optimizado para My Store */
    --background: 0 0% 8%;                    /* #141414 - Fondo oscuro principal */
    --foreground: 41 47% 82%;                 /* #E8DCC8 - Texto dorado claro */
    --card: 0 0% 10%;                         /* #1A1A1A - Cards ligeramente más claras */
    --card-foreground: 41 47% 82%;            /* Texto en cards */
    --popover: 0 0% 12%;                      /* #1F1F1F - Popovers */
    --popover-foreground: 41 47% 82%;         /* Texto en popovers */
    
    /* Interactive Elements - Tonos cobre/oro de My Store */
    --primary: 38 55% 54%;                    /* #B58948 - Cobre dorado principal */
    --primary-foreground: 0 0% 100%;          /* Blanco para contraste */
    --secondary: 205 28% 36%;                 /* #4C5E6F - Azul grisáceo */
    --secondary-foreground: 0 0% 98%;         /* Texto claro */
    --muted: 0 0% 15%;                        /* #262626 - Fondo apagado */
    --muted-foreground: 0 0% 60%;             /* #999999 - Texto apagado */
    --accent: 38 55% 54%;                     /* Mismo que primary */
    --accent-foreground: 0 0% 100%;           /* Blanco */
    
    /* System States */
    --destructive: 0 75% 55%;                 /* #E74C3C - Rojo para acciones destructivas */
    --destructive-foreground: 0 0% 98%;       /* Texto claro */
    --border: 0 0% 20%;                       /* #333333 - Bordes sutiles */
    --input: 0 0% 15%;                        /* #262626 - Inputs */
    --ring: 38 55% 54%;                       /* Anillo de enfoque cobre */
    
    /* Cart-specific variables for dark theme */
    --bg-primary: #141414;                    /* Main background */
    --bg-secondary: #1A1A1A;                  /* Card backgrounds */
    --text-primary: #F5F5F5;                  /* Main text */
    --text-secondary: #D4D4D4;                /* Secondary text */
    --text-tertiary: #A3A3A3;                 /* Tertiary text */
    --border-color: #333333;                  /* Borders */
    --success-bg: rgba(16, 185, 129, 0.1);    /* Success background */
    --success-border: #10B981;                /* Success border */
    --error-bg: rgba(239, 68, 68, 0.1);       /* Error background */
    --error-border: #EF4444;                  /* Error border */
    
    /* Aurum Brand Colors - Ajustados a My Store */
    --aurum-black: #0A0A0A;                   /* Negro profundo */
    --aurum-dark: #141414;                    /* Fondo principal oscuro */
    --aurum-darker: #0D0D0D;                  /* Fondo más oscuro */
    --aurum-copper: #B58948;                  /* Cobre principal de My Store */
    --aurum-copper-light: #C9A05A;            /* Cobre claro para hovers */
    --aurum-copper-dark: #9A7339;             /* Cobre oscuro */
    --aurum-bronze: #A67C52;                  /* Bronce complementario */
    
    /* Grayscale optimizado para Dark Theme */
    --gray-50: #FAFAFA;                       /* Texto más claro */
    --gray-100: #F5F5F5;                      /* Texto principal */
    --gray-200: #E5E5E5;                      /* Texto secundario */
    --gray-300: #D4D4D4;                      /* Texto terciario */
    --gray-400: #A3A3A3;                      /* Texto apagado */
    --gray-500: #737373;                      /* Texto sutil */
    --gray-600: #525252;                      /* Bordes */
    --gray-700: #404040;                      /* Divisores */
    --gray-800: #262626;                      /* Cards */
    --gray-900: #171717;                      /* Fondos oscuros */
    
    /* Extended Color Palette */
    --amber-50: #FFF8E1;                      /* Ámbar muy claro */
    --amber-500: #B58948;                     /* Ámbar principal (cobre) */
    --amber-600: #9A7339;                     /* Ámbar hover */
    --green-500: #10B981;                     /* Verde para success */
    --green-600: #059669;                     /* Verde hover */
    --yellow-400: #C9A05A;                    /* Amarillo dorado */
    --yellow-500: #B58948;                    /* Amarillo dorado principal */
    --red-600: #DC2626;                       /* Rojo para errores */
    --red-700: #B91C1C;                       /* Rojo hover */
}

/* Reset and Base Styles - DARK THEME */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-200);
    background-color: var(--aurum-dark);
    overflow-x: hidden;
}

/* Mobile Menu Structure */
.mobile-menu {
    background: var(--aurum-darker);
}

.mobile-menu-header {
    border-bottom: 1px solid rgba(181, 137, 72, 0.2);
}

.mobile-menu-item h3 {
    color: var(--gray-100);
}

.mobile-sub-item {
    color: var(--gray-400);
}

.mobile-sub-item:hover {
    color: var(--aurum-copper);
}

/* Search & Filter Components */
#search-input {
    background: var(--aurum-black);
    color: var(--gray-100);
    border: 1px solid rgba(181, 137, 72, 0.3);
}

.filters-btn {
    background: var(--aurum-black);
    color: var(--gray-200);
    border: 1px solid rgba(181, 137, 72, 0.3);
}

.filters-btn:hover {
    background: rgba(181, 137, 72, 0.1);
}

.filters-panel {
    background: var(--aurum-black);
}

.filter-group select {
    background: var(--aurum-darker);
    color: var(--gray-200);
    border: 1px solid rgba(181, 137, 72, 0.3);
}

.clear-filters-btn {
    background: var(--aurum-black);
    color: var(--gray-300);
}

.clear-filters-btn:hover {
    background: rgba(181, 137, 72, 0.1);
}

.filter-tag {
    background: rgba(181, 137, 72, 0.2);
    color: var(--aurum-copper-light);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.active {
    /* Will be used by JavaScript */
}

/* Top Banner */
.top-banner {
    background: var(--aurum-copper);
    text-align: center;
    padding: 0.5rem;
}

.top-banner p {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Header */
.header {
    position: relative;
    background: var(--aurum-dark);
    box-shadow: 0 1px 3px 0 rgba(181, 137, 72, 0.2);
    border-bottom: 1px solid rgba(181, 137, 72, 0.2);
}

.nav {
    background: var(--aurum-dark);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-300);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--aurum-copper);
    letter-spacing: 1px;
}

.nav-menu {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-item {
    position: relative;
    cursor: pointer;
}

.nav-item > span {
    color: var(--gray-300);
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 0;
    display: block;
}

.nav-item:hover > span {
    color: var(--aurum-copper);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 12rem;
    background: var(--aurum-darker);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    border-radius: 0.375rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 50;
    padding: 0.5rem 0;
    border: 1px solid rgba(181, 137, 72, 0.3);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    padding: 0.625rem 1rem;
    color: var(--gray-300);
    font-weight: 400;
    transition: all 0.2s;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.dropdown-item:hover {
    background: rgba(181, 137, 72, 0.15);
    color: var(--aurum-copper);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-300);
    transition: background-color 0.2s;
    border-radius: 0.375rem;
}

.icon-btn:hover {
    background: rgba(181, 137, 72, 0.15);
    color: var(--aurum-copper);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: var(--aurum-copper);
    color: white;
    font-size: 0.75rem;
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: var(--aurum-darker);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(181, 137, 72, 0.2);
}

.mobile-menu-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--aurum-copper);
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-300);
}

.mobile-menu-content {
    padding: 1rem;
}

.mobile-menu-item {
    margin-bottom: 1rem;
}

.mobile-menu-item h3 {
    font-weight: 500;
    color: var(--gray-200);
    margin-bottom: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 0;
}

.mobile-sub-item {
    display: block;
    padding: 0.5rem 0;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-sub-item:hover {
    color: var(--aurum-copper);
}

/* Search and Filters */
.search-filters {
    background: var(--aurum-darker);
    border-bottom: 1px solid rgba(181, 137, 72, 0.2);
    position: sticky;
    top: 0;
    z-index: 30;
}

.search-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    max-width: 32rem;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

#search-input {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border: 1px solid rgba(181, 137, 72, 0.3);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.2s;
    background: var(--aurum-black);
    color: var(--gray-200);
}

#search-input:focus {
    outline: none;
    border-color: var(--aurum-copper);
    box-shadow: 0 0 0 3px rgba(181, 137, 72, 0.2);
}

.filters-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(181, 137, 72, 0.3);
    background: var(--aurum-black);
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-300);
    transition: all 0.2s;
    position: relative;
}

.filters-btn:hover {
    background: rgba(181, 137, 72, 0.1);
}

.filter-count {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: var(--aurum-copper);
    color: white;
    font-size: 0.75rem;
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
    display: none;
    align-items: center;
    justify-content: center;
}

.filter-count.active {
    display: flex;
}

.filters-panel {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--aurum-black);
    border-radius: 0.5rem;
    display: none;
}

.filters-panel.active {
    display: block;
}

.filters-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .filters-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.filter-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.filter-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid rgba(181, 137, 72, 0.3);
    border-radius: 0.375rem;
    background: var(--aurum-darker);
    font-size: 0.875rem;
    color: var(--gray-200);
}

.filter-group select:focus {
    outline: none;
    border-color: var(--aurum-copper);
    box-shadow: 0 0 0 3px rgba(181, 137, 72, 0.2);
}

.clear-filters-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(181, 137, 72, 0.3);
    background: var(--aurum-black);
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--gray-300);
    transition: all 0.2s;
    width: 100%;
    justify-content: center;
}

.clear-filters-btn:hover {
    background: rgba(181, 137, 72, 0.1);
}

.active-filters {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(181, 137, 72, 0.2);
    color: var(--aurum-copper-light);
    border-radius: 9999px;
    font-size: 0.875rem;
}

.filter-tag button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--aurum-copper-light);
    padding: 0;
    width: 0.75rem;
    height: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-tag button:hover {
    color: var(--aurum-copper);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.7), transparent, rgba(10, 10, 10, 0.7));
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 20;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.75rem;
    }
}

.hero-content p {
    font-size: 1.125rem;
    color: rgba(232, 220, 200, 0.9);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-content p {
        font-size: 1.25rem;
    }
}

.hero-btn {
    background: var(--aurum-copper);
    color: white;
    font-weight: 600;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    transform: scale(1);
}

.hero-btn:hover {
    background: var(--aurum-copper-light);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(181, 137, 72, 0.4);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    background: rgba(181, 137, 72, 0.3);
    border: none;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav:hover {
    background: rgba(181, 137, 72, 0.5);
}

.hero-prev {
    left: 1rem;
}

.hero-next {
    right: 1rem;
}

.hero-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    background: rgba(181, 137, 72, 0.5);
}

.indicator.active {
    background: var(--aurum-copper);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-200);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-header-row h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-200);
}

@media (min-width: 768px) {
    .section-header-row h2 {
        font-size: 2.25rem;
    }
}

.view-all-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--aurum-copper);
    background: transparent;
    color: var(--aurum-copper);
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.view-all-btn:hover {
    background: rgb(184 115 51 / 0.1);
}

/* Featured Collections */
.featured-collections {
    padding: 4rem 0;
    background: var(--aurum-darker);
}

.collections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .collections-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.collection-card {
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    transform: translateY(0);
    aspect-ratio: 1;
}

.collection-card:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    transform: translateY(-0.5rem);
}

.collection-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s;
}

.collection-card:hover .collection-image {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 0.7), rgb(0 0 0 / 0.2), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.collection-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.collection-btn {
    background: var(--aurum-copper);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    transform: scale(1);
}

.collection-btn:hover {
    background: var(--aurum-copper-light);
    transform: scale(1.05);
}

/* Products Grid */
.best-sellers,
.new-jewelry {
    padding: 4rem 0;
}

.best-sellers {
    background: var(--aurum-dark);
}

.new-jewelry {
    background: var(--aurum-darker);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: var(--aurum-dark);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    border: 1px solid rgb(255 255 255 / 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

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

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

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

.quick-add-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .quick-add-overlay {
    opacity: 1;
}

.quick-add-btn {
    background: var(--aurum-copper);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    transform: scale(0.95);
}

.product-card:hover .quick-add-btn {
    transform: scale(1);
}

.quick-add-btn:hover {
    background: var(--aurum-copper-light);
}

.product-info {
    padding: 1rem;
}

.product-vendor {
    font-size: 0.75rem;
    color: var(--aurum-copper-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-200);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-pricing {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-200);
}

.price-unit {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
}

/* Promo Banner */
.promo-banner {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.promo-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(0 0 0 / 0.6), rgb(0 0 0 / 0.4));
}

.promo-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 48rem;
}

.promo-badge {
    display: inline-block;
    background: var(--aurum-copper);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.promo-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .promo-content h2 {
        font-size: 3.75rem;
    }
}

.promo-content p {
    font-size: 1.125rem;
    color: rgb(255 255 255 / 0.9);
    margin-bottom: 2rem;
    max-width: 32rem;
}

@media (min-width: 768px) {
    .promo-content p {
        font-size: 1.25rem;
    }
}

.promo-offer {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.promo-discount {
    text-align: right;
    margin-right: 2rem;
}

.discount-number {
    font-size: 3.75rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

@media (min-width: 768px) {
    .discount-number {
        font-size: 5rem;
    }
}

.discount-text {
    font-size: 1.125rem;
    color: rgb(255 255 255 / 0.8);
}

.promo-btn {
    background: var(--aurum-copper);
    color: white;
    font-weight: 600;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.promo-btn:hover {
    background: var(--aurum-copper-light);
}

/* Service Features */
.service-features {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--aurum-darker), var(--aurum-dark));
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature {
    text-align: center;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-0.5rem);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: var(--aurum-copper);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s;
}

.feature:hover .feature-icon {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.feature-icon svg {
    color: white;
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-200);
    margin-bottom: 1rem;
}

.feature p {
    color: var(--gray-400);
    line-height: 1.6;
    max-width: 21rem;
    margin: 0 auto;
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(to right, var(--aurum-darker), var(--aurum-dark));
}

.newsletter .container {
    text-align: center;
}

.newsletter h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-200);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .newsletter h2 {
        font-size: 2.25rem;
    }
}

.newsletter h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--aurum-copper);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .newsletter h3 {
        font-size: 2.25rem;
    }
}

.newsletter p {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 28rem;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgb(255 255 255 / 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
    background: var(--aurum-darker);
    color: var(--gray-200);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--aurum-copper);
    box-shadow: 0 0 0 3px rgb(184 115 51 / 0.1);
}

.newsletter-form button {
    background: var(--aurum-copper);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: var(--aurum-copper-light);
}

/* Footer */
.footer {
    background: var(--aurum-darker);
    padding: 4rem 0 2rem;
    color: var(--gray-300);
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--aurum-copper);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-weight: 600;
    color: var(--gray-200);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--aurum-copper);
}

.footer-contact h4 {
    font-weight: 600;
    color: var(--gray-200);
    margin-bottom: 1rem;
}

.footer-contact p {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.contact-info,
.business-hours {
    margin-top: 1.5rem;
}

.contact-info h5,
.business-hours h5 {
    font-weight: 600;
    color: var(--gray-200);
    margin-bottom: 0.5rem;
}

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

.social-link {
    color: var(--gray-400);
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--aurum-copper);
}

.footer-bottom {
    border-top: 1px solid rgb(255 255 255 / 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Shopping Cart Modal */
.cart-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgb(0 0 0 / 0.5);
    display: none;
}

.cart-modal.active {
    display: block;
}

.cart-content {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    max-width: 28rem;
    background: var(--aurum-dark);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    display: flex;
    flex-direction: column;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
    padding: 0.75rem 1rem;
}

.cart-header h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-200);
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-400);
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.cart-close:hover {
    background: rgb(255 255 255 / 0.05);
}

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

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--gray-400);
}

.cart-empty svg {
    margin-bottom: 1rem;
}

.cart-item {
    display: flex;
    gap: 0.75rem;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cart-item-image {
    width: 4rem;
    height: 4rem;
    border-radius: 0.375rem;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.25rem;
    color: var(--gray-200);
}

.cart-item-price {
    color: var(--aurum-copper);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 2rem;
    height: 2rem;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: var(--aurum-darker);
    border-radius: 0.375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: all 0.2s;
    color: var(--gray-200);
}

.quantity-btn:hover {
    background: rgb(255 255 255 / 0.05);
}

.quantity-value {
    width: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-200);
}

.remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--red-600);
    font-size: 0.875rem;
    margin-left: auto;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.2s;
}

.remove-btn:hover {
    color: var(--red-700);
    background: rgb(220 38 38 / 0.1);
}

.cart-footer {
    border-top: 1px solid rgb(255 255 255 / 0.1);
    padding: 1rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-200);
}

.cart-total span:last-child {
    color: var(--aurum-copper);
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.stripe-btn {
    background: var(--aurum-copper);
    color: white;
}

.stripe-btn:hover {
    background: var(--aurum-copper-light);
}

.paypal-btn {
    background: #0070ba;
    color: white;
}

.paypal-btn:hover {
    background: #005ea6;
}

.clear-cart-btn {
    padding: 0.75rem 1rem;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: var(--aurum-darker);
    color: var(--gray-300);
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.clear-cart-btn:hover {
    background: rgb(255 255 255 / 0.05);
}

/* Product Detail Modal */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgb(0 0 0 / 0.5);
    display: none;
}

.product-modal.active {
    display: block;
}

.product-modal-content {
    position: fixed;
    inset: 1rem;
    background: var(--aurum-dark);
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    overflow: hidden;
}

.product-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: var(--aurum-darker);
    border: none;
    cursor: pointer;
    color: var(--gray-400);
    padding: 0.5rem;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: all 0.2s;
}

.product-modal-close:hover {
    background: rgb(255 255 255 / 0.05);
}

.product-modal-grid {
    display: flex;
    height: 100%;
}

.product-images {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.main-image {
    flex: 1;
    background: var(--aurum-darker);
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    gap: 0.5rem;
}

.thumbnail {
    width: 4rem;
    height: 4rem;
    border-radius: 0.375rem;
    overflow: hidden;
    border: 2px solid rgb(255 255 255 / 0.1);
    cursor: pointer;
    transition: border-color 0.2s;
    background: none;
    padding: 0;
}

.thumbnail.active {
    border-color: var(--aurum-copper);
}

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

.product-info {
    width: 24rem;
    padding: 1.5rem;
    border-left: 1px solid rgb(255 255 255 / 0.1);
    overflow-y: auto;
}

.product-vendor {
    font-size: 0.875rem;
    color: var(--aurum-copper-light);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.product-info h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-200);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
}

.star {
    color: var(--gray-600);
}

.star.filled {
    color: var(--aurum-copper);
}

.reviews {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.product-price {
    margin-bottom: 1.5rem;
}

.product-price .price-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
}

.product-price .price {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-200);
}

.product-price .price-unit {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
}

.product-details {
    margin-bottom: 1.5rem;
}

.product-details h3 {
    font-weight: 600;
    color: var(--gray-200);
    margin-bottom: 0.75rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    font-size: 0.875rem;
}

.detail-row {
    display: flex;
    flex-direction: column;
}

.detail-row span:first-child {
    color: var(--gray-400);
}

.detail-row span:last-child {
    font-weight: 500;
    color: var(--gray-200);
}

.stock-available {
    color: var(--green-600) !important;
}

.product-description {
    margin-bottom: 1.5rem;
}

.product-description h3 {
    font-weight: 600;
    color: var(--gray-200);
    margin-bottom: 0.5rem;
}

.product-description p {
    color: var(--gray-400);
    font-size: 0.875rem;
    line-height: 1.6;
}

.quantity-selector {
    margin-bottom: 1.5rem;
}

.quantity-selector label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-200);
    margin-bottom: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quantity-controls .quantity-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: var(--aurum-darker);
    border-radius: 0.375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--gray-200);
}

.quantity-controls .quantity-btn:hover {
    background: rgb(255 255 255 / 0.05);
}

.quantity-controls .quantity-value {
    width: 3rem;
    text-align: center;
    font-weight: 500;
    color: var(--gray-200);
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.buy-now-btn {
    background: var(--aurum-copper);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.buy-now-btn:hover {
    background: var(--aurum-copper-light);
}

.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: var(--aurum-darker);
    color: var(--gray-300);
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.add-to-cart-btn:hover {
    background: rgb(255 255 255 / 0.05);
}

.product-secondary-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.secondary-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: var(--aurum-darker);
    color: var(--gray-300);
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
    justify-content: center;
}

.secondary-action-btn:hover {
    background: rgb(255 255 255 / 0.05);
}

.whatsapp-support {
    border-top: 1px solid rgb(255 255 255 / 0.1);
    padding-top: 1rem;
    margin-bottom: 1.5rem;
}

.whatsapp-support h3 {
    font-weight: 600;
    color: var(--gray-200);
    margin-bottom: 0.5rem;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--green-500);
    color: white;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    justify-content: center;
}

.whatsapp-btn:hover {
    background: var(--green-600);
}

.guarantees {
    border-top: 1px solid rgb(255 255 255 / 0.1);
    padding-top: 1rem;
}

.guarantees h3 {
    font-weight: 600;
    color: var(--gray-200);
    margin-bottom: 0.5rem;
}

.guarantees ul {
    list-style: none;
    font-size: 0.875rem;
    color: var(--gray-400);
}

.guarantees li {
    margin-bottom: 0.25rem;
}
.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    width: 24rem;
    padding: 1.5rem;
    border-left: 1px solid var(--gray-200);
    overflow-y: auto;
}

.product-vendor {
    font-size: 0.875rem;
    color: var(--amber-600);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.product-info h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(17 24 39);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
}

.star {
    color: var(--gray-300);
}

.star.filled {
    color: var(--yellow-400);
}

.reviews {
    font-size: 0.875rem;
    color: rgb(107 114 128);
}

.product-price {
    margin-bottom: 1.5rem;
}

.product-price .price-label {
    font-size: 0.875rem;
    color: rgb(107 114 128);
    margin-bottom: 0.25rem;
}

.product-price .price {
    font-size: 1.875rem;
    font-weight: 700;
    color: rgb(17 24 39);
}

.product-price .price-unit {
    font-size: 0.875rem;
    color: rgb(107 114 128);
    margin-top: 0.25rem;
}

.product-details {
    margin-bottom: 1.5rem;
}

.product-details h3 {
    font-weight: 600;
    color: rgb(17 24 39);
    margin-bottom: 0.75rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    font-size: 0.875rem;
}

.detail-row {
    display: flex;
    flex-direction: column;
}

.detail-row span:first-child {
    color: rgb(107 114 128);
}

.detail-row span:last-child {
    font-weight: 500;
}

.stock-available {
    color: var(--green-600) !important;
}

.product-description {
    margin-bottom: 1.5rem;
}

.product-description h3 {
    font-weight: 600;
    color: rgb(17 24 39);
    margin-bottom: 0.5rem;
}

.product-description p {
    color: rgb(107 114 128);
    font-size: 0.875rem;
    line-height: 1.6;
}

.quantity-selector {
    margin-bottom: 1.5rem;
}

.quantity-selector label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(17 24 39);
    margin-bottom: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quantity-controls .quantity-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--gray-300);
    background: white;
    border-radius: 0.375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.quantity-controls .quantity-btn:hover {
    background: var(--gray-50);
}

.quantity-controls .quantity-value {
    width: 3rem;
    text-align: center;
    font-weight: 500;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.buy-now-btn {
    background: linear-gradient(to right, var(--yellow-400), var(--amber-500));
    color: white;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.buy-now-btn:hover {
    background: linear-gradient(to right, var(--yellow-500), var(--amber-600));
}

.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    background: white;
    color: rgb(55 65 81);
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.add-to-cart-btn:hover {
    background: var(--gray-50);
}

.product-secondary-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.secondary-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    background: white;
    color: rgb(55 65 81);
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
    justify-content: center;
}

.secondary-action-btn:hover {
    background: var(--gray-50);
}

.whatsapp-support {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
    margin-bottom: 1.5rem;
}

.whatsapp-support h3 {
    font-weight: 600;
    color: rgb(17 24 39);
    margin-bottom: 0.5rem;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--green-500);
    color: white;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    justify-content: center;
}

.whatsapp-btn:hover {
    background: var(--green-600);
}

.guarantees {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
}

.guarantees h3 {
    font-weight: 600;
    color: rgb(17 24 39);
    margin-bottom: 0.5rem;
}

.guarantees ul {
    list-style: none;
    font-size: 0.875rem;
    color: rgb(107 114 128);
}

.guarantees li {
    margin-bottom: 0.25rem;
}

/* Admin Panel */
.admin-panel {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: white;
    display: none;
}

.admin-panel.active {
    display: block;
}

.admin-header {
    background: var(--gray-50);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(17 24 39);
}

.admin-close {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-300);
    background: white;
    color: rgb(55 65 81);
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.admin-close:hover {
    background: var(--gray-50);
}

.admin-tabs {
    display: flex;
    gap: 1rem;
    margin: 1rem 1.5rem 0;
}

.admin-tab {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
    background: white;
    color: rgb(55 65 81);
}

.admin-tab.active {
    background: var(--amber-500);
    color: white;
}

.admin-tab:hover:not(.active) {
    background: var(--gray-100);
}

.admin-content {
    flex: 1;
    overflow: hidden;
}

.admin-tab-content {
    display: none;
    padding: 1.5rem;
    height: calc(100vh - 200px);
    overflow-y: auto;
}

.admin-tab-content.active {
    display: block;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.products-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
}

.add-product-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--amber-500);
    color: white;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.add-product-btn:hover {
    background: var(--amber-600);
}

.products-list {
    display: grid;
    gap: 1rem;
}

.admin-product-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-product-image {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    object-fit: cover;
}

.admin-product-info {
    flex: 1;
}

.admin-product-name {
    font-weight: 500;
    color: rgb(17 24 39);
    margin-bottom: 0.25rem;
}

.admin-product-category {
    font-size: 0.875rem;
    color: rgb(107 114 128);
    margin-bottom: 0.25rem;
}

.admin-product-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--amber-600);
}

.admin-product-actions {
    text-align: right;
}

.admin-product-stock {
    font-size: 0.875rem;
    color: rgb(107 114 128);
    margin-bottom: 0.5rem;
}

.admin-action-btns {
    display: flex;
    gap: 0.5rem;
}

.admin-action-btn {
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--gray-300);
    background: white;
    border-radius: 0.375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.admin-action-btn:hover {
    background: var(--gray-50);
}

.orders-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: rgb(107 114 128);
    text-align: center;
}

.orders-placeholder svg {
    margin-bottom: 1rem;
    color: var(--gray-300);
}

.analytics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .analytics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .analytics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.stat-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.stat-icon.revenue {
    background: var(--green-500);
    color: white;
}

.stat-icon.products {
    background: var(--aurum-copper);
    color: white;
}

.stat-icon.stock {
    background: var(--aurum-copper-dark);
    color: white;
}

.stat-icon.cart {
    background: var(--amber-500);
    color: white;
}

.stat-content p {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(107 114 128);
    margin-bottom: 0.25rem;
}

.stat-content span {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(17 24 39);
}

/* Product Form Modal */
.product-form-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgb(0 0 0 / 0.5);
    display: none;
}

.product-form-modal.active {
    display: block;
}

.product-form-content {
    position: fixed;
    inset: 2rem;
    max-width: 32rem;
    margin: 0 auto;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    overflow: hidden;
}

.product-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.product-form-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.product-form-close {
    background: none;
    border: none;
    cursor: pointer;
    color: rgb(107 114 128);
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.product-form-close:hover {
    background: var(--gray-100);
}

.product-form {
    padding: 1.5rem;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(55 65 81);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber-500);
    box-shadow: 0 0 0 3px rgb(251 191 36 / 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 4rem;
}

.save-product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--amber-500);
    color: white;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.save-product-btn:hover {
    background: var(--amber-600);
}

/* Floating Elements */
.floating-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 40;
}

.whatsapp-float-btn {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--green-500);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float-btn:hover {
    background: var(--green-600);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.admin-toggle {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    z-index: 40;
}

.admin-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: rgb(55 65 81);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: all 0.2s;
}

.admin-toggle-btn:hover {
    background: var(--gray-50);
}

.gallery-toggle {
    position: fixed;
    bottom: 6rem;
    left: 1rem;
    z-index: 40;
}

.gallery-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--amber-500);
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: white;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: all 0.2s;
    font-weight: 500;
}

.gallery-toggle-btn:hover {
    background: var(--amber-600);
}

/* Login Modal */
.login-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgb(0 0 0 / 0.5);
    display: none;
    align-items: center;
    justify-content: center;
}

.login-modal.active {
    display: flex;
}

.login-content {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    width: 100%;
    max-width: 24rem;
    margin: 1rem;
}

.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.login-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgb(17 24 39);
}

.login-close {
    background: none;
    border: none;
    cursor: pointer;
    color: rgb(107 114 128);
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.login-close:hover {
    background: var(--gray-100);
}

.login-form {
    padding: 1.5rem;
}

.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--amber-500);
    color: white;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background: var(--amber-600);
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgb(0 0 0 / 0.5);
    display: none;
}

.gallery-modal.active {
    display: block;
}

.gallery-content {
    position: fixed;
    inset: 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.gallery-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgb(17 24 39);
}

.gallery-close {
    background: none;
    border: none;
    cursor: pointer;
    color: rgb(107 114 128);
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.gallery-close:hover {
    background: var(--gray-100);
}

.gallery-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    background: white;
    flex-wrap: wrap;
}

.view-mode-selector {
    display: flex;
    gap: 0.25rem;
    background: var(--gray-100);
    border-radius: 0.375rem;
    padding: 0.25rem;
}

.view-mode-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: rgb(107 114 128);
    transition: all 0.2s;
}

.view-mode-btn.active {
    background: white;
    color: rgb(17 24 39);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.view-mode-btn:hover:not(.active) {
    color: rgb(55 65 81);
}

.sort-controls,
.gallery-filters {
    display: flex;
    gap: 0.5rem;
}

.gallery-filters select,
.sort-controls select {
    padding: 0.5rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    background: white;
    font-size: 0.875rem;
    color: rgb(55 65 81);
}

.gallery-products {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

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

.gallery-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-product-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-product-card:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transform: translateY(-2px);
}

.gallery-product-card.list-view {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.gallery-product-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-50);
}

.gallery-product-card.list-view .gallery-product-image {
    width: 120px;
    aspect-ratio: 1;
    flex-shrink: 0;
}

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

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

.gallery-product-info {
    padding: 1rem;
}

.gallery-product-card.list-view .gallery-product-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-product-details {
    flex: 1;
}

.gallery-product-vendor {
    font-size: 0.75rem;
    color: var(--amber-600);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.gallery-product-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(17 24 39);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-product-card.list-view .gallery-product-name {
    margin-bottom: 0.25rem;
    -webkit-line-clamp: 1;
}

.gallery-product-category {
    font-size: 0.75rem;
    color: rgb(107 114 128);
    margin-bottom: 0.5rem;
}

.gallery-product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: rgb(17 24 39);
}

.gallery-product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.gallery-product-card.list-view .gallery-product-actions {
    margin-top: 0;
    flex-direction: column;
    align-items: flex-end;
}

.gallery-add-to-cart {
    background: var(--amber-500);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.gallery-add-to-cart:hover {
    background: var(--amber-600);
}

/* CSV Import Modal */
.csv-import-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgb(0 0 0 / 0.5);
    display: none;
}

.csv-import-modal.active {
    display: block;
}

.csv-import-content {
    position: fixed;
    inset: 2rem;
    max-width: 48rem;
    margin: 0 auto;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.csv-import-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.csv-import-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgb(17 24 39);
}

.csv-import-close {
    background: none;
    border: none;
    cursor: pointer;
    color: rgb(107 114 128);
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.csv-import-close:hover {
    background: var(--gray-100);
}

.csv-import-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.csv-instructions {
    background: var(--amber-50);
    border: 1px solid var(--amber-200);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.csv-instructions h4 {
    font-weight: 600;
    color: rgb(17 24 39);
    margin-bottom: 0.5rem;
}

.csv-instructions p {
    color: rgb(55 65 81);
    margin-bottom: 1rem;
}

.csv-format,
.csv-example code {
    background: var(--gray-100);
    padding: 0.5rem;
    border-radius: 0.375rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    word-break: break-all;
    margin-bottom: 1rem;
    display: block;
}

.csv-example h5 {
    font-weight: 600;
    color: rgb(17 24 39);
    margin-bottom: 0.5rem;
}

.download-template-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--amber-500);
    color: white;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.download-template-btn:hover {
    background: var(--amber-600);
}

.csv-upload {
    border: 2px dashed var(--gray-300);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.2s;
}

.csv-upload:hover {
    border-color: var(--amber-400);
}

.csv-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    color: rgb(107 114 128);
}

.csv-file-label svg {
    color: var(--amber-500);
}

.csv-file-label span {
    font-weight: 500;
}

.csv-preview {
    margin-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    padding-top: 1.5rem;
}

.csv-preview h4 {
    font-weight: 600;
    color: rgb(17 24 39);
    margin-bottom: 1rem;
}

.csv-preview-table {
    overflow-x: auto;
    border: 1px solid var(--gray-200);
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.csv-preview-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.csv-preview-table th,
.csv-preview-table td {
    padding: 0.5rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.csv-preview-table th {
    background: var(--gray-50);
    font-weight: 600;
    color: rgb(55 65 81);
}

.csv-import-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.import-csv-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--green-500);
    color: white;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s;
}

.import-csv-btn:hover {
    background: var(--green-600);
}

.cancel-import-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    color: rgb(55 65 81);
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.cancel-import-btn:hover {
    background: var(--gray-50);
}

/* Products Actions */
.products-actions {
    display: flex;
    gap: 0.5rem;
}

.import-csv-toggle-btn,
.export-csv-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-300);
    background: white;
    color: rgb(55 65 81);
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.import-csv-toggle-btn:hover,
.export-csv-btn:hover {
    background: var(--gray-50);
}

.export-csv-btn {
    background: var(--green-500);
    color: white;
    border-color: var(--green-500);
}

.export-csv-btn:hover {
    background: var(--green-600);
}

/* Responsive Design */
@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header-row {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .product-modal-content {
        inset: 0.5rem;
    }

    .product-modal-grid {
        flex-direction: column;
    }

    .product-info {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--gray-200);
    }

    .search-bar {
        flex-direction: column;
        gap: 0.5rem;
    }

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

.slide-in {
    animation: slideIn 0.3s ease-in-out;
}

.slide-up {
    animation: slideUp 0.3s ease-in-out;
}

/* Premium Luxury Enhancements */
.luxury-gradient {
    background: linear-gradient(135deg, #e8b4a0 0%, #d4af37 50%, #c18b73 100%);
}

.luxury-text-gradient {
    background: linear-gradient(135deg, #d4af37, #e8b4a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-shadow {
    box-shadow: 0 10px 40px rgba(232, 180, 160, 0.3), 0 4px 25px rgba(212, 175, 55, 0.2);
}

.luxury-border {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #e8b4a0, #d4af37) border-box;
}

/* Enhanced Product Cards */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(232, 180, 160, 0.25);
}

/* Luxury Button Variants */
.btn-luxury {
    background: linear-gradient(135deg, #e8b4a0 0%, #d4af37 50%, #c18b73 100%);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .btn-luxury {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
        width: 120px;
    }
}

@media (max-width: 480px) {
    .btn-luxury {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        width: 100px;
    }
}

.btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 180, 160, 0.4);
}

/* Premium Typography */
.luxury-heading {
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #1a2b4b, #2d3e5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Navigation */
.nav {
    background: var(--aurum-black); /*background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,247,242,0.95) 100%);*/
	    backdrop-filter: blur(10px);
}

/* Luxury Footer */
.footer {
    background: linear-gradient(135deg, #1a2b4b 0%, #2d3e5e 100%);
    color: #faf7f2;
}


/* Product Rating Display - Fixed */
.product-rating-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.product-rating-display .stars {
    display: flex;
    gap: 0.125rem;
}

.product-rating-display .star {
    font-size: 0.875rem;
    color: var(--gray-300);
}

.product-rating-display .star.filled {
    color: var(--yellow-400);
}

.product-rating-display .star.half {
    color: var(--yellow-400);
    opacity: 0.5;
}

.rating-text {
    font-size: 0.75rem;
    color: rgb(107 114 128);
}

/* Featured Product Badge - Fixed */
.product-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--amber-500);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.product-badge.featured {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.product-badge.top {
    background: linear-gradient(135deg, var(--aurum-copper), var(--aurum-copper-dark));  /* Ajustado a tema dark: cobre dorado */
}

/* Quick Add and Buy Now Buttons - Fixed */
.quick-add-btn,
.buy-now-featured {
    background: linear-gradient(to right, var(--yellow-400), var(--amber-500));
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 0.75rem;
    width: 100%;
}

.quick-add-btn:hover,
.buy-now-featured:hover {
    background: linear-gradient(to right, var(--yellow-500), var(--amber-600));
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
}

/* Quick Add Overlay - Fixed */
.quick-add-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.product-card:hover .quick-add-overlay {
    opacity: 1;
    pointer-events: auto;
}

.quick-add-overlay .quick-add-btn {
    background: linear-gradient(to right, var(--yellow-400), var(--amber-500));
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    transform: scale(0.95);
    margin-top: 0;
    width: auto;
}

.product-card:hover .quick-add-overlay .quick-add-btn {
    transform: scale(1);
}

.quick-add-overlay .quick-add-btn:hover {
    background: linear-gradient(to right, var(--yellow-500), var(--amber-600));
    transform: scale(1.05);
}

/* Shopping Cart - Fixed for consistency */
.cart-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgb(0 0 0 / 0.5);
    display: none;
}

.cart-modal.active {
    display: block;
}

.cart-content {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    max-width: 28rem;
    background: white;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    display: flex;
    flex-direction: column;
}

/* Floating Buttons - Ensure they work in light theme */
.floating-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 40;
}

.whatsapp-float-btn {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--green-500);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float-btn:hover {
    background: var(--green-600);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.gallery-toggle {
    position: fixed;
    bottom: 6rem;
    left: 1rem;
    z-index: 40;
}

.gallery-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--amber-500);
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: white;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: all 0.2s;
    font-weight: 500;
}

.gallery-toggle-btn:hover {
    background: var(--amber-600);
}

.admin-toggle {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    z-index: 40;
}

.admin-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: rgb(55 65 81);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: all 0.2s;
}

.admin-toggle-btn:hover {
    background: var(--gray-50);
}
/* User Dropdown Menu */
.user-menu-container {
    position: relative;
    display: inline-block;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--black);
    border: 1px solid var(--gray-800);
    border-radius: 0.5rem;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: none;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.user-dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-800);
    font-weight: 600;
    color: var(--white);
    font-size: 0.875rem;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.user-dropdown-item:hover {
    background: var(--gray-900);
    color: var(--aurum-gold);
}

.user-dropdown-item svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.user-dropdown-divider {
    height: 1px;
    background: var(--gray-800);
    margin: 0.5rem 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .user-dropdown {
        right: -10px;
        min-width: 200px;
    }
}

/* Theme Toggle Icon Button - Dark Theme */
#theme-toggle-btn {
    position: relative;
}

#theme-toggle-btn .theme-icon {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#theme-toggle-btn .sun-icon {
    stroke: var(--gray-400);
}

#theme-toggle-btn .moon-icon {
    stroke: var(--gray-400);
}

#theme-toggle-btn:hover .theme-icon {
    stroke: var(--aurum-gold);
    transform: rotate(15deg);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    #theme-toggle-btn {
        padding: 0.5rem;
    }
}
