:root {
    --primary-color: #0f2847;
    --primary-light: #1a3a5c;
    --accent-color: #c9a962;
    --accent-dark: #a68b4a;
    --background-color: #f8f6f2;
    --background-card: #fff;
    --text-color: #2d3748;
    --text-muted: #5a6578;
    --border-color: #e8e4dc;
    --shadow-sm: 0 2px 8px rgba(15, 40, 71, 0.08);
    --shadow-md: 0 4px 20px rgba(15, 40, 71, 0.12);
    --shadow-lg: 0 8px 32px rgba(15, 40, 71, 0.16);
}

body {
    background-color: var(--background-color);
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--text-color);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--background-card);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.header-top {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #fff;
}

.navbar-main {
    padding: 0.75rem 0;
    background-color: var(--background-card);
}

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

.nav-menu-equal {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
}
.nav-menu-equal .nav-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.nav-menu-equal .nav-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.6rem 0.5rem !important;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color) !important;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-menu-equal .nav-link:hover {
    color: var(--accent-dark) !important;
    background-color: rgba(201, 169, 98, 0.08);
}

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

.cart-btn {
    color: #fff !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
}
.cart-btn:hover {
    color: var(--accent-color) !important;
}
.cart-count {
    font-weight: 700;
    font-size: 0.95rem;
    min-width: 1.2em;
}

.search-form {
    max-width: 280px;
}
.search-form .form-control {
    border-radius: 24px 0 0 24px;
    border: 1px solid var(--border-color);
    border-right: none;
}
.search-form .btn-search {
    border-radius: 0 24px 24px 0;
    border: 1px solid var(--border-color);
    border-left: none;
    padding: 0.375rem 1rem;
    background: var(--background-card);
    color: var(--primary-color);
}
.search-form .btn-search:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-link {
    color: inherit;
    text-decoration: none;
}

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

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

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

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

.footer {
    background-color: var(--primary-color);
    color: #fff;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0;
}

.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(27, 54, 93, 0.95);
    color: #fff;
    padding: 1rem;
    z-index: 1000;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
}

.cookie-consent .cookie-content .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    font-weight: 600;
}
.cookie-consent .cookie-content .btn-primary:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
}

.product-image {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.product-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

.product-price {
    color: var(--accent-color);
}

.product-description {
    line-height: 1.6;
    color: var(--text-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: none;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    border: none;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.thank-you-content {
    color: var(--text-color);
    line-height: 1.6;
}

.contact-info {
    background-color: var(--background-card);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-info i {
    color: var(--accent-color);
}

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

.contact-info a:hover {
    color: var(--accent-color);
}

.carousel-modern {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}
.carousel-modern .carousel-inner {
    border-radius: 12px;
}
.carousel-modern .carousel-item {
    height: 520px;
    overflow: hidden;
}
.carousel-modern .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.carousel-modern .carousel-caption {
    bottom: 2.5rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(to top, rgba(15, 40, 71, 0.85) 0%, rgba(15, 40, 71, 0.5) 60%, transparent 100%);
    border-radius: 12px;
    text-align: center;
    color: #fff;
}
.carousel-modern .carousel-caption h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.carousel-modern .carousel-caption p {
    margin-bottom: 1.25rem;
    opacity: 0.95;
    font-size: 1.05rem;
}
.carousel-modern .carousel-caption .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 0.6rem 1.75rem;
    font-weight: 600;
}
.carousel-modern .carousel-caption .btn-primary:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
}

.carousel-modern .carousel-indicators {
    margin-bottom: 1rem;
    gap: 0.5rem;
}
.carousel-modern .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.9);
    background-color: rgba(255,255,255,0.4);
    opacity: 1;
    transition: background-color 0.25s ease, transform 0.25s ease;
}
.carousel-modern .carousel-indicators [data-bs-target]:hover {
    background-color: rgba(255,255,255,0.7);
}
.carousel-modern .carousel-indicators .active {
    background-color: #fff;
    transform: scale(1.2);
}

.carousel-modern .carousel-control-prev,
.carousel-modern .carousel-control-next {
    width: 4rem;
    opacity: 0.9;
}
.carousel-modern .carousel-control-prev-icon,
.carousel-modern .carousel-control-next-icon {
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.carousel-caption.text-dark {
    color: var(--text-color);
}
.carousel-modern .carousel-caption.text-dark {
    background: linear-gradient(to top, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 100%);
    color: var(--text-color);
}
.carousel-modern .carousel-caption.text-dark h1 {
    color: var(--primary-color);
}
.carousel-modern .carousel-caption.text-dark p {
    color: var(--text-color);
}

.intro-section .section-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 700;
}
.intro-section .text-muted {
    color: var(--text-muted) !important;
}
.intro-stats .stat-item {
    background: rgba(201, 169, 98, 0.12);
    border: 1px solid var(--border-color);
}
.intro-stats .stat-number {
    color: var(--primary-color);
}
.intro-stats .stat-label {
    color: var(--text-muted);
}

.why-section .why-card {
    background: var(--background-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-section .why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.why-section .text-accent,
.text-accent {
    color: var(--accent-color);
}
.why-section .text-muted {
    color: var(--text-muted) !important;
}

.quality-strip {
    background: linear-gradient(135deg, rgba(15, 40, 71, 0.04) 0%, rgba(201, 169, 98, 0.06) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.quality-strip .lead {
    font-size: 1.05rem;
    color: var(--text-color);
}

.faq-snippet .faq-item {
    background: var(--background-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.faq-snippet .faq-item h3 {
    color: var(--primary-color);
    font-weight: 600;
}
.faq-snippet .faq-item .text-muted {
    color: var(--text-muted) !important;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.category-content {
    padding: 1.5rem;
    background: var(--background-card);
}

.product-card {
    background: var(--background-card);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.product-card img {
    border-radius: 12px 12px 0 0;
    height: 300px;
    object-fit: cover;
}
.price {
    color: var(--accent-dark);
    font-size: 1.25rem;
    font-weight: 700;
}

.service-card {
    padding: 2rem;
    background: var(--background-card);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-card i {
    color: var(--accent-color);
}

.contact-form {
    border: 1px solid var(--border-color);
}

.category-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.category-header .lead {
    color: var(--text-color);
    line-height: 1.6;
}

.contact-hero {
    background: linear-gradient(135deg, var(--background-color) 0%, #fff 100%);
}

.contact-info-card,
.business-hours-card,
.contact-form-wrapper {
    background: var(--background-card);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

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

.contact-method a:hover {
    color: var(--accent-color);
}

.business-hours-card li {
    color: var(--text-color);
    font-size: 1.1rem;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, var(--background-card) 0%, var(--background-color) 100%);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--border-color);
    padding: 0.8rem;
    border-radius: 6px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(196, 164, 132, 0.25);
}

.privacy-policy {
    color: var(--text-color);
    line-height: 1.6;
}

.privacy-policy h1 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.privacy-policy h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.privacy-policy h3 {
    color: var(--accent-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-policy ul {
    margin-bottom: 1.5rem;
}

.privacy-policy li {
    margin-bottom: 0.5rem;
}

.privacy-policy a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-policy a:hover {
    color: var(--accent-color);
}

.privacy-policy address {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}
