:root {
    --primary-dark: #412f21;
    --olive-green: #5D7B53;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Manrope', sans-serif;
    color: #2d2d2d;
    background-color: #fff;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
.premium-serif {
    font-family: 'Gilda Display', serif;
    letter-spacing: 0.02em;
}

h1,
h2 {
    font-weight: 400;
}

.text-olive {
    color: var(--olive-green) !important;
}

.btn-olive {
    background-color: var(--olive-green);
    color: white;
    border: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.8rem 1.8rem;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-olive:hover {
    background-color: #4A6342;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(93, 123, 83, 0.25);
}

.btn-outline-olive {
    color: var(--olive-green);
    border-color: var(--olive-green);
    background-color: transparent;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.8rem 1.8rem;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-outline-olive:hover {
    background-color: var(--olive-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(93, 123, 83, 0.25);
}

.nav-link {
    font-weight: 500;
    transition: opacity 0.2s;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.nav-link:hover {
    opacity: 0.8;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    line-height: 1;
}

@media (min-width: 1200px) {
    .logo-text {
        font-size: 1.8rem;
    }
}

@media (min-width: 1400px) {
    .logo-text {
        font-size: 2rem;
    }
}

.search-input {
    max-width: 120px;
    transition: max-width 0.3s ease;
    font-size: 0.85rem;
}

@media (min-width: 1200px) {
    .search-input {
        max-width: 180px;
    }
}

.search-input:focus {
    max-width: 220px;
}

.nav-link {
    font-weight: 500;
    transition: opacity 0.2s;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

@media (min-width: 1200px) {
    .nav-link {
        font-size: 0.85rem;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
}

.favorite-btn:hover {
    transform: scale(1.1);
    background-color: #fff !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

header {
    position: relative;
    z-index: 1050;
}

/* HTMX load indicator */
.htmx-indicator {
    display: none;
}
.htmx-request .htmx-indicator {
    display: inline-block;
}
.htmx-request.htmx-indicator {
    display: inline-block;
}
