:root {
    --sage: #7d9b69;
    --sage-dark: #5a7349;
    --sage-light: #a8c99e;
    --terracotta: #c17f59;
    --terracotta-light: #e8b4a0;
    --earth: #4a5d3a;
    --moss: #3d5c2e;
    --cream: #f8f6f1;
    --ivory: #fdfcf9;
    --slate: #2d3a2a;
    --text: #2d3a2a;
    --text-muted: #5c6b52;
    --shadow: 0 4px 20px rgba(45, 58, 42, 0.08);
    --shadow-hover: 0 8px 30px rgba(45, 58, 42, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
}

body {
    font-family: 'Lora', serif;
    background-color: var(--ivory);
    color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--slate);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: var(--cream);
    border-bottom: 1px solid rgba(125, 155, 105, 0.2);
    box-shadow: var(--shadow);
    padding: 0.75rem 0 0;
}

.header-spacer {
    height: 140px;
}

@media (max-width: 991.98px) {
    .header-spacer { height: 120px; }
}

.header-top {
    margin-bottom: 0;
}

.btn-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    background: var(--sage);
    color: #fff !important;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.2s;
}

.btn-cart:hover {
    background: var(--sage-dark);
    color: #fff !important;
    transform: translateY(-1px);
}

.cart-count {
    min-width: 1.25rem;
    height: 1.25rem;
    line-height: 1.25rem;
    padding: 0 0.35rem;
    background: rgba(255,255,255,0.3);
    border-radius: 999px;
    font-size: 0.8rem;
    text-align: center;
}

.cart-count:empty::after {
    content: "0";
}

.navbar-brand {
    color: var(--earth) !important;
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--sage-dark) !important;
}

.navbar-main {
    padding: 0;
}

.navbar-main .navbar-collapse {
    flex-grow: 1;
    width: 100%;
}

.navbar-main .navbar-nav.nav-menu-equal {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

.nav-menu-equal {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: stretch;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.nav-menu-equal .nav-item {
    flex: 1;
    min-width: 0;
    text-align: center;
    display: flex;
    align-items: stretch;
}

.nav-menu-equal .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: var(--text) !important;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75rem 0.5rem !important;
    transition: color 0.2s, background 0.2s;
    border-bottom: 3px solid transparent;
}

.nav-menu-equal .nav-link:hover {
    color: var(--sage-dark) !important;
    background: rgba(125, 155, 105, 0.08);
    border-bottom-color: var(--sage-light);
}

@media (max-width: 991.98px) {
    .nav-menu-equal {
        flex-direction: column;
        justify-content: flex-start;
    }
    .nav-menu-equal .nav-item { flex: none; }
    .nav-menu-equal .nav-link { justify-content: flex-start; padding-left: 1rem !important; }
}

.search-form .form-control {
    border-radius: var(--radius) 0 0 var(--radius);
    border: 1px solid rgba(125, 155, 105, 0.4);
    padding: 0.5rem 1rem;
    background: var(--ivory);
}

.search-form .btn-search {
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 0.5rem 1rem;
    background: var(--sage);
    color: #fff;
    border: none;
}

.search-form .btn-search:hover {
    background: var(--sage-dark);
    color: #fff;
}

.search-form .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(125, 155, 105, 0.2);
    border-color: var(--sage);
}

.hero-section .carousel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-section .carousel-inner {
    border-radius: var(--radius-lg);
}

.hero-section .carousel-item img {
    object-fit: cover;
    max-height: 420px;
}

.hero-section .carousel-caption {
    bottom: 2rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(to top, rgba(45, 58, 42, 0.85), rgba(45, 58, 42, 0.5));
    border-radius: var(--radius);
    text-align: center;
}

.hero-section .carousel-caption h1,
.hero-section .carousel-caption h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 0.5rem;
}

.hero-section .carousel-caption p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.hero-section .carousel-caption.text-dark h1,
.hero-section .carousel-caption.text-dark h2 {
    color: var(--slate);
}

.hero-section .carousel-caption.text-dark {
    background: linear-gradient(to top, rgba(253, 252, 249, 0.95), rgba(253, 252, 249, 0.85));
}

.hero-section .carousel-caption.text-dark p {
    color: var(--text-muted);
}

.hero-section .carousel-caption .btn {
    background: var(--sage);
    border: none;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: background 0.2s;
}

.hero-section .carousel-caption .btn:hover {
    background: var(--sage-dark);
    color: #fff;
}

.hero-section .carousel-indicators {
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.hero-section .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    background: transparent;
    opacity: 0.7;
    transition: all 0.25s ease;
}

.hero-section .carousel-indicators [data-bs-target]:hover {
    opacity: 1;
    background: rgba(255,255,255,0.5);
}

.hero-section .carousel-indicators .active {
    width: 28px;
    border-radius: 5px;
    background: #fff;
    border-color: #fff;
    opacity: 1;
}

.hero-section .carousel-indicators.dark-indicators button {
    border-color: var(--slate);
    background: transparent;
}

.hero-section .carousel-indicators.dark-indicators .active {
    background: var(--sage);
    border-color: var(--sage);
}

.hero-section .carousel-indicators button {
    box-sizing: border-box;
    margin: 0;
    flex-shrink: 0;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    opacity: 0.9;
    transition: opacity 0.2s, transform 0.2s;
}

.hero-section .carousel-control-prev {
    left: 1rem;
}

.hero-section .carousel-control-next {
    right: 1rem;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    opacity: 1;
    background: #fff;
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    filter: invert(1);
    opacity: 0.6;
}

.hero-section .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-section .carousel-control-next:hover .carousel-control-next-icon {
    opacity: 0.9;
}

.breadcrumb {
    background-color: transparent;
    padding: 0.75rem 0;
}

.breadcrumb-item a {
    color: var(--sage);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--sage-dark);
}

.btn-outline-success,
.btn-outline-secondary {
    border-color: var(--sage);
    color: var(--sage);
}

.btn-outline-success:hover,
.btn-outline-secondary:hover {
    background-color: var(--sage);
    color: var(--ivory);
}

footer {
    background: var(--cream) !important;
    color: var(--text);
    border-top: 1px solid rgba(125, 155, 105, 0.2);
}

.footer-link {
    color: var(--sage-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--terracotta);
    text-decoration: underline;
}

address a {
    color: var(--sage-dark);
    text-decoration: none;
}

address a:hover {
    color: var(--terracotta);
    text-decoration: underline;
}

.cookie-consent {
    border-top: 1px solid rgba(125, 155, 105, 0.3);
    z-index: 1000;
}

.cookie-consent p {
    color: var(--text);
}

.cookie-consent a {
    color: var(--sage-dark);
    text-decoration: underline;
}

.cookie-consent .btn-success {
    background-color: var(--sage);
    border-color: var(--sage);
}

.cookie-consent .btn-success:hover {
    background-color: var(--sage-dark);
    border-color: var(--sage-dark);
}
.contact-hero {
    background: linear-gradient(to right, var(--ivory), var(--cream));
    padding: 3rem 0;
}

.contact-info {
    border-left: 4px solid var(--sage);
}

.contact-form {
    background: linear-gradient(135deg, var(--ivory), var(--cream));
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form .form-control,
.contact-form .form-select {
    border-color: rgba(125, 155, 105, 0.4);
    background-color: var(--ivory);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 0.2rem rgba(125, 155, 105, 0.2);
}

.accordion-button {
    background-color: var(--ivory);
    color: var(--text);
    font-family: 'Lora', serif;
}

.accordion-button:not(.collapsed) {
    background-color: var(--sage);
    color: #fff;
}

.accordion-body {
    background-color: var(--ivory);
    color: var(--text);
    line-height: 1.6;
}

.card {
    border: 1px solid rgba(125, 155, 105, 0.2);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
    box-shadow: var(--shadow-hover);
}

.category-card,
.card h5 {
    color: var(--slate);
}

.btn-success,
.btn-dark.btn-success-style {
    background-color: var(--sage);
    border-color: var(--sage);
}

.btn-success:hover {
    background-color: var(--sage-dark);
    border-color: var(--sage-dark);
}
