/* ==========================================================================
   NOORVIA HIJAB - LUXURY STYLESHEET
   ========================================================================== */

/* ====== CSS RESET & BASE ====== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --gold: #D4AF37;
    --gold-light: #F4E8C1;
    --gold-dark: #B8860B;
    --rose-gold: #B76E79;
    --platinum: #E5E4E2;
    
    /* Neutral Colors */
    --dark: #0A0A0A;
    --darker: #050505;
    --light: #FFFFFF;
    --cream: #F8F4E6;
    --gray: #8B8B8B;
    --gray-light: #E0E0E0;
    --gray-dark: #333333;
    
    /* Accent Colors */
    --emerald: #1B4B36;
    --sapphire: #0F52BA;
    --ruby: #E0115F;
    --amethyst: #9966CC;
    
    /* Functional Colors */
    --success: #28A745;
    --warning: #FFC107;
    --error: #DC3545;
    --info: #17A2B8;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Cormorant Garamond', serif;
    --font-accent: 'Playfair Display', serif;
    --font-heading: 'Montserrat', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-round: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Z-Index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-toast: 1080;
}

/* ====== BASE STYLES ====== */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--light);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-sm);
    color: var(--gray-light);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 12px 28px;
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border-color: var(--light);
}

.btn-secondary:hover {
    background: var(--light);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-glow {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn-glow:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.btn-full {
    width: 100%;
}

.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-disabled:hover {
    transform: none;
}

/* ====== NAVIGATION ====== */
.luxury-navbar {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(224, 196, 149, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: var(--z-fixed);
    transition: all var(--transition-normal);
}

.luxury-navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-md);
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
}

.logo span {
    font-weight: 300;
    color: var(--gold-light);
    font-style: italic;
}

/* Desktop Menu */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.nav-links li a i {
    font-size: 1rem;
    opacity: 0.8;
}

.nav-links li a:hover {
    background: rgba(224, 196, 149, 0.1);
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-links li a.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(224, 196, 149, 0.3);
}

.nav-cta {
    margin-left: 15px;
}

.nav-concierge-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark) !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(224, 196, 149, 0.3);
    border: 2px solid var(--gold);
}

.nav-concierge-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(224, 196, 149, 0.4);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.luxury-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 20px rgba(224, 196, 149, 0.3);
}

.luxury-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(224, 196, 149, 0.4);
    color: var(--dark);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: var(--z-fixed);
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ====== HERO SECTION ====== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}

.hero-particle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 var(--space-md);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.badge-text {
    font-size: 0.9rem;
    color: var(--light);
    font-weight: 500;
}

.badge-dot {
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-accent);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.title-line {
    display: block;
}

.highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xxl);
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    animation: bounce 2s infinite;
}

.scroll-indicator {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.hero-features {
    position: absolute;
    bottom: var(--space-xl);
    right: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-end;
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-normal);
}

.feature:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(-5px);
}

.feature i {
    color: var(--gold);
    font-size: 1.2rem;
}

.feature span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ====== TRUST SECTION ====== */
.trust-section {
    padding: var(--space-xl) 0;
    background: var(--darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.trust-item {
    text-align: center;
    padding: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.trust-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
}

.trust-item h4 {
    font-family: var(--font-primary);
    margin-bottom: var(--space-xs);
}

.trust-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ====== SECTION STYLES ====== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-subtitle {
    display: inline-block;
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--rose-gold));
    border-radius: 2px;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray-light);
}

.section-cta {
    text-align: center;
    margin-top: var(--space-xl);
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ====== COLLECTIONS ====== */
.collections-section {
    padding: var(--space-xxl) 0;
    background: var(--dark);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
}

.collection-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    transition: all var(--transition-normal);
}

.collection-card:hover {
    transform: translateY(-10px);
}

.collection-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
}

.collection-content {
    color: var(--light);
    text-align: left;
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-normal);
}

.collection-card:hover .collection-content {
    transform: translateY(0);
    opacity: 1;
}

.collection-content h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.collection-content p {
    color: var(--gray-light);
    margin-bottom: 10px;
}

.collection-price {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.2rem;
}

.collection-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====== PRODUCTS ====== */
.products-section {
    padding: var(--space-xxl) 0;
    background: var(--darker);
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--gray-light);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.product-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
    position: relative;
}

.product-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.badge {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge.new {
    background: var(--success);
    color: var(--light);
}

.badge.sale {
    background: var(--error);
    color: var(--light);
}

.badge.premium {
    background: var(--gold);
    color: var(--dark);
}

.badge.bestseller {
    background: var(--warning);
    color: var(--dark);
}

.badge.limited {
    background: var(--rose-gold);
    color: var(--light);
}

.product-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-image,
.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition-normal);
}

.hover-image {
    opacity: 0;
}

.product-card:hover .hover-image {
    opacity: 1;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-normal);
}

.quick-view-btn:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

.product-info {
    padding: var(--space-md);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.product-category {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wishlist-btn {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.wishlist-btn:hover,
.wishlist-btn.active {
    color: var(--error);
    transform: scale(1.2);
}

.wishlist-btn.active i {
    font-weight: 900;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--light);
}

.product-description {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: var(--space-md);
}

.spec {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.spec i {
    color: var(--gold);
    width: 16px;
}

.color-options {
    margin-bottom: var(--space-md);
}

.color-label {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.colors {
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-round);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    position: relative;
}

.color-option.active {
    border-color: var(--gold);
    transform: scale(1.2);
}

.product-pricing {
    margin-bottom: var(--space-md);
}

.price-main {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: 5px;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
}

.original-price {
    font-size: 1.2rem;
    color: var(--gray);
    text-decoration: line-through;
}

.discount {
    background: var(--error);
    color: var(--light);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-extra {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.installment {
    color: var(--gray);
    font-size: 0.9rem;
}

.shipping {
    color: var(--success);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.btn-cart {
    flex: 2;
    background: var(--gray-dark);
    color: var(--light);
    border: none;
}

.btn-cart:hover {
    background: var(--gray);
}

.btn-buy {
    flex: 1;
    background: var(--gold);
    color: var(--dark);
    border: none;
}

.btn-buy:hover {
    background: var(--gold-light);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--light) !important;
    border: none;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray);
    font-size: 0.8rem;
}

.product-meta i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* ====== CRAFTSMANSHIP ====== */
.craftsmanship-section {
    padding: var(--space-xxl) 0;
    background: var(--dark);
}

.craftsmanship-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.craftsmanship-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.craftsmanship-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    background: rgba(0, 0, 0, 0.8);
    color: var(--light);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.craftsmanship-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.feature i {
    color: var(--gold);
    font-size: 2rem;
    margin-top: 5px;
}

.feature h4 {
    font-family: var(--font-primary);
    margin-bottom: 5px;
}

.feature p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ====== TESTIMONIALS ====== */
.testimonials-section {
    padding: var(--space-xxl) 0;
    background: var(--darker);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-xl);
    background: var(--dark);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all var(--transition-normal);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-rating {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: var(--space-lg);
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    font-family: var(--font-accent);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-round);
    object-fit: cover;
    border: 2px solid var(--gold);
}

.author-info h4 {
    font-family: var(--font-primary);
    margin-bottom: 5px;
}

.author-info span {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
}

.purchase {
    color: var(--gold) !important;
    font-size: 0.8rem !important;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

.carousel-prev,
.carousel-next {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-round);
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ====== NEWSLETTER ====== */
.newsletter-section {
    padding: var(--space-xxl) 0;
    background: linear-gradient(135deg, var(--darker), #1a1a1a);
}

.newsletter-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-xl);
}

.newsletter-content {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-subtitle {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.newsletter-title {
    font-size: 2.2rem;
    margin-bottom: var(--space-sm);
}

.newsletter-description {
    color: var(--gray-light);
    margin-bottom: var(--space-lg);
}

.newsletter-form {
    margin-bottom: var(--space-md);
}

.form-group {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.form-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--light);
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.form-agreement {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-agreement input[type="checkbox"] {
    margin-top: 5px;
}

.form-agreement label {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.privacy-note {
    color: var(--gray);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.newsletter-image {
    height: 100%;
}

.newsletter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ====== FOOTER ====== */
.main-footer {
    position: relative;
    background: var(--darker);
    padding-top: var(--space-xxl);
    color: var(--light);
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.shape-fill {
    fill: var(--darker);
}

.footer-container {
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xxl);
}

.footer-brand {
    padding-right: var(--space-xl);
}

.footer-logo .logo {
    margin-bottom: var(--space-md);
}

.brand-tagline {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-round);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

.social-link:hover {
    color: var(--light);
    transform: translateY(-3px);
}

.social-link.whatsapp:hover { background: #25D366; }
.social-link.instagram:hover { background: linear-gradient(45deg, #405DE6, #833AB4, #E1306C); }
.social-link.facebook:hover { background: #1877F2; }
.social-link.pinterest:hover { background: #E60023; }
.social-link.tiktok:hover { background: #000000; }
.social-link.youtube:hover { background: #FF0000; }

.column-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: 10px;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-light);
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.contact-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-item h4 {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.payment-methods {
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.payment-methods h4 {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    font-size: 2rem;
    color: var(--gray);
}

.payment-icons i:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-bottom {
    padding: var(--space-lg) 0;
}

.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.copyright {
    text-align: center;
    width: 100%;
}

.copyright p {
    color: var(--gray);
    font-size: 0.9rem;
}

.copyright i {
    color: var(--error);
}

.legal-links {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    width: 100%;
}

.legal-links a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: color var(--transition-normal);
}

.legal-links a:hover {
    color: var(--gold);
}

.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-xl);
    left: var(--space-xl);
    background: #25D366;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    z-index: var(--z-fixed);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all var(--transition-normal);
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.float-icon {
    font-size: 1.8rem;
}

.float-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.float-text span {
    font-weight: 600;
    font-size: 0.9rem;
}

.float-text small {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* ====== MODALS ====== */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.quick-view-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    background: var(--dark);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    z-index: 2;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-round);
    color: var(--light);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 3;
    transition: all var(--transition-normal);
}

.modal-close:hover {
    background: var(--gold);
    color: var(--dark);
    transform: rotate(90deg);
}

.modal-content {
    padding: var(--space-xl);
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

/* ====== CART SIDEBAR ====== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--dark);
    border-left: 1px solid rgba(212, 175, 55, 0.1);
    z-index: var(--z-modal);
    display: flex;
    flex-direction: column;
    transition: right var(--transition-normal);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-header h3 {
    font-family: var(--font-primary);
    color: var(--gold);
}

.cart-close {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.cart-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.cart-body {
    flex: 1;
    padding: var(--space-lg);
    overflow-y: auto;
}

.cart-footer {
    padding: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-summary {
    margin-bottom: var(--space-lg);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
    color: var(--gray-light);
    font-size: 0.9rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light);
}

.cart-actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.cart-security {
    text-align: center;
    color: var(--gray);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* ====== TOAST STYLES ====== */
.toast {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-left: 4px solid var(--gold);
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.toast-success { border-left-color: var(--success); }
.toast-error { border-left-color: var(--error); }
.toast-info { border-left-color: var(--info); }
.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--light);
}

.toast-content i {
    font-size: 1.2rem;
}

.toast-success .toast-content i { color: var(--success); }
.toast-error .toast-content i { color: var(--error); }
.toast-info .toast-content i { color: var(--info); }

.toast-close {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 4px;
    transition: color 0.2s;
}

.toast-close:hover {
    color: var(--light);
}

/* ====== MOBILE RESPONSIVE ====== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .footer-brand {
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    :root {
        --space-xl: 3rem;
        --space-xxl: 4rem;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .craftsmanship-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .newsletter-card {
        grid-template-columns: 1fr;
    }
    
    .newsletter-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .logo {
        font-size: 2.2rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        display: none;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-links.show {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from { 
            opacity: 0; 
            transform: translateY(-20px); 
        }
        to { 
            opacity: 1; 
            transform: translateY(0); 
        }
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links li a {
        padding: 15px 20px;
        border-radius: 8px;
        justify-content: flex-start;
        font-size: 1.1rem;
        min-height: 50px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .nav-links li a i {
        width: 20px;
        text-align: center;
    }
    
    .nav-cta {
        margin: 20px 0 0 0;
        width: 100%;
    }
    
    .nav-cta .luxury-btn {
        width: 100%;
        justify-content: center;
        font-size: 1.1rem;
        min-height: 50px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Mobile Hero Section */
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: 70px;
        padding-bottom: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-content {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .title-line {
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .hero-stats {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 30px;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-scroll {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 30px;
    }
    
    .hero-features {
        position: relative;
        bottom: auto;
        right: auto;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 30px;
        padding: 0 20px;
    }
    
    .feature {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    /* Mobile Products */
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .product-image {
        height: 350px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Footer */
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .legal-links {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }
    
    /* Mobile Cart */
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    /* Mobile WhatsApp Float */
    .whatsapp-float {
        left: 50%;
        transform: translateX(-50%);
        bottom: var(--space-md);
        width: auto;
    }
    
    .back-to-top {
        bottom: var(--space-md);
        right: var(--space-md);
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    :root {
        --space-xl: 2rem;
        --space-xxl: 3rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .product-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .payment-icons {
        gap: var(--space-sm);
        font-size: 1.5rem;
    }
    
    .whatsapp-float {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .float-text span {
        font-size: 0.8rem;
    }
    
    .float-text small {
        font-size: 0.6rem;
    }
    
    /* Mobile Menu Improvements */
    .nav-links {
        padding: 15px;
    }
    
    .nav-links li a {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .logo {
        font-size: 1.8rem;
    }
}

/* ====== LUXURY LOADER ====== */
.luxury-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-diamond {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.diamond-shape {
    position: absolute;
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--gold);
    transform: rotate(45deg);
    animation: diamondSpin 3s infinite ease-in-out;
}

.diamond-shape:nth-child(2) {
    animation-delay: 0.2s;
    border-color: #B76E79;
}

.diamond-shape:nth-child(3) {
    animation-delay: 0.4s;
    border-color: #E5E4E2;
}

@keyframes diamondSpin {
    0%, 100% {
        transform: rotate(45deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotate(45deg) scale(1.2);
        opacity: 0.7;
    }
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.loader-text span {
    color: var(--light);
    font-weight: 300;
}

.loader-subtitle {
    color: var(--gray);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadePulse 2s infinite;
}

@keyframes fadePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ====== 3D PARTICLES CONTAINER ====== */
.hero-particle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* ====== FIX FOR MOBILE MENU DISPLAY ====== */
@media (max-width: 768px) {
    .nav-links li {
        margin-bottom: 5px;
    }
    
    .nav-links li a {
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 5px;
    }
    
    .nav-links li a:hover,
    .nav-links li a.active {
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        color: var(--dark);
    }
    
    /* Ensure all menu items are visible */
    .nav-links.show {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* ====== FIX FOR HERO CONTENT ON MOBILE ====== */
@media (max-width: 768px) {
    .hero-content {
        padding: 30px 15px;
    }
    
    .hero-badge {
        flex-wrap: wrap;
        justify-content: center;
        padding: 8px 15px;
        margin-bottom: 20px;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
}

/* ====== SCROLLBAR STYLING ====== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}
/* ====== PARTICLES BACKGROUND ====== */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 1;
}

.hero-particle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Ensure hero content is above particles */
.hero-content {
    position: relative;
    z-index: 3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 2;
}