.contact-info .card {
    background: linear-gradient(to bottom right, #fff, #f8f9fa);
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.contact-info .card-body {
    padding: 2rem;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-info address {
    line-height: 1.8;
}

.contact-form-section .card {
    background: linear-gradient(to bottom, #fff, #f8f9fa);
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.contact-form-section .form-label {
    color: var(--primary-color);
    font-weight: 500;
}

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

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(222,184,135,0.25);
}

.contact-form-section .btn-primary {
    padding: 0.75rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
:root {
    --primary-color: #1e3d59;
    --secondary-color: #deb887;
    --background-color: #fffdf6;
    --text-color: #2c3e50;
    --border-color: #e1e8ed;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.site-header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.header-top {
    border-bottom: 1px solid var(--border-color);
}

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

.search-form .form-control {
    border-radius: 20px 0 0 20px;
    border: 1px solid var(--border-color);
}

.search-form .btn {
    border-radius: 0 20px 20px 0;
    border: 1px solid var(--border-color);
    border-left: none;
}

.cart-btn .snipcart-total-price {
    display: none;
}

.cart-btn .snipcart-items-count {
    margin-left: 0.25rem;
    font-weight: 600;
    min-width: 1.25rem;
    display: inline-block;
}

.navbar-menu {
    padding: 0;
}

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

.nav-menu-list .nav-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu-list .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 0.75rem;
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.2s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-menu-list .nav-link:hover {
    color: var(--secondary-color) !important;
    background-color: rgba(222, 184, 135, 0.08);
}

.navbar {
    padding: 0;
}

.nav-link {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

@media (max-width: 991px) {
    .header-top {
        padding-top: 0.35rem !important;
        padding-bottom: 0.35rem !important;
    }
    .navbar-menu {
        padding-top: 0.35rem !important;
        padding-bottom: 0.35rem !important;
    }
    .navbar-brand {
        font-size: 1.35rem;
    }
}

@media (max-width: 576px) {
    .header-top {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    .navbar-menu {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    .navbar-brand {
        font-size: 1.2rem;
    }
    .navbar-toggler {
        padding: 0.25rem 0.4rem;
        font-size: 0.9rem;
    }
}

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

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

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

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: var(--secondary-color);
}

.site-footer {
    background-color: #fff;
    border-top: 1px solid var(--border-color);
}

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

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

.list-unstyled a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 2;
}

.list-unstyled a:hover {
    color: var(--primary-color);
}

.nav-link, .btn-link {
    transition: all 0.3s ease;
}

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

.hero-section .carousel {
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 32px rgba(30, 61, 89, 0.12);
}

.hero-section .carousel-inner {
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.hero-section .carousel-item {
    transition: transform 0.6s ease-in-out;
}

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

.hero-section .carousel-caption {
    bottom: 2rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
    border-radius: 10px;
    text-align: center;
}

.hero-section .carousel-caption h1 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-section .carousel-caption .lead,
.hero-section .carousel-caption p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-section .carousel-caption.text-dark h1,
.hero-section .carousel-caption.text-dark .lead,
.hero-section .carousel-caption.text-dark p {
    color: #fff !important;
}

.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.25s ease, background 0.25s ease;
    border: 1px solid rgba(30, 61, 89, 0.15);
}

.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 {
    width: 1.25rem;
    height: 1.25rem;
    background-size: 100%;
    filter: invert(15%) sepia(30%) saturate(80%);
}

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

.hero-section .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.5);
    opacity: 1;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

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

.hero-section .carousel-indicators .active {
    background-color: #fff;
    border-color: #fff;
    transform: scale(1.15);
}

body {
    background-image: linear-gradient(180deg, rgba(222, 184, 135, 0.06) 0%, transparent 12rem), linear-gradient(90deg, rgba(30, 61, 89, 0.02) 0%, transparent 50%, rgba(222, 184, 135, 0.03) 100%);
    background-attachment: fixed;
}

.navbar-brand {
    position: relative;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    transition: width 0.35s ease, left 0.35s ease;
    transform: translateX(-50%);
}

.navbar-brand:hover::after {
    width: 100%;
    left: 50%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a5070 100%);
    border: none;
    box-shadow: 0 4px 14px rgba(30, 61, 89, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2a5070 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 61, 89, 0.4);
}

.btn-outline-primary {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-outline-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 61, 89, 0.2);
}

section .container > h1.text-center::after,
section .container > h2.text-center::after {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), rgba(222, 184, 135, 0.4));
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(30, 61, 89, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border-top: 3px solid transparent;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(30, 61, 89, 0.14);
    border-top-color: var(--secondary-color);
}

.card-img-top {
    transition: transform 0.5s ease;
    overflow: hidden;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.products-section .row,
.products-grid .row,
.featured-products .row {
    align-items: start;
}

.products-section .card,
.products-grid .card,
.featured-products .card {
    height: auto;
}

.products-section .card a,
.products-grid .card a,
.featured-products .card a {
    overflow: hidden;
    display: block;
}

.products-section .card .card-img-top,
.products-grid .card .card-img-top,
.featured-products .card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.category-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30, 61, 89, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border-top: 3px solid var(--secondary-color);
    background: #fff;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(30, 61, 89, 0.18);
}

.category-card img {
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.06);
}

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

.category-card .btn {
    transition: transform 0.2s ease;
}

.category-card .btn:hover {
    transform: translateX(4px);
}

.site-footer {
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color)) 1;
    background: linear-gradient(180deg, #fff 0%, #faf9f7 100%);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--secondary-color);
    opacity: 0.7;
}

.hero-section .carousel-caption .btn-primary {
    padding: 0.6rem 1.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.contact-info .card,
.contact-form-section .card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info .card:hover,
.contact-form-section .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card,
.products-section .card,
.featured-products .card,
.products-grid .card {
    animation: fadeInUp 0.5s ease backwards;
}

.category-card:nth-child(1) { animation-delay: 0.05s; }
.category-card:nth-child(2) { animation-delay: 0.1s; }
.products-section .col-md-4:nth-child(1) .card { animation-delay: 0.05s; }
.products-section .col-md-4:nth-child(2) .card { animation-delay: 0.1s; }
.products-section .col-md-4:nth-child(3) .card { animation-delay: 0.15s; }
.products-section .col-md-4:nth-child(4) .card { animation-delay: 0.2s; }
.products-section .col-md-4:nth-child(5) .card { animation-delay: 0.25s; }
.products-section .col-md-4:nth-child(6) .card { animation-delay: 0.3s; }
.products-section .col-md-4:nth-child(7) .card { animation-delay: 0.35s; }
.products-section .col-md-4:nth-child(8) .card { animation-delay: 0.4s; }
.products-section .col-md-4:nth-child(9) .card { animation-delay: 0.45s; }
.products-section .col-md-4:nth-child(10) .card { animation-delay: 0.5s; }
.featured-products .col-md-4:nth-child(1) .card { animation-delay: 0.05s; }
.featured-products .col-md-4:nth-child(2) .card { animation-delay: 0.1s; }
.featured-products .col-md-4:nth-child(3) .card { animation-delay: 0.15s; }
.products-grid .col-md-4:nth-child(1) .card { animation-delay: 0.05s; }
.products-grid .col-md-4:nth-child(2) .card { animation-delay: 0.1s; }
.products-grid .col-md-4:nth-child(3) .card { animation-delay: 0.15s; }
.products-grid .col-md-4:nth-child(4) .card { animation-delay: 0.2s; }
.products-grid .col-md-4:nth-child(5) .card { animation-delay: 0.25s; }
