/* ===== VARIABLES ===== */
:root {
    --cream: #F5F0E8;
    --green: #2D4A3E;
    --gold: #C9A84C;
    --gold-light: #E8D5A3;
    --text-dark: #2C2C2C;
    --text-gray: #6B6B6B;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Jost', sans-serif;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--cream);
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-weight: 300;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: var(--green);
    color: var(--gold-light);
    text-align: center;
    padding: 10px 20px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* ===== HEADER ===== */
.header {
    background: var(--cream);
    border-bottom: 1px solid var(--gold-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--green);
    letter-spacing: 0.1em;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
}

.cart-icon {
    font-size: 1.3rem;
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-toggle {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--green);
}

.nav {
    display: none;
    flex-direction: column;
    padding: 12px 24px;
    border-top: 1px solid var(--gold-light);
}

.nav.open { display: flex; }

.nav a {
    padding: 10px 0;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dark);
    border-bottom: 1px solid var(--gold-light);
}

.nav a:last-child { border-bottom: none; }

@media (min-width: 768px) {
    .nav-toggle { display: none; }
    .nav {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        padding: 12px 24px;
    }
    .nav a { border-bottom: none; padding: 4px 0; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--green);
    color: var(--cream);
}

.btn-primary:hover { background: #1e3329; }

.btn-outline {
    background: transparent;
    color: var(--green);
    border: 1px solid var(--green);
}

.btn-outline:hover {
    background: var(--green);
    color: var(--cream);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover { background: #b8943d; }

/* ===== HERO ===== */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(45, 74, 62, 0.95);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 24px;
}

.hero-botanical-left,
.hero-botanical-right {
    z-index: 1;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--gold-light);
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    color: var(--cream);
    text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

/* ===== SECTION ===== */
.section {
    padding: 60px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    color: var(--green);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-align: center;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0 40px;
    gap: 16px;
    color: var(--gold);
    font-size: 1.2rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: var(--gold-light);
}

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

@media (min-width: 1024px) {
    .product-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: var(--white);
    position: relative;
    transition: transform 0.3s ease;
}

.product-card:hover { transform: translateY(-4px); }

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img { transform: scale(1.05); }

.sold-badge {
    position: absolute;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    letter-spacing: 0.2em;
}

.product-card-info {
    padding: 16px;
}

.product-card-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.product-card-price {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== FEATURES ===== */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
    padding: 40px 24px;
    border-top: 1px solid var(--gold-light);
    border-bottom: 1px solid var(--gold-light);
    max-width: 800px;
    margin: 0 auto;
}

.feature-icon { font-size: 1.8rem; margin-bottom: 8px; }
.feature-text { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-gray); }

/* ===== FOOTER ===== */
.footer {
    background: var(--green);
    color: var(--cream);
    padding: 40px 24px 20px;
    margin-top: 60px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 24px;
}

@media (min-width: 768px) {
    .footer-inner { flex-direction: row; justify-content: space-between; }
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.footer p { font-size: 0.85rem; opacity: 0.8; line-height: 1.6; }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover { opacity: 1; }

.footer-copy {
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.5;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* ===== CART ===== */
.cart-page { max-width: 800px; margin: 0 auto; padding: 40px 24px; }
.cart-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gold-light);
}
.cart-item-image { width: 80px; height: 80px; object-fit: cover; }
.cart-item-details { flex: 1; }
.cart-item-name { font-family: var(--font-serif); font-size: 1.1rem; }
.cart-item-custom { font-size: 0.8rem; color: var(--text-gray); margin-top: 4px; }
.cart-totals { margin-top: 24px; }
.cart-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
}
.cart-row.discount { color: #2D7A4F; }
.cart-row.total {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    border-top: 1px solid var(--gold-light);
    padding-top: 16px;
    margin-top: 8px;
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--text-gray);
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gold-light);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}
.form-control:focus { border-color: var(--gold); }

.toggle-group {
    display: flex;
    gap: 0;
}
.toggle-btn {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--gold-light);
    background: var(--white);
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    transition: all 0.3s;
    text-align: center;
}
.toggle-btn.active {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
    background: var(--cream);
    max-width: 500px;
    width: 100%;
    padding: 32px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-gray);
}
.modal-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--green);
    margin-bottom: 20px;
}

/* ===== BOTANICAL DECORATIONS ===== */
.botanical-corner {
    position: absolute;
    opacity: 0.15;
    pointer-events: none;
}

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-botanical-left {
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.12;
}

.hero-botanical-right {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.12;
    transform: rotate(180deg);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 24px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 768px) {
    .about-section {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid var(--gold-light);
    z-index: -1;
}

.about-text h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--green);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p {
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

/* ===== BOTANICAL DIVIDER ===== */
.botanical-divider {
    text-align: center;
    padding: 20px 0;
    color: var(--gold-light);
    font-size: 1.4rem;
    letter-spacing: 12px;
}

/* ===== INSTAGRAM STRIP ===== */
.insta-strip {
    background: var(--green);
    padding: 40px 24px;
    text-align: center;
}

.insta-strip p {
    color: var(--gold-light);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.insta-strip a {
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: 1.4rem;
}