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

body {
    font-family: 'Georgia', 'Garamond', serif;
    background: #F7EDE2;
    min-height: 100vh;
    color: #3E2723;
    line-height: 1.7;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #C65D3B;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-style: normal;
}

.tagline {
    font-size: 1rem;
    color: #8B6F47;
    margin-bottom: 2.5rem;
    font-style: italic;
    font-weight: 400;
}

.faq-link {
    color: #C65D3B;
    text-decoration: none;
    font-style: normal;
    transition: color 0.3s;
    border-bottom: 1px dotted #E8B4A0;
}

.faq-link:hover {
    color: #A84B2F;
    border-bottom: 1px solid #A84B2F;
}

.counter {
    background: linear-gradient(135deg, #E07A5F 0%, #D4744C 100%);
    padding: 2.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(198, 93, 59, 0.25);
    display: inline-block;
    min-width: 240px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.counter:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(198, 93, 59, 0.3);
}

.counter-number {
    font-size: 5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.counter-label {
    font-size: 0.9rem;
    color: #FFF8F0;
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: 2px;
    opacity: 0.95;
}

.sandwich-list h2 {
    margin-bottom: 2rem;
    color: #C65D3B;
    font-size: 1.6rem;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.5px;
}

.sandwich-card {
    background: #FFFBF7;
    padding: 1.75rem;
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 16px rgba(198, 93, 59, 0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #E8B4A0;
}

.sandwich-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(198, 93, 59, 0.15);
}

.sandwich-number {
    font-size: 0.8rem;
    font-weight: 600;
    color: #C65D3B;
    background: #F9DED4;
    padding: 0.3rem 0.9rem;
    display: inline-block;
    border-radius: 16px;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.sandwich-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3E2723;
    margin-bottom: 0.5rem;
}

.sandwich-meta {
    font-size: 0.9rem;
    color: #8B6F47;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.place-link {
    color: #C65D3B;
    text-decoration: none;
    transition: color 0.3s;
    border-bottom: 1px dotted #E8B4A0;
}

.place-link:hover {
    color: #A84B2F;
    border-bottom: 1px solid #A84B2F;
}

.separator {
    color: #D4A593;
}

.date {
    color: #A88B6F;
}

.sandwich-header {
    margin-bottom: 0.5rem;
}

.rating {
    font-size: 1.1rem;
    color: #DAA520;
}

.review {
    color: #5D4037;
    font-style: italic;
    margin-top: 0.75rem;
    font-weight: 400;
    background: #F9F3EE;
    padding: 1rem;
    border-radius: 12px;
    border-left: 3px solid #E8B4A0;
    line-height: 1.7;
}

.empty-state {
    text-align: center;
    color: #A88B6F;
    padding: 2rem;
    font-style: italic;
    font-weight: 400;
    font-size: 1rem;
}

.nav-links {
    margin-top: 1.5rem;
}

.nav-link {
    color: #C65D3B;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    border-bottom: 1px dotted #E8B4A0;
}

.nav-link:hover {
    color: #A84B2F;
    border-bottom: 1px solid #A84B2F;
}

.faq-section {
    margin-top: 2rem;
}

.faq-item {
    background: #FFFBF7;
    padding: 1.75rem;
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 16px rgba(198, 93, 59, 0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #E8B4A0;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(198, 93, 59, 0.15);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: #C65D3B;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: #5D4037;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.75rem;
    }

    .counter-number {
        font-size: 3rem;
    }

    .sandwich-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
