:root {
    --primary-color: #0d3b36;
    --primary-deep: #082925;
    --secondary-color: #1e2a3b;
    --accent-gold: #c9a962;
    --accent-gold-soft: #e8d5a3;
    --accent-burgundy: #6b2d3c;
    --background-color: #f6f3ec;
    --surface: #fffcf7;
    --light-gray: #eef1f5;
    --ink: #1a1f2e;
    --muted: #5c6578;
    --shadow-sm: 0 2px 12px rgba(30, 42, 59, 0.06);
    --shadow-md: 0 8px 32px rgba(30, 42, 59, 0.1);
    --shadow-lg: 0 24px 48px rgba(13, 59, 54, 0.12);
    --radius-pill: 999px;
    --radius-lg: 1.25rem;
    --font-ui: "Manrope", system-ui, sans-serif;
    --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ui);
    background-color: var(--background-color);
    color: var(--ink);
    font-weight: 400;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.footer-title,
.product-title {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    box-shadow: var(--shadow-md);
}

.header-top {
    background: linear-gradient(105deg, var(--primary-deep) 0%, var(--primary-color) 45%, #145a52 100%);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info {
    font-size: 0.8125rem;
}

.contact-info i {
    color: var(--accent-gold-soft);
    opacity: 0.95;
}

.navbar-kalvirox {
    background: rgba(255, 252, 247, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(13, 59, 54, 0.08);
}

.navbar-brand {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary-color) !important;
    letter-spacing: 0.22em;
    font-size: 1.65rem;
    padding: 0.5rem 0;
}

.navbar-kalvirox .navbar-toggler {
    border-color: rgba(13, 59, 54, 0.2);
    padding: 0.5rem 0.75rem;
}

.navbar-kalvirox .navbar-toggler-icon {
    filter: brightness(0.35);
}

.nav-menu-balanced {
    align-items: stretch;
}

@media (min-width: 992px) {
    .nav-menu-balanced {
        flex-direction: row !important;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 0.15rem;
        max-width: 52rem;
    }

    .nav-menu-balanced .nav-item {
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        align-items: stretch;
        justify-content: center;
    }

    .nav-menu-balanced .nav-link {
        width: 100%;
        min-height: 3rem;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0.5rem 0.65rem !important;
        line-height: 1.25;
        font-size: 0.72rem;
        border-radius: var(--radius-pill);
    }
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    padding: 0.65rem 0.85rem !important;
    margin: 0.15rem 0;
    border-radius: var(--radius-pill);
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color) !important;
    background: rgba(201, 169, 98, 0.12);
}

.header-actions {
    flex-shrink: 0;
}

.search-form {
    width: 100%;
    max-width: 16rem;
}

@media (min-width: 992px) {
    .search-form {
        max-width: 13.5rem;
    }
}

.search-form .form-control {
    border-radius: var(--radius-pill) 0 0 var(--radius-pill);
    border: 1px solid rgba(30, 42, 59, 0.12);
    background: var(--surface);
    font-size: 0.875rem;
    padding: 0.55rem 1rem;
    min-height: 3rem;
}

.search-form .form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.25);
}

.btn-search {
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
    border: 1px solid rgba(30, 42, 59, 0.12);
    border-left: none;
    background: var(--primary-color);
    color: #fff;
    padding: 0 1rem;
    min-height: 3rem;
    transition: background 0.2s ease, transform 0.15s ease;
}

.btn-search:hover {
    background: var(--primary-deep);
    color: #fff;
}

.cart-checkout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-width: 3rem;
    min-height: 3rem;
    padding: 0 0.85rem;
    border: none;
    border-radius: var(--radius-pill);
    background: linear-gradient(145deg, var(--secondary-color), #2d3d52);
    color: #fff;
    font-size: 1.05rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    position: relative;
}

.cart-checkout-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(145deg, #2a3548, var(--secondary-color));
}

.cart-checkout-btn .fa-shopping-bag {
    margin-right: 0.35rem;
}

.cart-count-badge {
    position: static !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.35rem !important;
    margin: 0 !important;
    background: var(--accent-gold) !important;
    color: var(--primary-deep) !important;
    border-radius: var(--radius-pill) !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    font-family: var(--font-ui) !important;
    line-height: 1 !important;
}

.snipcart-checkout .snipcart-total-price,
.cart-checkout-btn .snipcart-total-price,
.header-actions .snipcart-total-price {
    display: none !important;
}

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

.kalvirox-carousel {
    position: relative;
}

.kalvirox-carousel .carousel-inner {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.kalvirox-carousel .carousel-item {
    position: relative;
    min-height: 280px;
}

.kalvirox-carousel .carousel-item img {
    width: 100%;
    object-fit: cover;
    max-height: min(78vh, 640px);
    min-height: 280px;
}

.kalvirox-carousel .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(26, 31, 46, 0.2) 0%,
        rgba(26, 31, 46, 0.05) 35%,
        rgba(13, 59, 54, 0.55) 100%
    );
}

.kalvirox-carousel .carousel-caption {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 4.25rem;
    transform: translateX(-50%);
    width: min(92%, 36rem);
    padding: 1.35rem 1.75rem 1.5rem;
    text-align: center;
    background: rgba(255, 252, 247, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 12px 40px rgba(30, 42, 59, 0.15);
    z-index: 1;
}

.kalvirox-carousel .carousel-caption h1 {
    color: var(--primary-color);
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.kalvirox-carousel .carousel-caption p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 500;
}

.kalvirox-carousel .carousel-caption .btn {
    margin-top: 1rem;
}

.kalvirox-carousel .carousel-indicators {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.15rem;
    margin: 0 auto;
    padding: 0.45rem 0.85rem;
    gap: 0.45rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 3;
    width: fit-content;
    max-width: 90%;
    list-style: none;
    background: rgba(26, 31, 46, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.kalvirox-carousel .carousel-indicators [type="button"] {
    box-sizing: border-box;
    width: 2.25rem;
    height: 0.4rem;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
    text-indent: 0;
    transition: width 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.kalvirox-carousel .carousel-indicators [type="button"]:hover {
    background: rgba(255, 255, 255, 0.75);
}

.kalvirox-carousel .carousel-indicators [type="button"].active {
    width: 2.85rem;
    background: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(201, 169, 98, 0.45);
}

.kalvirox-carousel .carousel-control-prev,
.kalvirox-carousel .carousel-control-next {
    width: 3rem;
    height: 3rem;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 1;
    border-radius: 50%;
    background: rgba(255, 252, 247, 0.95);
    border: 1px solid rgba(30, 42, 59, 0.08);
    box-shadow: var(--shadow-md);
    transition: background 0.2s ease, transform 0.2s ease;
}

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

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

.kalvirox-carousel .carousel-control-prev:hover,
.kalvirox-carousel .carousel-control-next:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
}

.kalvirox-carousel .carousel-control-prev-icon,
.kalvirox-carousel .carousel-control-next-icon {
    width: 1.25rem;
    height: 1.25rem;
    filter: invert(0.35) sepia(0.2) saturate(2);
}

@media (max-width: 575.98px) {
    .kalvirox-carousel .carousel-caption {
        bottom: 3.75rem;
        padding: 1rem 1.15rem;
    }

    .kalvirox-carousel .carousel-control-prev {
        left: 0.5rem;
    }

    .kalvirox-carousel .carousel-control-next {
        right: 0.5rem;
    }
}

.categories-section h2,
.featured-products h2,
section h2.text-center {
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.categories-section h2::after,
.featured-products h2::after {
    content: "";
    display: block;
    width: 3.5rem;
    height: 3px;
    margin: 0.75rem auto 0;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-burgundy));
    border-radius: var(--radius-pill);
}

.category-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(13, 59, 54, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

.category-content {
    padding: 1.5rem !important;
}

.category-content h2,
.category-content h3 {
    color: var(--primary-color);
}

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

.card {
    border: 1px solid rgba(30, 42, 59, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    background: var(--surface);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card-title {
    font-family: var(--font-display);
    color: var(--secondary-color);
}

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

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

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

.footer {
    background: linear-gradient(180deg, var(--surface) 0%, #f0ebe3 100%);
    box-shadow: 0 -4px 24px rgba(30, 42, 59, 0.06);
}

.footer-main {
    border-top: 1px solid rgba(13, 59, 54, 0.08);
}

.footer-title {
    font-family: var(--font-display);
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    letter-spacing: 0.12em;
}

.footer h5:not(.footer-title) {
    font-family: var(--font-ui);
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-description {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.contact-details {
    color: var(--muted);
    font-size: 0.9rem;
}

.contact-details i {
    color: var(--accent-gold);
    width: 20px;
}

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

footer a:hover {
    color: var(--primary-color) !important;
}

footer ul li {
    margin-bottom: 0.8rem;
}

.cookie-consent {
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    border-top: 2px solid var(--accent-gold);
}

.product-image {
    border: 1px solid rgba(30, 42, 59, 0.08);
    padding: 1rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.product-title {
    color: var(--secondary-color);
    font-weight: 700;
}

.product-price {
    font-size: 1.5rem;
    color: var(--accent-burgundy);
    font-weight: 700;
    font-family: var(--font-ui);
}

.product-description {
    color: var(--muted);
    line-height: 1.8;
}

.btn-primary {
    background: linear-gradient(145deg, var(--primary-color), var(--primary-deep));
    border: none;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 16px rgba(13, 59, 54, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    background: linear-gradient(145deg, var(--primary-deep), #06201c);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13, 59, 54, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-width: 2px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.78rem;
    border-radius: var(--radius-pill);
    padding: 0.55rem 1.35rem;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.contact-info-card {
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #ffffff 0%, var(--surface) 100%);
    border: 1px solid rgba(13, 59, 54, 0.06);
    box-shadow: var(--shadow-sm);
}

.contact-info-card i {
    color: var(--accent-gold);
    width: 24px;
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    border: 1px solid rgba(30, 42, 59, 0.12);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.22);
}

.business-hours-section .card {
    background: linear-gradient(165deg, #ffffff 0%, var(--surface) 100%);
    border-radius: var(--radius-lg);
}

.business-hours-section strong {
    color: var(--primary-color);
}
