:root {
    --gold: #C9A227;
    --gold-light: #E5D4A1;
    --gold-dark: #9A7B1A;
    --charcoal: #1C1C1C;
    --charcoal-soft: #2D2D2D;
    --navy: #1A2332;
    --cream: #F8F6F0;
    --cream-dark: #EDE9E0;
    --white: #FFFFFF;
    --text: #2D2D2D;
    --text-muted: #5C5C5C;
    --border: rgba(201, 162, 39, 0.25);
    --shadow: 0 4px 24px rgba(28, 28, 28, 0.08);
    --shadow-hover: 0 8px 32px rgba(28, 28, 28, 0.12);
}

body {
    background-color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    padding-top: 76px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    border-bottom: 1px solid var(--border);
    background: rgba(248, 246, 240, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

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

.navbar-brand {
    color: var(--charcoal);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    transition: color 0.25s ease;
}

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

.search-form {
    max-width: 320px;
    position: relative;
    margin-left: auto;
    margin-right: 1.5rem;
}

.search-form .form-control {
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    background-color: var(--white);
    font-size: 0.9rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.search-form .btn-search {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: var(--text-muted);
    padding: 0.25rem;
    transition: color 0.25s ease;
}

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

.nav-menu-items {
    display: flex;
    align-items: stretch;
    flex: 1;
    justify-content: space-between;
    gap: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: 0;
}

.nav-menu-items .nav-item {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    text-align: center;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    padding: 0.6rem 0.5rem;
    transition: color 0.25s ease, background 0.25s ease;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.nav-link:hover {
    color: var(--gold-dark);
    background: rgba(201, 162, 39, 0.08);
}

.cart-buttons {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.btn-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: var(--charcoal);
    color: var(--cream);
    border: none;
    padding: 0.5rem 0.85rem;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.25s ease, transform 0.2s ease;
}

.btn-cart:hover {
    background: var(--charcoal-soft);
    color: var(--cream);
    transform: translateY(-1px);
}

.btn-cart .snipcart-items-count {
    min-width: 1.25rem;
    height: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50%;
    padding: 0 0.25rem;
}

.btn-cart .snipcart-items-count:empty {
    display: none;
}

.snipcart-checkout .snipcart-total-price {
    display: none;
}

@media (max-width: 991px) {
    .nav-menu-items {
        flex: none;
        max-width: none;
        flex-direction: column;
        align-items: stretch;
    }
    .nav-menu-items .nav-item {
        flex: none;
    }
    .nav-link {
        justify-content: flex-start;
        padding: 0.75rem 1rem;
    }
}

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

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

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

.footer {
    background-color: var(--charcoal);
    border-top: none;
    padding: 4rem 0 2rem;
    color: var(--cream);
    margin-top: 4rem;
}

.footer h5 {
    color: var(--gold-light);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--cream-dark);
}

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

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

.footer-links a {
    color: var(--cream-dark);
    text-decoration: none;
    transition: color 0.25s ease;
}

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

.footer address {
    font-style: normal;
    font-size: 1rem;
    color: var(--cream-dark);
}

.footer address i {
    color: var(--gold-light);
    width: 20px;
    margin-right: 8px;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--cream);
    border-top: 1px solid var(--border);
    padding: 1rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1020;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: var(--gold-dark);
    text-decoration: none;
}

.cookie-content .btn-primary {
    background-color: var(--gold);
    border: none;
    color: var(--charcoal);
    padding: 0.5rem 2rem;
    border-radius: 24px;
    font-weight: 500;
    transition: background 0.25s ease;
}

.cookie-content .btn-primary:hover {
    background-color: var(--gold-dark);
    color: var(--cream);
}

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

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

.carousel-item {
    height: 520px;
    background: linear-gradient(145deg, var(--navy) 0%, var(--charcoal) 100%);
}

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

.carousel-caption {
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    padding: 2rem 2.5rem;
    max-width: 560px;
    margin: 0;
    background: rgba(248, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: var(--text);
    box-shadow: var(--shadow-hover);
}

.carousel-caption h1,
.carousel-caption h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
    font-size: 1.85rem;
}

.carousel-caption p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.carousel-caption .btn {
    border-radius: 24px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border: 2px solid var(--charcoal);
    color: var(--charcoal);
    background: transparent;
    transition: background 0.25s ease, color 0.25s ease;
}

.carousel-caption .btn:hover {
    background: var(--charcoal);
    color: var(--cream);
    border-color: var(--charcoal);
}

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

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--cream);
    background: transparent;
    opacity: 0.8;
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

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

.carousel-indicators .active {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    opacity: 1;
    transform: scale(1.2);
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--cream);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    opacity: 0.7;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.category-card .img-fluid {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.category-content {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--charcoal);
}

.category-content p {
    margin-bottom: 0;
    flex: 1;
    color: var(--text-muted);
}

.category-content .btn {
    border-radius: 24px;
    font-weight: 500;
    align-self: flex-start;
}

.featured-products h2,
.shop-page h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.5px;
}

.product-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.3s ease;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
    border-color: rgba(201, 162, 39, 0.4);
}

.product-card .product-link {
    display: block;
    overflow: hidden;
    background: var(--cream-dark);
}

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

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

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

.product-card .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
    line-height: 1.3;
}

.product-card .card-title a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.25s ease;
}

.product-card .card-title a:hover {
    color: var(--gold-dark);
}

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

.product-footer {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.product-card .price {
    color: var(--charcoal);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.product-card .price::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1em;
    background: var(--gold);
    margin-right: 0.5rem;
    vertical-align: middle;
}

.product-card .btn-primary,
.product-card .snipcart-add-item {
    width: 100%;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    background: var(--charcoal);
    border: none;
    color: var(--cream);
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.product-card .btn-primary:hover,
.product-card .snipcart-add-item:hover {
    background: var(--charcoal-soft);
    color: var(--cream);
    transform: translateY(-1px);
}

.service-card {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    height: 100%;
    background: var(--white);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.service-card i {
    color: var(--gold);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    margin: 1rem 0;
    color: var(--charcoal);
}

.contact-info {
    margin: 2rem 0;
}

.contact-info li {
    margin-bottom: 1rem;
    color: var(--text);
}

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

.contact-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-page .hero-section {
    background: linear-gradient(145deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding: 4rem 0;
    margin-top: 0;
}

.contact-page h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.form-label {
    color: var(--text);
    font-weight: 500;
}

.form-control, .form-select {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    background-color: var(--cream);
    color: var(--text);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.business-hours-section {
    background: linear-gradient(145deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.hours-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.hours-row .day {
    font-weight: 500;
    color: var(--text);
}

.hours-row .time {
    color: var(--gold-dark);
    font-weight: 600;
}

.directions h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--charcoal);
    margin: 1.5rem 0 1rem;
}

.directions ul li {
    margin-bottom: 0.8rem;
    color: var(--text);
}

.directions i {
    color: var(--gold);
}

.btn-primary {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
    font-weight: 500;
    border-radius: 24px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

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

.btn-outline-primary {
    border-color: var(--gold);
    color: var(--gold-dark);
    border-radius: 24px;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: rgba(201, 162, 39, 0.1);
    border-color: var(--gold-dark);
    color: var(--gold-dark);
}
