@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,500&display=swap');

:root {
    --primary-color: #6b1c23;
    --primary-deep: #4a1419;
    --accent-color: #9a6b2f;
    --gold: #b8893c;
    --gold-light: #d4a84b;
    --bg-color: #f4ebe3;
    --bg-elevated: #faf6f1;
    --text-color: #2a2420;
    --text-muted: #5c534c;
    --ink: #1a1512;
    --cream: #fffcf8;
    --rose-tint: rgba(107, 28, 35, 0.08);
    --shadow-soft: 0 8px 32px rgba(26, 21, 18, 0.08);
    --shadow-deep: 0 24px 64px rgba(26, 21, 18, 0.14);
    --radius-lg: 20px;
    --radius-xl: 28px;
    --nav-item-min-h: 3rem;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    background-image:
        radial-gradient(ellipse 120% 80% at 100% 0%, var(--rose-tint) 0%, transparent 55%),
        radial-gradient(ellipse 90% 60% at 0% 100%, rgba(154, 107, 47, 0.06) 0%, transparent 50%);
    color: var(--text-color);
    line-height: 1.65;
    padding-top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
    font-weight: 600;
    color: var(--ink);
}


.site-navbar {
    z-index: 1030;
    padding: 0.65rem 0;
    background: rgba(26, 21, 18, 0.88) !important;
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid rgba(212, 168, 75, 0.22);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.site-navbar .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--cream) !important;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    letter-spacing: 0.06em;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.site-navbar .navbar-brand:hover {
    color: var(--gold-light) !important;
}

.site-navbar .navbar-toggler {
    border: 1px solid rgba(255, 252, 248, 0.25);
    padding: 0.45rem 0.6rem;
}

.site-navbar .navbar-toggler-icon {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.site-main-nav {
    align-items: stretch;
    width: 100%;
}

@media (min-width: 992px) {
    .site-main-nav {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: stretch;
        gap: 0;
        max-width: none;
    }

    .site-main-nav > .nav-item:not(.nav-item-cart) {
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        align-items: stretch;
    }

    .site-main-nav .nav-link {
        width: 100%;
        min-height: var(--nav-item-min-h);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0.5rem 0.4rem;
        font-size: clamp(0.72rem, 0.9vw, 0.82rem);
        font-weight: 500;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        line-height: 1.25;
        border-radius: 10px;
        margin: 0 2px;
        transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    }
}

@media (max-width: 991.98px) {
    .site-main-nav .nav-link {
        min-height: var(--nav-item-min-h);
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        border-radius: 10px;
        font-weight: 500;
    }
}

.site-navbar .nav-link {
    color: rgba(255, 252, 248, 0.88) !important;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
    color: var(--gold-light) !important;
    background: rgba(255, 252, 248, 0.06);
}

.nav-item-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

@media (min-width: 992px) {
    .nav-item-cart {
        margin-left: 0.5rem;
        padding-left: 0.35rem;
        border-left: 1px solid rgba(212, 168, 75, 0.2);
    }
}

.cart-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: var(--nav-item-min-h);
    min-width: 3.25rem;
    padding: 0 0.85rem !important;
    border-radius: 12px !important;
    background: linear-gradient(145deg, rgba(107, 28, 35, 0.95), var(--primary-deep)) !important;
    color: var(--cream) !important;
    border: 1px solid rgba(212, 168, 75, 0.35) !important;
    box-shadow: 0 4px 16px rgba(107, 28, 35, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cart-btn:hover {
    color: #fff !important;
    filter: brightness(1.08);
    box-shadow: 0 6px 22px rgba(107, 28, 35, 0.45);
    transform: translateY(-1px);
}

.cart-btn .fa-shopping-bag {
    font-size: 1.05rem;
    opacity: 0.95;
}

.cart-count {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 1.35rem;
    text-align: center;
    letter-spacing: 0.02em;
}

.snipcart-total-price {
    display: none !important;
}

.search-form {
    position: relative;
    max-width: 280px;
    width: 100%;
    margin: 0.75rem 0;
}

@media (min-width: 992px) {
    .search-form {
        margin: 0 1.25rem 0 0;
        flex-shrink: 0;
    }
}

.search-form input {
    width: 100%;
    padding: 0.55rem 2.6rem 0.55rem 1rem;
    border: 1px solid rgba(212, 168, 75, 0.35);
    border-radius: 999px;
    background: rgba(255, 252, 248, 0.12);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
}

.search-form input::placeholder {
    color: rgba(255, 252, 248, 0.45);
}

.search-form input:focus {
    outline: none;
    border-color: var(--gold-light);
    background: rgba(255, 252, 248, 0.18);
    box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.2);
}

.search-form button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gold-light);
    padding: 0.25rem;
}


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

.site-carousel {
    position: relative;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}

@media (min-width: 768px) {
    .site-carousel {
        margin-left: 0;
        margin-right: 0;
    }
}

.site-carousel .carousel-inner {
    border-radius: inherit;
}

.site-carousel .carousel-item {
    position: relative;
}

.site-carousel .carousel-item > img {
    width: 100%;
    min-height: min(72vh, 560px);
    object-fit: cover;
    display: block;
}

.site-carousel .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(26, 21, 18, 0.82) 0%,
        rgba(26, 21, 18, 0.35) 42%,
        rgba(107, 28, 35, 0.25) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.site-carousel .carousel-caption {
    position: absolute;
    z-index: 2;
    left: 8%;
    right: 8%;
    bottom: auto;
    top: 58%;
    transform: translateY(-50%);
    padding: 1.75rem 1.5rem;
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 252, 248, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 252, 248, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.site-carousel .carousel-caption h1 {
    color: var(--cream);
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.site-carousel .carousel-caption p {
    color: rgba(255, 252, 248, 0.92);
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 400;
    margin-bottom: 1.25rem;
    line-height: 1.55;
}

.site-carousel .carousel-caption .btn-primary {
    border-radius: 999px;
    padding: 0.65rem 1.85rem;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
    color: var(--ink) !important;
    font-weight: 600;
    box-shadow: 0 8px 28px rgba(184, 137, 60, 0.45);
}

.site-carousel .carousel-caption .btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    color: var(--ink) !important;
}


.site-carousel .carousel-indicators {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0 1rem 1.35rem;
    justify-content: center;
    gap: 0.45rem;
    z-index: 4;
}

.site-carousel .carousel-indicators [type="button"] {
    box-sizing: border-box;
    width: 2.25rem;
    height: 0.4rem;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 252, 248, 0.35);
    opacity: 1;
    text-indent: 0;
    transition: width 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.site-carousel .carousel-indicators [type="button"]:hover {
    background: rgba(255, 252, 248, 0.55);
    transform: scaleY(1.15);
}

.site-carousel .carousel-indicators [type="button"].active {
    width: 3.5rem;
    background: linear-gradient(90deg, var(--gold-light), var(--cream));
    box-shadow: 0 0 24px rgba(212, 168, 75, 0.55);
}


.site-carousel .carousel-control-prev,
.site-carousel .carousel-control-next {
    width: 3rem;
    height: 3rem;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 252, 248, 0.12) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 252, 248, 0.22);
    opacity: 1;
    z-index: 3;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

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

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

.site-carousel .carousel-control-prev:hover,
.site-carousel .carousel-control-next:hover {
    background: rgba(255, 252, 248, 0.22) !important;
    border-color: rgba(212, 168, 75, 0.5);
    transform: translateY(-50%) scale(1.05);
}

.site-carousel .carousel-control-prev-icon,
.site-carousel .carousel-control-next-icon {
    width: 1.35rem;
    height: 1.35rem;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}


.site-carousel .carousel-caption.text-dark h1 {
    color: var(--cream);
}

.site-carousel .carousel-caption.text-dark p {
    color: rgba(255, 252, 248, 0.9);
}


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

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-item.active {
    color: var(--text-muted);
}


.contact-info-section .card,
.map-section .card {
    background: linear-gradient(160deg, var(--bg-elevated) 0%, #fff 100%);
    border: 1px solid rgba(154, 107, 47, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-details li {
    position: relative;
    padding-left: 2rem;
}

.contact-details i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: var(--primary-color);
}

.contact-details a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.map-container {
    border: 1px solid rgba(154, 107, 47, 0.35);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.form-control,
.form-select {
    border-color: rgba(154, 107, 47, 0.35);
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(107, 28, 35, 0.2);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}


.footer {
    background: linear-gradient(180deg, var(--bg-elevated) 0%, #ede4da 100%);
    border-top: 1px solid rgba(154, 107, 47, 0.25);
    box-shadow: 0 -8px 40px rgba(26, 21, 18, 0.06);
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.65;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    color: var(--text-muted);
}

.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 2rem;
}

.footer-bottom hr {
    border-color: rgba(154, 107, 47, 0.25);
    opacity: 1;
}


.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 21, 18, 0.94);
    backdrop-filter: blur(12px);
    color: var(--cream);
    padding: 1.15rem;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-top: 1px solid rgba(212, 168, 75, 0.25);
}

.cookie-content p {
    color: rgba(255, 252, 248, 0.88);
}

.cookie-buttons .btn-outline-secondary {
    border-color: rgba(255, 252, 248, 0.4);
    color: var(--cream);
}

.cookie-buttons .btn-outline-secondary:hover {
    background: rgba(255, 252, 248, 0.1);
    border-color: var(--gold-light);
    color: var(--gold-light);
}


.product-image {
    border: 1px solid rgba(154, 107, 47, 0.25);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.product-title {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

.product-description {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    color: var(--text-muted);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-deep)) !important;
    border: none !important;
    padding: 0.75rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 6px 20px rgba(107, 28, 35, 0.3);
}

.btn-primary:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(107, 28, 35, 0.38);
}


.navbar .btn:not(.cart-btn) {
    border: none;
    background: none;
}


.categories-section h2,
.featured-products h2 {
    font-family: 'Playfair Display', serif;
    color: var(--ink);
}

.category-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream);
    border: 1px solid rgba(154, 107, 47, 0.18);
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-deep);
}

.category-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.category-content {
    padding: 1.5rem 1.5rem 1.75rem;
}

.category-content h3 {
    color: var(--primary-color);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.category-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.featured-products.bg-light {
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-color) 100%) !important;
}

.featured-products .card {
    border: 1px solid rgba(154, 107, 47, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.featured-products .card:hover {
    box-shadow: var(--shadow-deep);
    transform: translateY(-4px);
}


.hero-section > .container {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.hero-section > .container h1 {
    color: var(--ink);
}

.hero-section > .container .lead {
    color: var(--text-muted);
}
