* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #3b2314;
    --accent: #c68b59;
    --bg-light: #f9f6f0;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b07747;
}

.btn-secondary {
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.9rem;
    padding: 8px 16px;
}

.btn-secondary:hover {
    background-color: var(--accent);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.site-header {
    background: var(--white);
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 120px 20px;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.about-card, .hours-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
}

.about-card ul, .hours-card ul {
    list-style: none;
    margin-top: 15px;
}

.about-card li, .hours-card li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.hours-card li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e0dcd5;
    padding-bottom: 8px;
}

.address {
    margin-top: 20px;
    font-size: 1.1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-notes {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.price {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.price .size {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
}

.site-footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.site-footer h3 {
    color: var(--white);
}

.site-footer p {
    color: #b0a59f;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
    }
}