@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --black-matte: #1a1a1a;
    --brown-dark: #2c1e16;
    --gold: #c5a059;
    --gold-hover: #d4b572;
    --champagne: #f4ebd9;
    --text-light: #e0e0e0;
    --text-muted: #888888;
    --white: #ffffff;
    --shadow-lux: 0 15px 40px rgba(0,0,0,0.5);
    --border-lux: rgba(197, 160, 89, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    background-color: var(--black-matte);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, .editorial-heading {
    font-family: 'Playfair Display', serif;
    color: var(--champagne);
    font-weight: 600;
}

/* Disclosure */
.disclosure-bar {
    background: #000;
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    text-align: center;
    padding: 8px;
    letter-spacing: 2px;
}

/* Header */
header {
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-lux);
}
.announcement {
    background: var(--brown-dark);
    color: var(--gold);
    text-align: center;
    font-size: 12px;
    padding: 10px;
    letter-spacing: 1px;
    font-weight: 500;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 4px;
}
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { color: var(--text-light); text-decoration: none; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.btn-primary { color: var(--black-matte) !important; }
.hamburger { display: none; cursor: pointer; color: var(--gold); font-size: 24px; }

/* Preloader */
#preloader {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: var(--black-matte); z-index: 9999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: opacity 0.8s cubic-bezier(0.8, 0, 0.2, 1);
}
.loader-bar { width: 250px; height: 2px; background: rgba(197,160,89,0.2); margin-top: 20px; overflow: hidden; }
.loader-progress { width: 0%; height: 100%; background: var(--gold); animation: load 2.5s ease-in-out forwards; }
@keyframes load { 0% { width: 0%; } 100% { width: 100%; } }
.loader-text { font-family: 'Playfair Display', serif; color: var(--gold); letter-spacing: 4px; font-size: 14px; text-transform: uppercase; }

/* Buttons */
.btn { display: inline-block; padding: 18px 45px; font-family: 'Montserrat', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 3px; text-decoration: none; transition: all 0.4s; cursor: pointer; border: none; }
.btn-primary { background: var(--gold); color: var(--black-matte); font-weight: 600; }
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(197,160,89,0.2); }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black-matte); }
.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: 120px 40px; max-width: 1400px; margin: 0 auto; }
.section-dark { background: var(--brown-dark); }

/* Hero */
.hero { display: flex; align-items: center; min-height: 85vh; padding: 0 40px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, var(--black-matte) 0%, rgba(26,26,26,0.5) 100%), url('https://www.orciani.com/media/catalog/product/cache/1/image/9df78eab33525d08d6e5fb8d27136e95/2/6/26S-U08408--_BDP-JEA_00.jpg') center/cover; z-index: -1; opacity: 0.6; filter: grayscale(50%) sepia(20%); }
.hero-content { max-width: 700px; }
.hero-content h1 { font-size: 72px; line-height: 1.1; margin-bottom: 30px; }
.hero-content p { font-size: 18px; color: var(--champagne); margin-bottom: 40px; opacity: 0.8; }

/* Showcase / Benefits */
.showcase-img { width: 100%; height: 600px; object-fit: cover; filter: brightness(0.9); transition: 0.5s; }
.showcase-img:hover { filter: brightness(1.1); transform: scale(1.02); }
.benefit-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border-lux); padding: 50px; transition: 0.4s; }
.benefit-card:hover { border-color: var(--gold); transform: translateY(-10px); background: rgba(197,160,89,0.05); }
.benefit-card h3 { font-size: 24px; margin-bottom: 20px; }
.benefit-icon { font-size: 40px; color: var(--gold); margin-bottom: 20px; }

/* Editorial Image Sections */
.editorial-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin: 80px 0; }
.ed-img { width: 100%; object-fit: cover; }
.ed-main { height: 600px; }
.ed-sub { height: 290px; }

/* Product Galleries (Order.php) */
.gallery-main { width: 100%; height: 600px; object-fit: cover; margin-bottom: 20px; border: 1px solid var(--border-lux); }
.gallery-thumbs { display: flex; gap: 15px; }
.gallery-thumbs img { width: 100px; height: 100px; object-fit: cover; cursor: pointer; border: 1px solid transparent; opacity: 0.6; transition: 0.3s; }
.gallery-thumbs img:hover, .gallery-thumbs img.active { border-color: var(--gold); opacity: 1; }

/* Sticky Order Card */
.order-card { background: var(--brown-dark); padding: 50px; border: 1px solid var(--gold); position: sticky; top: 120px; }
.price-tag { font-family: 'Playfair Display', serif; font-size: 48px; color: var(--champagne); margin: 20px 0; }

/* Trust Badges */
.trust-badges { display: flex; justify-content: center; gap: 60px; padding: 60px 0; border-top: 1px solid var(--border-lux); border-bottom: 1px solid var(--border-lux); flex-wrap: wrap; }
.badge { text-align: center; color: var(--gold); font-family: 'Playfair Display', serif; font-size: 20px; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border-lux); }
.faq-q { padding: 30px 0; font-family: 'Playfair Display', serif; font-size: 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--champagne); }
.faq-a { max-height: 0; overflow: hidden; transition: 0.4s ease; color: var(--text-muted); }
.faq-a.open { max-height: 500px; padding-bottom: 30px; }

/* Cookie Popup */
.cookie-popup { position: fixed; bottom: -100%; left: 0; width: 100%; background: var(--brown-dark); border-top: 1px solid var(--gold); padding: 30px 40px; z-index: 10000; transition: bottom 0.6s cubic-bezier(0.2, 1, 0.3, 1); display: flex; justify-content: space-between; align-items: center; }
.cookie-popup.active { bottom: 0; }
.cookie-text { font-size: 13px; color: var(--text-light); max-width: 800px; }
.cookie-btns { display: flex; gap: 15px; }

/* Footer */
footer { background: #000; padding: 100px 40px 40px; border-top: 1px solid var(--border-lux); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--gold); letter-spacing: 5px; margin-bottom: 30px; display: block; }
.footer-links h4 { font-family: 'Montserrat', sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; color: var(--champagne); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* Review Magazine Style */
.magazine-header { text-align: center; max-width: 900px; margin: 0 auto 80px; }
.magazine-meta { color: var(--gold); text-transform: uppercase; letter-spacing: 3px; font-size: 12px; margin-bottom: 20px; }
.magazine-title { font-size: 64px; line-height: 1.1; margin-bottom: 30px; }
.drop-cap:first-letter { float: left; font-size: 80px; line-height: 60px; padding: 10px 15px 0 0; color: var(--gold); font-family: 'Playfair Display', serif; }

/* Mobile */
@media (max-width: 992px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--black-matte); padding: 40px; border-bottom: 1px solid var(--border-lux); }
    .nav-links.show { display: flex; }
    .hamburger { display: block; }
    .hero-content h1 { font-size: 48px; }
    .grid-2, .grid-3, .grid-4, .editorial-grid { grid-template-columns: 1fr; }
    .cookie-popup { flex-direction: column; text-align: center; gap: 20px; padding: 20px; }
    .magazine-title { font-size: 40px; }
    .section { padding: 60px 20px; }
}
