:root {
    --bg: #0c0a09;
    --panel: #171412;
    --soft: #efe6d8;
    --gold: #d4af37;
    --text: #f8f5f0;
    --muted: #b5aa98;
    --line: rgba(255,255,255,0.08);
    --accent: #8f6a2d;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #0c0a09 0%, #15110e 100%);
    color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
    position: sticky; top: 0; z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(12, 10, 9, 0.85);
    border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; gap: 20px; }
.logo-wrap { display: flex; align-items: center; gap: 14px; }
.logo-wrap h1, .logo-wrap p { margin: 0; }
.logo-wrap h1 { font-family: 'Cormorant Garamond', serif; font-size: 32px; }
.logo-wrap p { font-size: 13px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.logo-mark {
    width: 52px; height: 52px; border-radius: 50%;
    display: grid; place-items: center;
    background: radial-gradient(circle at top, #f1d77a, #8c6825);
    color: #150f05; font-weight: 800;
}
nav { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
nav a { color: var(--soft); opacity: 0.9; }
.admin-link { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; }
.hero-section { padding: 96px 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: 28px; align-items: stretch; }
.hero-section h2, .page-banner h2, .section h3, .details-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 74px);
    line-height: 0.95;
    margin: 12px 0 18px;
}
.hero-section p, .page-banner p, .watch-card p, .details-content p, .contact-card p { color: var(--muted); line-height: 1.8; }
.eyebrow {
    display: inline-block; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; font-size: 12px;
    padding: 8px 12px; border: 1px solid rgba(212,175,55,0.25); border-radius: 999px;
}
.hero-card, .watch-card, .contact-card, .details-image, .details-content {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
}
.hero-card { padding: 32px; display: flex; flex-direction: column; justify-content: center; min-height: 380px; }
.hero-badge {
    display: inline-flex; width: fit-content; margin-bottom: 22px;
    background: rgba(212,175,55,0.16); color: #f8e7b0; padding: 10px 14px; border-radius: 999px;
}
.hero-card ul, .detail-list { margin: 0; padding-left: 20px; color: var(--soft); line-height: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
    display: inline-flex; justify-content: center; align-items: center; gap: 10px;
    padding: 14px 22px; border-radius: 999px; font-weight: 700; transition: 0.25s ease;
}
.btn-primary { background: linear-gradient(135deg, #dfbd55, #a67923); color: #130d05; }
.btn-outline { border: 1px solid rgba(255,255,255,0.14); }
.btn-secondary { background: rgba(255,255,255,0.06); }
.btn:hover { transform: translateY(-2px); }
.info-strip { padding-bottom: 30px; }
.info-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.info-grid > div, .page-banner, .dark-panel {
    background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 24px;
}
.info-grid > div { padding: 24px; }
.info-grid strong { display: block; font-size: 28px; margin-bottom: 8px; color: var(--gold); }
.info-grid span { color: var(--muted); }
.section { padding: 70px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 26px; }
.section-heading h3 { font-size: 54px; margin: 10px 0 0; }
.text-link { color: #f0d78a; }
.watch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.watch-card img { height: 280px; object-fit: cover; width: 100%; }
.watch-card-body { padding: 22px; }
.watch-card h4 { margin: 10px 0 10px; font-size: 24px; font-family: 'Cormorant Garamond', serif; }
.watch-category {
    display: inline-block; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: #f5dea0;
}
.price-row { display: flex; align-items: center; gap: 12px; margin: 18px 0 20px; }
.price-row strong { color: var(--gold); font-size: 24px; }
.price-row span { text-decoration: line-through; color: var(--muted); }
.page-banner, .dark-panel { padding: 34px; }
.small-banner h2 { font-size: 54px; }
.two-col, .contact-grid, .details-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.details-content { padding: 34px; }
.details-image img { width: 100%; height: 100%; object-fit: cover; min-height: 520px; }
.large strong { font-size: 34px; }
.site-footer { background: #090706; border-top: 1px solid var(--line); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 28px; padding: 48px 0 28px; }
.footer-grid p { color: var(--muted); line-height: 1.8; }
.footer-bottom {
    padding: 18px 0 26px; display: flex; justify-content: space-between; gap: 16px;
    border-top: 1px solid var(--line); color: var(--muted); font-size: 14px;
}
.alert {
    background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.35); padding: 12px 14px;
    color: #fbe9aa; border-radius: 14px; margin-bottom: 18px;
}
/* ===== FINAL FULLSCREEN POPUP FIX ===== */

/* Overlay */
.popup-overlay {
    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100dvh; /* mobile fix */

    display: none;

    background: rgba(0,0,0,0.95);
    z-index: 999999;

    /* IMPORTANT FIX */
    display: flex;
    align-items: stretch;   /* 🔥 FIX */
    justify-content: stretch; /* 🔥 FIX */

    margin: 0;
    padding: 0;
}

.popup-overlay.active {
    display: flex;
}

/* Content */
.popup-content.full-screen {
    width: 100%;
    height: 100%;

    min-width: 100vw;
    min-height: 100dvh;

    margin: 0;
    padding: 0;
    border: 0;

    background: #000;
    overflow: hidden;

    display: block;
}

/* Image FULL COVER */
.popup-content.full-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* HTML Content */
.popup-html-wrap {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
    text-align: center;

    background: linear-gradient(135deg, #1b1510, #0a0908);
}

/* HIDE CLOSE BUTTON */
.popup-close {
    display: none !important;
}

/* FULL LINK */
.popup-link {
    width: 100%;
    height: 100%;
    display: block;
}