@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --ivory-white: #faf8f5;
    --warm-beige: #efe9e1;
    --mocha-brown: #5d4a44;
    --mocha-dark: #3a2e2a;
    --soft-gold: #c3a479;
    --text-main: #4a4a4a;
    --text-muted: #8c8c8c;
    --shadow-soft: 0 10px 30px rgba(93, 74, 68, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-main);
    background-color: var(--ivory-white);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, .editorial-heading {
    font-family: 'Cormorant Garamond', serif;
    color: var(--mocha-dark);
    font-weight: 400;
}

/* Disclosure */
.disclosure-bar {
    background: var(--warm-beige);
    color: var(--mocha-dark);
    font-size: 12px;
    text-align: center;
    padding: 10px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(195,164,121,0.3);
}

/* Header */
header {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.announcement {
    background: var(--mocha-dark);
    color: var(--ivory-white);
    text-align: center;
    font-size: 11px;
    padding: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--mocha-dark);
    text-decoration: none;
    letter-spacing: 2px;
}
.nav-links { display: flex; gap: 35px; list-style: none; }
.nav-links a { color: var(--text-main); text-decoration: none; font-size: 15px; transition: color 0.3s; }
.nav-links a:hover { color: var(--soft-gold); }
.nav-links a.btn-primary { color: var(--ivory-white) !important; }
.hamburger { display: none; cursor: pointer; color: var(--mocha-dark); font-size: 24px; }

/* Preloader */
#preloader {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: var(--warm-beige); z-index: 9999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: opacity 1s ease-in-out;
}
.spinner-boutique {
    width: 60px; height: 60px;
    border: 2px solid transparent;
    border-top-color: var(--soft-gold);
    border-bottom-color: var(--mocha-brown);
    border-radius: 50%;
    animation: spinSoft 1.5s linear infinite;
}
@keyframes spinSoft { 100% { transform: rotate(360deg); } }
.loader-text { font-family: 'Cormorant Garamond', serif; color: var(--mocha-dark); margin-top: 20px; font-size: 20px; font-style: italic; }

/* Buttons */
.btn { display: inline-block; padding: 15px 40px; font-family: 'Lato', sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; text-decoration: none; transition: all 0.4s; border-radius: 4px; border: none; cursor: pointer; }
.btn-primary { background: var(--mocha-dark); color: var(--ivory-white); }
.btn-primary:hover { background: var(--mocha-brown); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-outline { border: 1px solid var(--mocha-brown); color: var(--mocha-brown); }
.btn-outline:hover { background: var(--warm-beige); }
.btn-full { width: 100%; text-align: center; }

/* Grid Fix */
.grid-2, .grid-3, .grid-4 { width: 100%; display: grid; gap: 40px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 > *, .grid-3 > *, .grid-4 > * { min-width: 0; word-wrap: break-word; }

/* Layouts */
.section { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.section-alt { background: var(--warm-beige); }

/* Hero */
.hero { display: flex; align-items: center; min-height: 80vh; padding: 0 40px; background: linear-gradient(135deg, var(--ivory-white) 0%, var(--warm-beige) 100%); }
.hero-content { max-width: 600px; }
.hero-content h1 { font-size: 64px; line-height: 1.1; margin-bottom: 25px; }
.hero-content p { font-size: 18px; color: var(--text-main); margin-bottom: 40px; }
.hero-image { width: 100%; height: 70vh; object-fit: cover; border-radius: 8px 8px 100px 8px; box-shadow: var(--shadow-soft); }

/* Float Cards / Benefits */
.float-card { background: var(--ivory-white); padding: 50px 40px; border-radius: 8px; box-shadow: var(--shadow-soft); text-align: center; transition: 0.4s; border-bottom: 3px solid transparent; }
.float-card:hover { transform: translateY(-10px); border-bottom: 3px solid var(--soft-gold); }
.float-card h3 { font-size: 26px; margin-bottom: 15px; }

/* Editorial Image Sections */
.image-text-block { display: flex; align-items: center; gap: 60px; margin: 80px 0; }
.image-text-block img { width: 50%; border-radius: 8px; box-shadow: var(--shadow-soft); }
.image-text-content { width: 50%; }

/* Product Galleries (Order.php) */
.gallery-main { width: 100%; height: 600px; object-fit: cover; border-radius: 8px; margin-bottom: 15px; }
.gallery-thumbs { display: flex; gap: 15px; flex-wrap: wrap; }
.gallery-thumbs img { width: calc(20% - 12px); height: 100px; object-fit: cover; cursor: pointer; border-radius: 4px; opacity: 0.5; transition: 0.3s; }
.gallery-thumbs img:hover, .gallery-thumbs img.active { opacity: 1; box-shadow: 0 0 0 2px var(--soft-gold); }

/* Sticky Order Card */
.order-card { background: var(--ivory-white); padding: 50px; border-radius: 8px; box-shadow: var(--shadow-soft); position: sticky; top: 120px; }
.price-tag { font-family: 'Lato', sans-serif; font-size: 36px; color: var(--mocha-dark); font-weight: 700; margin: 20px 0; }

/* Trust Badges */
.trust-badges { display: flex; justify-content: center; gap: 40px; padding: 40px 0; flex-wrap: wrap; }
.badge { text-align: center; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--mocha-brown); }

/* FAQ */
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.05); }
.faq-q { padding: 25px 0; font-family: 'Cormorant Garamond', serif; font-size: 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--mocha-dark); }
.faq-a { max-height: 0; overflow: hidden; transition: 0.4s ease; color: var(--text-main); }
.faq-a.open { max-height: 400px; padding-bottom: 25px; }

/* Cookie Popup */
.cookie-popup { position: fixed; bottom: -150%; left: 50%; transform: translateX(-50%); width: 90%; max-width: 700px; background: var(--ivory-white); box-shadow: var(--shadow-soft); border-radius: 12px; padding: 35px; z-index: 10000; transition: bottom 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55); text-align: center; border: 1px solid rgba(0,0,0,0.05); }
.cookie-popup.active { bottom: 30px; }
.cookie-text { font-size: 14px; color: var(--text-main); margin-bottom: 20px; }
.cookie-btns { display: flex; justify-content: center; gap: 15px; }

/* Footer */
footer { background: var(--mocha-dark); padding: 80px 40px 40px; color: var(--warm-beige); }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--ivory-white); text-decoration: none; display: block; margin-bottom: 25px; }
.footer-links h4 { font-family: 'Lato', sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; color: var(--soft-gold); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--warm-beige); text-decoration: none; font-size: 14px; transition: 0.3s; opacity: 0.8; }
.footer-links a:hover { opacity: 1; color: var(--ivory-white); }

/* Review Magazine Style */
.magazine-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.magazine-title { font-size: 56px; margin-bottom: 20px; }
.magazine-meta { font-family: 'Lato', sans-serif; color: var(--mocha-brown); text-transform: uppercase; letter-spacing: 2px; font-size: 13px; }
.review-content { font-size: 18px; color: var(--text-main); line-height: 1.8; max-width: 900px; margin: 0 auto; }
.review-content h2 { font-size: 36px; margin: 50px 0 20px; }

/* Mobile */
@media (max-width: 992px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--ivory-white); padding: 40px; box-shadow: var(--shadow-soft); }
    .nav-links.show { display: flex; }
    .hamburger { display: block; }
    .hero { flex-direction: column; padding: 60px 20px; text-align: center; }
    .hero-content { margin-bottom: 40px; }
    .hero-image { height: 400px; border-radius: 8px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .image-text-block { flex-direction: column; }
    .image-text-block img, .image-text-content { width: 100%; }
    .magazine-title { font-size: 40px; }
    .section { padding: 60px 20px; }
    .cookie-popup { padding: 20px; }
    .gallery-thumbs img { width: calc(33% - 10px); }
}
