:root {
    --color-bg: #f6f5f2;
    --color-surface: #ffffff;
    --color-primary: #2c4a47;
    --color-primary-light: #3d615d;
    --color-accent: #b86f4a;
    --color-accent-hover: #a35e3d;
    --color-text: #2d2d2d;
    --color-muted: #5c5c5c;
    --color-border: #e5e2dc;
    --color-overlay: rgba(44, 74, 71, 0.75);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(44, 74, 71, 0.08);
    --shadow-hover: 0 12px 40px rgba(44, 74, 71, 0.12);
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    padding-top: 72px;
}

.site-header {
    background: var(--color-surface);
    box-shadow: 0 2px 20px rgba(44, 74, 71, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.navbar {
    padding: 0.75rem 0;
    background: transparent;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
    letter-spacing: 2px;
    transition: color 0.2s ease;
}

.navbar-brand:hover {
    color: var(--color-accent);
}

.navbar-nav.nav-menu-center {
    flex: 1;
    justify-content: space-evenly;
    align-items: center;
    gap: 0.25rem;
    margin-left: 0;
    margin-right: 0;
}

.nav-menu-center .nav-item {
    flex: 1;
    text-align: center;
    max-width: 140px;
}

.nav-link {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0.35rem;
    transition: color 0.2s ease, background 0.2s ease;
    font-size: 0.95rem;
    border-radius: var(--radius);
    display: block;
    line-height: 1.4;
}

.nav-link:hover {
    color: var(--color-accent);
}

.search-form {
    position: relative;
    width: 260px;
}

.search-form .form-control {
    border-radius: 24px;
    padding-right: 44px;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    font-size: 0.9rem;
}

.search-form .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(44, 74, 71, 0.1);
}

.search-form .btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    padding: 0.35rem 0.6rem;
    color: var(--color-muted);
}

.search-form .btn:hover {
    color: var(--color-accent);
}

.breadcrumb {
    background: transparent;
    padding: 1rem 0;
}

.cart-buttons {
    display: flex;
    align-items: center;
}

.cart-trigger {
    background: none;
    border: none;
    padding: 0.5rem 0.75rem;
    color: var(--color-primary);
    position: relative;
    cursor: pointer;
    font-size: 1.25rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.cart-trigger:hover {
    color: var(--color-accent);
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    background: var(--color-accent);
    color: #fff;
    border-radius: 10px;
}

.snipcart-items-count:empty,
.snipcart-items-count:not(.cart-count) {
    display: none;
}

.footer {
    background-color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid #eee;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #000;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #000;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #000;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-consent.show {
    display: block;
}
.contact-list li {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.contact-list i {
    color: #000;
    width: 24px;
}

.contact-form-wrapper {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-form .form-label {
    font-weight: 500;
    color: #333;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #000;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.accordion-button {
    font-weight: 500;
    color: var(--color-text);
}

.accordion-button:not(.collapsed) {
    color: var(--color-primary);
    background-color: var(--color-bg);
}

.accordion-button:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(44, 74, 71, 0.15);
}

.accordion-body {
    color: var(--color-muted);
    line-height: 1.6;
}

.hero-section {
    margin-bottom: 0;
}

.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 {
    height: 420px;
    background: var(--color-primary);
}

.hero-section .carousel-item img {
    object-fit: cover;
    height: 100%;
    opacity: 0.92;
}

.hero-section .carousel-caption {
    bottom: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    right: auto;
    padding: 2rem 2.5rem;
    background: var(--color-overlay);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
}

.hero-section .carousel-caption h1,
.hero-section .carousel-caption h2 {
    color: #fff !important;
    text-shadow: none;
    font-weight: 700;
}

.hero-section .carousel-caption .lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero-section .carousel-caption .btn {
    background: var(--color-accent);
    border: none;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-section .carousel-caption .btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
}

.carousel-indicators {
    margin-bottom: 1.25rem;
    gap: 0.5rem;
}

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

.carousel-indicators [data-bs-target]:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

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

.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    opacity: 1;
    transition: background 0.2s ease, transform 0.2s ease;
    margin: 0 1rem;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.05);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.categories-section h2,
.featured-products h2,
.all-products h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.02em;
}

.category-card,
.product-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.category-card:hover,
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.category-card .card-img-top,
.product-card .card-img-top {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card .card-img-top {
    height: 260px;
}

.product-card .card-img-top {
    height: 260px;
}

.category-card:hover .card-img-top,
.product-card:hover .card-img-top {
    transform: scale(1.04);
}

.category-card > a,
.product-card > a {
    overflow: hidden;
    display: block;
    background: var(--color-bg);
}

.category-card .card-body,
.product-card .card-body {
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.category-card .card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.65rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.category-card .card-text {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex: 1;
}

.category-card .btn-outline-dark {
    align-self: flex-start;
    padding: 0.55rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 999px;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.category-card .btn-outline-dark:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

.product-card .card-body .h5,
.product-card .card-body .card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.product-card .card-body .h5 a,
.product-card .card-body .card-title a {
    color: var(--color-primary) !important;
    transition: color 0.2s ease;
}

.product-card .card-body .h5 a:hover,
.product-card .card-body .card-title a:hover {
    color: var(--color-accent) !important;
}

.product-card .card-text {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.product-card .price,
.price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.product-card .btn-dark,
.snipcart-add-item.btn-dark {
    width: 100%;
    padding: 0.65rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
    border: none;
    background: var(--color-accent);
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card .btn-dark:hover,
.snipcart-add-item.btn-dark:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 111, 74, 0.35);
}

.btn-dark {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-dark:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
}

.contact-form-wrapper {
    background: linear-gradient(145deg, var(--color-surface) 0%, var(--color-bg) 100%);
    border-radius: var(--radius);
}

.contact-form {
    padding: 2rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(44, 74, 71, 0.1);
}

.footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: none;
}

.footer-heading {
    color: #fff;
    font-weight: 600;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a::after {
    background-color: #fff;
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991.98px) {
    .navbar-nav.nav-menu-center {
        flex: none;
        justify-content: flex-start;
    }
    .nav-menu-center .nav-item {
        max-width: none;
        text-align: left;
    }
    .nav-link {
        padding: 0.6rem 1rem;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        align-items: center;
    }
}
