/* RESET & BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Lato', sans-serif;
    background-color: #FDFBF7; /* Warm off-white */
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, .product-title, .modal-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.logo-michele, .signature-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }

/* UTILS */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}
.btn-primary {
    background-color: #1A1A1A;
    color: #FFFFFF;
}
.btn-primary:hover {
    background-color: #D4AF37; /* Gold */
    color: #1A1A1A;
}
.btn-outline {
    background-color: transparent;
    color: #1A1A1A;
    border-color: #1A1A1A;
}
.btn-outline:hover {
    background-color: #1A1A1A;
    color: #FFFFFF;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1A1A1A;
}

/* HEADER */
.main-header {
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.logo-sub { font-size: 0.7rem; font-weight: 300; letter-spacing: 3px; text-transform: uppercase; color: #666; }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: #555; }
.nav-links a:hover { color: #D4AF37; }
.lang-switcher { font-size: 0.85rem; font-weight: 700; color: #999; }
.lang-switcher a { color: #999; }
.lang-switcher a.active { color: #1A1A1A; }
.lang-switcher .separator { margin: 0 5px; font-weight: 300; }

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    margin-top: 0;
}
.hero-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}
.hero-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: -1;
}
.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
    animation: fadeIn 1.5s ease;
}
.hero-content h1 { font-size: 4rem; margin-bottom: 20px; letter-spacing: 2px; }
.hero-content p { font-size: 1.2rem; font-weight: 300; margin-bottom: 40px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* CTA BOXES */
.cta-boxes {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}
.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cta-box {
    background: #FFFFFF;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.cta-box:hover { transform: translateY(-10px); }
.cta-box.primary-cta {
    background: #F8F5F0;
    border: 1px solid #EAE0D5;
}
.cta-box h3 { font-size: 1.5rem; margin-bottom: 15px; color: #1A1A1A; }
.cta-box p { font-size: 0.95rem; color: #666; margin-bottom: 25px; }

/* VIDEO SECTION */
.video-section {
    padding: 100px 20px;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

/* PRODUCTS GRID */
.products-section {
    padding: 80px 20px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}
.product-card {
    text-align: center;
    group: hover;
}
.product-image-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: #F0EBE1;
    aspect-ratio: 1 / 1;
    margin-bottom: 20px;
}
.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.img-hover {
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
}
.product-image-wrapper:hover .img-main { opacity: 0; transform: scale(1.05); }
.product-image-wrapper:hover .img-hover { opacity: 1; transform: scale(1.05); }
.product-category {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 5px;
}
.product-title { font-size: 1.2rem; margin-bottom: 10px; color: #1A1A1A; }
.product-price { font-size: 1.1rem; color: #666; margin-bottom: 20px; }
.btn-buy { width: 100%; padding: 10px; font-size: 0.85rem; background: #fff; border: 1px solid #1a1a1a; color: #1a1a1a; }
.btn-buy:hover { background: #1a1a1a; color: #fff; }

/* TESTIMONIALS CAROUSEL */
.testimonials-section {
    background-color: #F8F5F0;
    padding: 100px 20px;
    text-align: center;
}
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.testimonial-card {
    min-width: 100%;
    padding: 0 40px;
}
.stars { color: #D4AF37; font-size: 1.2rem; margin-bottom: 20px; }
.testimonial-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-style: italic; color: #333; margin-bottom: 30px; }
.testimonial-author { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: #999; }
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #1A1A1A;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.carousel-btn:hover { opacity: 1; }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

/* FOOTER */
.main-footer {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
}
.footer-brand { margin-bottom: 30px; }
.footer-logo { font-size: 3rem; margin-bottom: 10px; color: #FFF; }
.footer-brand p { font-family: 'Playfair Display', serif; font-style: italic; color: #999; }
.footer-social { margin-bottom: 30px; display: flex; justify-content: center; gap: 20px; }
.social-icon { color: #FFF; transition: color 0.3s; }
.social-icon:hover { color: #D4AF37; }
.footer-copy { font-size: 0.8rem; color: #666; }

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.modal.active { display: flex; }
.modal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}
.modal-content {
    position: relative;
    background: #FFFFFF;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    animation: modalFadeIn 0.4s ease;
}
@keyframes modalFadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

.modal-body {
    display: flex;
    flex-wrap: wrap;
}
.modal-close-btn {
    position: absolute;
    top: 20px; right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #1A1A1A;
    cursor: pointer;
    z-index: 10;
}
.modal-image-container {
    flex: 1 1 50%;
    background: #F0EBE1;
    min-height: 400px;
}
.modal-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-details {
    flex: 1 1 50%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.modal-category { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: #999; margin-bottom: 10px; }
.modal-title { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.1; }
.modal-price { font-size: 1.5rem; color: #333; margin-bottom: 30px; font-family: 'Lato', sans-serif; }
.modal-description { color: #666; margin-bottom: 40px; font-size: 1.05rem; }
.btn-modal-buy { width: 100%; padding: 15px; font-size: 1rem; margin-bottom: 30px; }
.modal-perks { border-top: 1px solid #EEE; padding-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.modal-perks span { font-size: 0.85rem; color: #888; display: flex; align-items: center; gap: 10px; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .cta-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 3rem; }
}
@media (max-width: 768px) {
    .modal-body { flex-direction: column; }
    .modal-image-container, .modal-details { flex: 1 1 100%; }
    .modal-details { padding: 40px 30px; }
    .nav-links { display: none; } /* Simplified for mock */
}
