:root {
    --maroon: #800000;
    --gold: #D4AF37;
    --cream: #FFFAF5;
    --text: #2D2D2D;
    --light-grey: #F9F9F9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.6;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--maroon);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Nav */
.navbar {
    padding: 1.5rem 5%;
    background: white;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-logo {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.8rem;
    color: var(--maroon);
    text-decoration: none;
    letter-spacing: 4px;
    font-weight: 700; 
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-left: 2.5rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero-section {
    height: 85vh;
    background: url('https://images.unsplash.com/photo-1506630448388-4e683c67ddb0?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
}

.pre-title {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.7rem;
    display: block;
    margin-bottom: 1rem;
    color: var(--gold);
}

.hero-content h1 {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(3.5rem, 10vw, 5.5rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--maroon);
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.4s ease;
}

.cta-button:hover {
    background: var(--gold);
    color: var(--maroon);
}

/* Our Story Section */
.our-story {
    padding: 10rem 10%;
    background-color: white;
}

.story-container {
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 1100px;
    margin: 0 auto;
}

.story-text {
    flex: 1.2;
}

.label {
    text-transform: uppercase;
    color: var(--maroon);
    font-size: 0.75rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 1rem;
}

.story-text h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.philosophy {
    font-family: 'Bodoni Moda', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold);
    margin: 2.5rem 0;
}

.signature {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.8rem;
    color: var(--gold);
    border-top: 1px solid var(--light-grey);
    display: inline-block;
    padding-top: 1rem;
    margin-top: 1rem;
}

.story-image {
    flex: 0.8;
}

.story-image img {
    width: 100%;
    border: 1px solid var(--gold);
    padding: 15px;
    background: white;
}

/* Shop Preview */
.shop-preview {
    padding: 8rem 10%;
    background: var(--light-grey);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.5rem;
    font-weight: 400;
}

.gold-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.item {
    text-align: center;
    transition: 0.3s;
}

.image-wrapper {
    overflow: hidden;
    margin-bottom: 2rem;
    aspect-ratio: 3/4;
    background: white;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.item:hover img {
    transform: scale(1.08);
}

.item h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.price {
    color: var(--maroon);
    font-weight: 500;
}

/* Legal Accordion Fixes */
.legal-accordion {
    background: var(--cream);
    padding: 4rem 10%;
    border-top: 1px solid #eee;
    text-align: left;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    scroll-margin-top: 110px; 
}

details[open] {
    border-color: var(--gold);
}

summary {
    padding: 1.5rem;
    list-style: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Bodoni Moda', serif;
    font-size: 1.1rem;
    color: var(--maroon);
    cursor: pointer;
    font-weight: 600;
}

summary::after {
    content: '+';
    color: var(--maroon);
    font-size: 1.2rem;
}

details[open] summary::after {
    content: '-';
}

.legal-content {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Footer */
footer {
    padding: 5rem 10%;
    background: white;
    text-align: center;
    border-top: 1px solid var(--light-grey);
}

.footer-nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.footer-nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
}

.footer-bottom-text {
    font-size: 0.7rem;
    color: #aaa;
    margin-top: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .story-container {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .nav-links {
        display: none; 
    }
}
/* NEW SLIDER CSS */
.slider-container { position: relative; width: 100%; overflow: hidden; }
.mySlides { display: none; }
.fade { animation: fadeEffect 1.5s; }
@keyframes fadeEffect { from {opacity: .4} to {opacity: 1} }

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    background: rgba(0,0,0,0.2);
    border: none;
    z-index: 10;
    text-decoration: none;
}
.next { right: 0; }
.prev:hover, .next:hover { background: rgba(0,0,0,0.6); }