/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,700;1,400&family=Montserrat:wght@300;400;600&display=swap');

/* --- Brand Variables --- */
:root {
    --chocolate: #3D2B1F;   /* Deep Artisanal Brown */
    --gold: #C5A059;        /* Warm Gold Accent */
    --cream: #FFFAF0;       /* Soft Flour/Vanilla Tone */
    --white: #ffffff;
    --border-light: #f1f1f1;
    --text-muted: #666666;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Global Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--chocolate);
    line-height: 1.8;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, .tagline {
    font-family: 'Cormorant Garamond', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-tag {
    display: block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.7rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 60px;
    color: var(--chocolate);
    font-weight: 400;
    font-style: italic;
}

/* --- Navigation --- */
header {
    background: rgba(255, 255, 255, 0.98);
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid var(--border-light);
}

.logo-container h1 {
    font-size: 1.8rem;
    color: var(--chocolate);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--chocolate);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--gold); }

/* Hamburger Menu (Mobile Only) */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; }
.nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after {
    display: block; background: var(--chocolate); height: 2px; width: 25px; position: relative; transition: var(--transition);
}
.nav-toggle-label span::before, .nav-toggle-label span::after { content: ''; position: absolute; }
.nav-toggle-label span::before { bottom: 8px; }
.nav-toggle-label span::after { top: 8px; }

/* --- Hero Section --- */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 90px 8% 0;
    background-color: var(--cream);
    gap: 60px;
}

.hero-content { flex: 1; }
.hero-image { flex: 1.2; height: 75vh; overflow: hidden; box-shadow: 25px 25px 0px var(--gold); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

#hero h2 { font-size: 4.8rem; line-height: 1.1; margin-bottom: 25px; }
#hero h2 span { color: var(--gold); }

.cta-button {
    display: inline-block;
    background: var(--chocolate);
    color: var(--white);
    padding: 18px 45px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.cta-button:hover { background: var(--gold); transform: translateY(-5px); }

/* --- Category Cards --- */
#categories { padding: 120px 0; text-align: center; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.cat-card { transition: var(--transition); background: var(--white); padding-bottom: 20px; }
.cat-card img { width: 100%; height: 400px; object-fit: cover; margin-bottom: 25px; }
.cat-card h3 { font-size: 2rem; margin-bottom: 10px; }
.cat-card a { text-decoration: none; color: var(--gold); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.cat-card:hover { transform: translateY(-10px); }

/* --- Craft & Product Rows --- */
#craft { padding: 120px 0; background: var(--cream); }
.craft-layout { display: flex; align-items: center; gap: 100px; }
.craft-text, .craft-image { flex: 1; }
.craft-image img { width: 100%; height: 500px; object-fit: cover; }

#best-sellers { padding: 120px 0; }
.product-row { display: flex; align-items: center; gap: 80px; margin-bottom: 120px; }
.product-row.reverse { flex-direction: row-reverse; }
.product-img { flex: 1.2; height: 550px; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; }
.product-img:hover img { transform: scale(1.05); }

.price { display: block; font-size: 2rem; color: var(--gold); margin: 20px 0; font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.add-btn { padding: 12px 35px; border: 1px solid var(--chocolate); background: none; cursor: pointer; text-transform: uppercase; font-weight: 600; font-size: 0.75rem; letter-spacing: 2px; transition: var(--transition); }
.add-btn:hover { background: var(--chocolate); color: var(--white); }

/* --- Subscription Box --- */
#subscription { padding: 100px 0; background: var(--chocolate); color: var(--white); text-align: center; }
.sub-box h2 { font-size: 3.5rem; color: var(--gold); margin-bottom: 20px; }

/* --- Sweet Confessions (Strict Centered Alignment) --- */
#reviews {
    padding: 140px 0;
    background-color: var(--cream);
    text-align: center;
}

.review-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.review-card {
    background: var(--white);
    padding: 60px 45px;
    flex: 1;
    min-width: 340px;
    max-width: 400px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers everything inside the card */
    justify-content: space-between;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold);
}

.vector-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold); /* Placeholder color for vector svg */
}

.review-card p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
    text-align: center;
}

.review-card cite {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    color: var(--gold);
    font-style: normal;
}

/* --- Instagram Gallery --- */
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.insta-grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; filter: sepia(30%); transition: 0.5s; }
.insta-grid img:hover { filter: sepia(0%); transform: scale(1.02); }

/* --- Footer --- */
footer { background: #111; color: #fff; padding: 80px 0 40px; }
.footer-main { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 60px; }
.footer-links { display: flex; gap: 40px; }
.footer-links a { color: #fff; text-decoration: none; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1.5px; font-weight: 600; transition: 0.3s; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom { text-align: center; border-top: 1px solid #222; padding-top: 40px; }
.footer-bottom p { font-size: 0.65rem; color: #555; text-transform: uppercase; letter-spacing: 2px; }
.footer-contact-links { margin-top: 15px; }
.footer-contact-links a { color: var(--gold); text-decoration: none; font-size: 0.85rem; font-weight: 600; margin: 0 10px; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .nav-toggle-label { display: block; }
    nav {
        position: absolute; top: 90px; left: 0; background: var(--white); width: 100%;
        height: 0; overflow: hidden; transition: var(--transition);
    }
    nav ul { flex-direction: column; align-items: center; padding: 50px 0; }
    .nav-toggle:checked ~ nav { height: auto; padding-bottom: 50px; border-bottom: 1px solid var(--border-light); }

    #hero { flex-direction: column; text-align: center; height: auto; padding-top: 150px; padding-bottom: 60px; }
    #hero h2 { font-size: 3.2rem; }
    .hero-image { width: 100%; height: 450px; box-shadow: 15px 15px 0 var(--gold); }

    .category-grid, .insta-grid, .review-wrapper { grid-template-columns: 1fr; justify-items: center; }
    .review-card { min-width: 100%; max-width: 100%; }
    
    .craft-layout, .product-row, .product-row.reverse, .footer-main { flex-direction: column; text-align: center; gap: 50px; }
    .footer-links { flex-direction: column; align-items: center; gap: 20px; }
}