/* === PEPTIQUE — Warm Cream + Gold Luxury === */

:root {
    --cream: #f4ece1;
    --cream-light: #f9f4ee;
    --cream-dark: #ebe0d2;
    --gold: #b09468;
    --gold-light: #c4a87c;
    --gold-dark: #8c7450;
    --gold-muted: #a89070;
    --taupe: #7a6e60;
    --black: #1a1715;
    --dark: #2a2520;
    --dark-section: #1e1b18;
    --white: #ffffff;
    --text: #4a4540;
    --text-muted: #8a8278;
    --text-light: #a89e94;
    --border: #e0d8ce;
    --border-dark: #3a3530;
    --success: #6a9e6e;
    --danger: #c45a4a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* === NAV === */
#nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(244, 236, 225, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s ease;
}

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

.logo-img { height: 50px; border-radius: 4px; }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
    color: var(--taupe);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.cart-link {
    background: var(--gold) !important;
    color: var(--cream) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}
.cart-link:hover {
    background: var(--gold-light) !important;
    box-shadow: 0 4px 20px rgba(176, 148, 104, 0.3) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.nav-toggle span { width: 24px; height: 1.5px; background: var(--taupe); transition: 0.3s; }

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--black);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(176, 148, 104, 0.08) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 700px;
    animation: fadeInUp 1.2s ease;
}

.hero-logo {
    width: 320px;
    max-width: 80vw;
    margin-bottom: 30px;
    border-radius: 8px;
}

.hero-subtitle {
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 12px;
}

.hero-tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1.5px;
    margin-bottom: 50px;
    line-height: 1.8;
}

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

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 15px 48px;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s;
}

.btn-gold {
    background: var(--gold);
    color: var(--cream);
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(176, 148, 104, 0.25);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--cream); }

.btn-full { width: 100%; text-align: center; }

/* === SECTIONS === */
.section { padding: 110px 0; }
.section-dark {
    background: var(--dark-section);
    color: rgba(255,255,255,0.8);
}
.section-dark .section-title { color: var(--gold-light); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.45); }
.section-dark .about-card {
    background: rgba(255,255,255,0.04);
    border-color: var(--border-dark);
}
.section-dark .about-card:hover { border-color: var(--gold-dark); }
.section-dark .about-card h3 { color: var(--gold-light); }
.section-dark .about-card p { color: rgba(255,255,255,0.5); }

.section-cream { background: var(--cream-light); }

.section-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--black);
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-title strong {
    font-weight: 600;
    color: var(--gold);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
    letter-spacing: 1px;
    margin-bottom: 60px;
    font-weight: 300;
}

/* === CATEGORY FILTER === */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.cat-btn {
    padding: 10px 24px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50px;
    font-weight: 500;
}
.cat-btn:hover, .cat-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(176, 148, 104, 0.08);
}

/* === PRODUCT GRID === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 30px 30px;
    transition: all 0.4s ease;
    position: relative;
}
.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.product-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 18px; right: 18px;
    background: var(--gold);
    color: var(--cream);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 50px;
}

.product-card.preorder-badge::before {
    content: 'PRE-ORDER';
    position: absolute;
    top: 18px; right: 18px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 50px;
}

.product-name {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.product-dosage {
    font-size: 0.76rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
}

.product-category {
    display: inline-block;
    font-size: 0.6rem;
    color: var(--text-muted);
    background: var(--cream);
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 500;
}

.product-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 60px;
    font-weight: 300;
}

.product-purity {
    font-size: 0.74rem;
    color: var(--success);
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.product-price {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.product-stock {
    font-size: 0.68rem;
    color: var(--success);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}
.product-stock.out { color: var(--danger); }
.product-stock.preorder { color: var(--gold); }

.add-to-cart {
    width: 100%;
    padding: 13px;
    background: var(--gold);
    border: none;
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s;
    border-radius: 50px;
}
.add-to-cart:hover {
    background: var(--gold-light);
    box-shadow: 0 6px 25px rgba(176, 148, 104, 0.3);
}

.add-to-cart.preorder-btn {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
}
.add-to-cart.preorder-btn:hover {
    background: var(--gold);
    color: var(--cream);
}

/* === ABOUT GRID === */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-card {
    text-align: center;
    padding: 44px 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s;
}
.about-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.about-icon { font-size: 2.4rem; margin-bottom: 20px; animation: float 5s ease-in-out infinite; }
.about-card h3 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 14px;
    letter-spacing: 1px;
}
.about-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
}

/* === QUALITY === */
.quality-content { max-width: 720px; margin: 0 auto; }
.quality-content > p { font-weight: 300; color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }
.quality-list { list-style: none; margin: 30px 0; }
.quality-list li {
    padding: 16px 0 16px 32px;
    position: relative;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-weight: 300;
    line-height: 1.6;
}
.quality-list li::before {
    content: '◆';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 0.6rem;
    top: 20px;
}
.quality-cta {
    margin-top: 40px;
    text-align: center;
    color: var(--gold);
    font-weight: 500;
    font-size: 0.9rem;
    font-style: italic;
}

/* === CART DRAWER === */
.cart-drawer {
    position: fixed;
    top: 0; right: -440px;
    width: 440px; max-width: 90vw;
    height: 100vh;
    background: var(--cream-light);
    z-index: 2000;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
}
.cart-drawer.open { right: 0; }

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px;
    border-bottom: 1px solid var(--border);
}
.cart-header h3 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
}
.cart-close { background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; }

.cart-items { flex: 1; overflow-y: auto; padding: 24px; }
.cart-empty { color: var(--text-light); text-align: center; padding: 60px 0; font-weight: 300; font-size: 0.9rem; font-style: italic; }

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.cart-item-info h4 { color: var(--black); font-size: 0.9rem; font-weight: 600; }
.cart-item-info p { color: var(--text-muted); font-size: 0.75rem; font-weight: 300; }
.cart-item-price { color: var(--black); font-weight: 700; font-size: 0.95rem; }
.cart-item-remove {
    background: none; border: none; color: var(--text-light);
    cursor: pointer; font-size: 0.85rem; margin-left: 12px; transition: color 0.3s;
}
.cart-item-remove:hover { color: var(--danger); }

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border);
    background: var(--cream-dark);
}
.cart-total { font-size: 1.1rem; color: var(--black); font-weight: 700; margin-bottom: 6px; }
.cart-note { font-size: 0.72rem; color: var(--success); margin-bottom: 18px; font-weight: 500; }

.cart-overlay {
    position: fixed; inset: 0;
    background: rgba(26, 23, 21, 0.4);
    z-index: 1999; display: none;
    backdrop-filter: blur(4px);
}
.cart-overlay.open { display: block; }

/* === MODAL === */
.modal {
    position: fixed; inset: 0; z-index: 3000;
    display: none; align-items: center; justify-content: center;
    background: rgba(26, 23, 21, 0.5); backdrop-filter: blur(6px);
}
.modal.open { display: flex; }

.modal-content {
    background: var(--cream-light);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px;
    max-width: 500px; width: 90%; max-height: 90vh;
    overflow-y: auto; position: relative;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.15);
}

.modal-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; }

.modal-content h2 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.5rem; font-weight: 600; color: var(--black);
    margin-bottom: 24px;
}

.modal-content h3 {
    font-size: 0.85rem; font-weight: 600; color: var(--black);
    margin-top: 18px; margin-bottom: 10px; letter-spacing: 1.5px; text-transform: uppercase;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%; padding: 14px 18px; margin-bottom: 14px;
    background: var(--white); border: 1px solid var(--border); border-radius: 10px;
    color: var(--text); font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 300;
    transition: border-color 0.3s;
}
.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus { border-color: var(--gold); outline: none; }

.payment-options { display: flex; flex-direction: column; gap: 12px; margin: 16px 0 28px; }
.payment-options label { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; cursor: pointer; font-weight: 400; }

/* === CONTACT === */
.contact-methods { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.contact-card {
    display: flex; align-items: center; gap: 16px;
    padding: 24px 36px; background: var(--white);
    border: 1px solid var(--border); border-radius: 14px;
    color: var(--text); text-decoration: none;
    transition: all 0.3s; font-weight: 400; font-size: 0.9rem;
}
.contact-card:hover { border-color: var(--gold); box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06); }
.contact-icon { font-size: 1.4rem; }

/* === FOOTER === */
.footer {
    padding: 70px 0 35px;
    background: var(--black);
    color: rgba(255, 255, 255, 0.4);
}
.footer-content { text-align: center; }
.footer-logo { height: 60px; margin-bottom: 28px; opacity: 0.8; border-radius: 6px; }

.disclaimer {
    font-size: 0.68rem; color: rgba(255, 255, 255, 0.3);
    max-width: 650px; margin: 0 auto 24px; line-height: 2; font-weight: 300;
}
.copyright { font-size: 0.68rem; color: rgba(255, 255, 255, 0.25); }

/* === MOBILE === */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 80px; left: 0; right: 0;
        background: var(--cream); padding: 24px; gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    }
    .nav-toggle { display: flex; }
    .product-grid { grid-template-columns: 1fr; }
    .hero { min-height: 80vh; }
    .hero-logo { width: 240px; }
    .section { padding: 75px 0; }
    .modal-content { padding: 32px 24px; }
}
