/* ===== VARIABLES ===== */
:root {
    --black: #0a0a0a;
    --black-light: #111111;
    --black-lighter: #1a1a1a;
    --gold: #c9a962;
    --gold-light: #dfc180;
    --gold-dark: #a88a40;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #cccccc;
    --transition: all 0.3s ease;
    --shadow: 0 10px 40px rgba(0,0,0,0.5);
    --shadow-gold: 0 0 30px rgba(201, 169, 98, 0.3);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== PARTICLES BACKGROUND ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ===== FLORAL PATTERN OVERLAY ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(201, 169, 98, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 169, 98, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(201, 169, 98, 0.02) 0%, transparent 30%),
        radial-gradient(circle at 60% 60%, rgba(201, 169, 98, 0.02) 0%, transparent 30%);
    pointer-events: none;
    z-index: 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.gold {
    color: var(--gold);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

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

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--white);
    transition: var(--transition);
}

.cart-icon:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 999;
}

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

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--gold);
    padding-left: 10px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(10,10,10,0.95) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="flowers" patternUnits="userSpaceOnUse" width="50" height="50"><circle cx="25" cy="25" r="20" fill="none" stroke="%23c9a962" stroke-width="0.3" opacity="0.1"/><circle cx="25" cy="25" r="10" fill="none" stroke="%23c9a962" stroke-width="0.2" opacity="0.1"/><circle cx="25" cy="25" r="5" fill="%23c9a962" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23flowers)"/></svg>');
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, transparent 0%, var(--black) 70%);
    animation: rotate 60s linear infinite;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.2s both;
}

.title-word {
    display: inline-block;
    position: relative;
    background: linear-gradient(
        90deg,
        var(--white) 0%,
        var(--white) 40%,
        var(--gold) 50%,
        var(--white) 60%,
        var(--white) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

.title-word:nth-child(3) {
    animation-delay: 0.5s;
}

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

.title-line {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2em;
    background: linear-gradient(
        90deg,
        var(--gold) 0%,
        var(--gold-light) 25%,
        #fff5d4 50%,
        var(--gold-light) 75%,
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 2s ease-in-out infinite;
    text-shadow: none;
}

@keyframes goldShimmer {
    0%, 100% {
        background-position: 0% center;
        filter: drop-shadow(0 0 5px rgba(201, 169, 98, 0.5));
    }
    50% {
        background-position: 100% center;
        filter: drop-shadow(0 0 15px rgba(201, 169, 98, 0.8));
    }
}

.title-elegant {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
}

.title-separator {
    color: var(--gold);
    margin: 0 10px;
    font-size: 0.5em;
    vertical-align: middle;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    color: var(--gold);
    letter-spacing: 5px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
    font-size: 1rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.8s both;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: var(--transition);
    z-index: -1;
}

.hero-btn:hover {
    color: var(--black);
}

.hero-btn:hover::before {
    left: 0;
}

.hero-btn i {
    transition: var(--transition);
}

.hero-btn:hover i {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease 1s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

.scroll-indicator p {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--black), var(--black-light));
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(201, 169, 98, 0.05);
    border-color: rgba(201, 169, 98, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--black);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 25px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.title-decoration .line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.title-decoration i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ===== COLLECTION SECTION ===== */
.collection {
    padding: 100px 20px;
    background: var(--black-light);
    position: relative;
    z-index: 1;
}

.collection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(201, 169, 98, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(201, 169, 98, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: var(--black-lighter);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(201, 169, 98, 0.3);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-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: var(--transition);
}

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

.quick-view {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    transform: scale(0);
}

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

.quick-view:hover {
    background: var(--white);
    transform: scale(1.1) !important;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}

.product-badge.new {
    background: #4CAF50;
    color: white;
}

.product-badge.hot {
    background: #ff4757;
    color: white;
}

.product-badge.premium {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--white);
}

.product-description {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
}

.add-to-cart {
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart:hover {
    background: var(--gold);
    color: var(--black);
    transform: rotate(90deg);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 20px;
    background: var(--black);
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-badge {
    margin-bottom: 20px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-text {
    font-size: 1rem;
    color: var(--gray-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--gold);
}

.about-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--white);
}

.about-feature i {
    color: var(--gold);
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    padding: 30px;
}

.about-img-wrapper img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--gold);
    border-radius: 10px;
    transform: translate(20px, 20px);
    opacity: 0.3;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 20px;
    background: var(--black-light);
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--black-lighter);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-5px);
}

.stars {
    margin-bottom: 20px;
    color: var(--gold);
}

.stars i {
    margin-right: 3px;
}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
}

.author-info h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 20px;
    background: linear-gradient(to bottom, var(--black), var(--black-light));
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-content {
    margin-top: 40px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: #25D366;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.contact-info {
    margin-top: 30px;
    font-size: 1.1rem;
    color: var(--gray-light);
}

.contact-info i {
    color: var(--gold);
    margin-right: 10px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray);
    font-style: italic;
}

.footer-links h4,
.footer-social h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-links a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    padding: 8px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.made-with {
    margin-top: 10px;
}

.made-with i {
    color: #ff4757;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: var(--black-lighter);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: -10px 0 50px rgba(0,0,0,0.5);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 25px;
    background: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cart-header h3 {
    font-size: 1.3rem;
    color: var(--white);
}

.cart-header h3 i {
    color: var(--gold);
    margin-right: 10px;
}

.close-cart {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

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

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

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

.cart-item-info h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 5px;
}

.cart-item-info p {
    color: var(--gold);
    font-weight: 600;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    align-self: center;
}

.cart-item-remove:hover {
    color: #ff4757;
}

.cart-empty {
    text-align: center;
    padding: 40px;
    color: var(--gray);
}

.cart-empty i {
    font-size: 4rem;
    color: rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.cart-footer {
    padding: 25px;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cart-total span:last-child {
    color: var(--gold);
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.checkout-btn:hover {
    background: #128C7E;
    transform: scale(1.02);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--black-lighter);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--gold);
    color: var(--black);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image {
    aspect-ratio: 1;
    overflow: hidden;
}

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

.modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.modal-description {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.modal-price {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 30px;
}

.modal-add-btn {
    padding: 18px 40px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.modal-add-btn:hover {
    background: var(--gold-light);
    transform: scale(1.02);
}

/* ===== NOTIFICATION ===== */
.notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--gold);
    color: var(--black);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    z-index: 4000;
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(201, 169, 98, 0.4);
}

.notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .about-image {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .navbar.scrolled .logo-img {
        height: 40px;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-image {
        max-height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .title-separator {
        display: none;
    }
    
    .hero-title {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
    
    .title-word {
        display: block;
        width: 100%;
        text-align: center;
        white-space: nowrap;
    }
    
    .title-line {
        display: inline;
    }
    
    .title-elegant {
        display: inline;
        letter-spacing: 8px;
    }
    
    .hero-btn {
        padding: 15px 30px;
        font-size: 0.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 100%;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .logo-img {
        height: 38px;
        max-width: 150px;
        object-fit: contain;
    }
    
    .navbar.scrolled .logo-img {
        height: 35px;
    }
    
    .nav-actions {
        gap: 10px;
    }
    
    .nav-actions a,
    .nav-actions button {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        letter-spacing: 2px;
        font-size: 1rem;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}
