/* assets/css/style.css */

/* ===== VARIABLES ===== */
:root {
    --gold: #D4AF37;
    --dark-gold: #B8860B;
    --light-gold: #F5E8C8;
    --dark-maroon: #800020;
    --light-maroon: #A52A55;
    --pastel-cream: #F9F5F0;
    --dark-bg: #4d1026;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--pastel-cream);
    background-color: var(--dark-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    color: var(--pastel-cream);
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border: 2px solid transparent;
    border-radius: 0;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    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;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--dark-bg);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--pastel-cream);
    border-color: var(--pastel-cream);
    box-shadow: 0 5px 15px rgba(249, 245, 240, 0.2);
}

.btn-secondary:hover {
    background: var(--pastel-cream);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 245, 240, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--pastel-cream);
    border-color: var(--pastel-cream);
    padding: 12px 28px;
}

.btn-outline:hover {
    background: var(--pastel-cream);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.diamond-loader {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.diamond {
    width: 25px;
    height: 25px;
    background: var(--gold);
    transform: rotate(45deg);
    animation: diamondPulse 1.8s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.diamond:nth-child(2) {
    animation-delay: 0.2s;
}

.diamond:nth-child(3) {
    animation-delay: 0.4s;
}

.diamond:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes diamondPulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
        opacity: 1;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        transform: rotate(45deg) scale(0.7);
        opacity: 0.6;
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    }
}

.brand-name {
    font-family: 'Luxurious Script', cursive;
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.tagline {
    font-family: 'Cinzel Decorative', cursive;
    color: var(--pastel-cream);
    letter-spacing: 4px;
    font-size: 1rem;
}

/* ===== HEADER ===== */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(77, 16, 38, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    width: 25px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--pastel-cream);
    margin-bottom: 5px;
    transition: all 0.4s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 130px;
    width: auto;
}

.logo-text {
    font-family: 'Luxurious Script', cursive;
    font-size: 1.8rem;
    color: var(--gold);
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.header-center {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-family: 'Cinzel', serif;
    color: var(--pastel-cream);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 8px 0;
    transition: all 0.4s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.header-right {
    display: flex;
    align-items: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-actions a {
    color: var(--pastel-cream);
    font-size: 1.2rem;
    position: relative;
    transition: all 0.4s ease;
}

.header-actions a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.wishlist-count,
.bag-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--dark-bg);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(77, 16, 38, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 90%;
    max-width: 700px;
    text-align: center;
}

.search-header {
    margin-bottom: 50px;
}

.search-header h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--gold);
    font-family: 'Cinzel Decorative', cursive;
}

.close-search {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--pastel-cream);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.4s ease;
}

.close-search:hover {
    color: var(--gold);
    transform: rotate(90deg) scale(1.1);
}

.search-form {
    position: relative;
    margin-bottom: 50px;
}

.search-input {
    width: 100%;
    padding: 18px 70px 18px 25px;
    background: rgba(249, 245, 240, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--pastel-cream);
    font-size: 1.2rem;
    border-radius: 0;
    transition: all 0.4s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(249, 245, 240, 0.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.search-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 70px;
    background: var(--gold);
    border: none;
    color: var(--dark-bg);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.4s ease;
}

.search-btn:hover {
    background: var(--dark-gold);
    width: 80px;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.suggestion-tags a {
    padding: 10px 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--pastel-cream);
    border-radius: 30px;
    font-size: 0.95rem;
    transition: all 0.4s ease;
}

.suggestion-tags a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100%;
    background: var(--dark-bg);
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1200;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-mobile-nav {
    background: none;
    border: none;
    color: var(--pastel-cream);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.4s ease;
}

.close-mobile-nav:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.mobile-nav-menu {
    padding: 25px;
}

.mobile-nav-menu ul {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: block;
    padding: 18px 0;
    color: var(--pastel-cream);
    font-family: 'Cinzel', serif;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--gold);
    padding-left: 15px;
    border-bottom-color: var(--gold);
}

.nav-divider {
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
    margin: 25px 0;
}

/* ===== HERO SECTION ===== */
.luxury-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(77, 16, 38, 0.8) 0%, rgba(77, 16, 38, 0.5) 100%);
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--pastel-cream);
    z-index: 2;
}

.content-inner {
    max-width: 850px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active .content-inner {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    font-family: 'Luxurious Script', cursive;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.slide-title {
    font-size: 5rem;
    margin-bottom: 30px;
    font-family: 'Cinzel Decorative', cursive;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slide-text {
    font-size: 1.3rem;
    margin-bottom: 50px;
    line-height: 1.8;
}

.slide-actions .btn {
    margin: 0 15px;
}

.hero-slider-nav {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: rgba(249, 245, 240, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--pastel-cream);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--gold);
    color: var(--dark-bg);
    border-color: var(--gold);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
    margin: 0 40px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(249, 245, 240, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--pastel-cream);
    z-index: 10;
}

.hero-scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 3px;
    opacity: 0.8;
}

.scroll-arrow {
    animation: bounce 2.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    60% {
        transform: translateY(-6px);
    }
}

/* ===== PREMIUM FEATURES ===== */
.premium-features {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #5a152f 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 50px 25px;
    background: rgba(249, 245, 240, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.8s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.2rem;
    color: var(--dark-bg);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--pastel-cream);
    font-family: 'Cinzel Decorative', cursive;
}

.feature-card p {
    color: var(--light-gold);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== GOLD PRICES SECTION ===== */
.gold-prices-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #5a152f 0%, var(--dark-bg) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-family: 'Cinzel Decorative', cursive;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.section-subtitle {
    color: var(--light-gold);
    font-size: 1.2rem;
    margin-top: 25px;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.price-card {
    background: rgba(249, 245, 240, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.price-card:hover::before {
    transform: scaleX(1);
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.price-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.metal-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    transition: all 0.4s ease;
}

.price-card:hover .metal-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.price-card h3 {
    font-size: 1.7rem;
    margin: 0;
    font-family: 'Cinzel Decorative', cursive;
}

.price-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pastel-cream);
    font-family: 'Cinzel', serif;
}

.change {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
}

.change.positive {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.change.negative {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.price-unit {
    color: var(--light-gold);
    font-size: 1rem;
}

/* ===== PARALLAX SECTIONS ===== */
.parallax-section {
    position: relative;
    overflow: hidden;
    padding: 150px 0;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transform: translateZ(0);
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(77, 16, 38, 0.85) 0%, rgba(77, 16, 38, 0.7) 100%);
}

.parallax-section .container {
    position: relative;
    z-index: 2;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 150px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
}

.about-content .section-header {
    text-align: left;
    margin-bottom: 50px;
}

.about-content .section-title {
    display: block;
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--light-gold);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin: 50px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Cinzel Decorative', cursive;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--light-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
}

/* ===== GRADIENT BACKGROUNDS ===== */
.gradient-bg {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--light-maroon) 50%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, var(--light-maroon) 0%, var(--dark-bg) 50%, var(--light-maroon) 100%);
    position: relative;
    overflow: hidden;
}

.gradient-bg-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(245, 232, 200, 0.1) 0%, transparent 50%);
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #5a152f 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.category-card {
    background: rgba(249, 245, 240, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.category-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.category-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover .category-image img {
    transform: scale(1.15);
}

.category-content {
    padding: 30px;
    text-align: center;
}

.category-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--pastel-cream);
    font-family: 'Cinzel Decorative', cursive;
}

.category-content p {
    color: var(--light-gold);
    margin-bottom: 20px;
    font-size: 1rem;
}

.category-count {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    font-size: 0.9rem;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* ===== COLLECTIONS SECTION ===== */
.collections-section {
    padding: 120px 0;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 10px;
}

.collection-card {
    background: rgba(249, 245, 240, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.collection-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.collection-image {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-card:hover .collection-image img {
    transform: scale(1.15);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(77, 16, 38, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-content {
    padding: 35px;
    text-align: center;
}

.collection-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--pastel-cream);
    font-family: 'Cinzel Decorative', cursive;
}

.collection-content p {
    color: var(--light-gold);
    margin-bottom: 25px;
    line-height: 1.7;
}

.collection-price {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 600;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #5a152f 0%, var(--dark-bg) 100%);
}

.products-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--pastel-cream);
    font-family: 'Cinzel', serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold);
    color: var(--dark-bg);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.product-card {
    background: rgba(249, 245, 240, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.product-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image img {
    transform: scale(1.15);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 15px;
    background: var(--gold);
    color: var(--dark-bg);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-content {
    padding: 25px;
}

.product-category {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--pastel-cream);
}

.product-price {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
}

.section-footer {
    text-align: center;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 150px 0;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    text-align: center;
    padding: 40px;
}

.testimonial-content {
    background: rgba(249, 245, 240, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 40px;
    position: relative;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    color: var(--gold);
    font-family: 'Luxurious Script', cursive;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--light-gold);
    font-style: italic;
    margin-bottom: 0;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--pastel-cream);
}

.author-info p {
    color: var(--light-gold);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 120px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-item {
    background: rgba(249, 245, 240, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.4s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--pastel-cream);
}

.faq-toggle {
    color: var(--gold);
    transition: all 0.4s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--light-gold);
    margin: 0;
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 150px 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--pastel-cream);
    font-family: 'Cinzel Decorative', cursive;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--light-gold);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-actions .btn {
    margin: 0 15px;
}

/* ===== FOOTER ===== */
.luxury-footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #3a0c1d 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--pastel-cream);
    position: relative;
    font-family: 'Cinzel Decorative', cursive;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    height: 120px;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
}

.footer-description {
    color: var(--light-gold);
    margin-bottom: 30px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(249, 245, 240, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pastel-cream);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--light-gold);
    transition: all 0.4s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--light-gold);
}

.footer-contact i {
    color: var(--gold);
    margin-top: 3px;
    min-width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--light-gold);
    font-size: 0.9rem;
}

/* ===== PRODUCT MODAL ===== */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1300;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(77, 16, 38, 0.95);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--dark-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--pastel-cream);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3;
    transition: all 0.4s ease;
}

.modal-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .hero-slide .slide-title {
        font-size: 4rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content .section-header {
        text-align: center;
    }
    
    .about-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .header-center {
        display: none;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero-slide .slide-title {
        font-size: 3rem;
    }
    
    .hero-slide .slide-text {
        font-size: 1.1rem;
    }
    
    .slide-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .slide-actions .btn {
        margin: 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-container {
        padding: 15px;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .hero-slide .slide-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .prices-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-actions .btn {
        margin: 0;
    }
    
       .mobile-nav {
        width: 280px;
        z-index: 11111111;
        height: 100vh;
    }

}