:root {
    --primary-bg: #F8F7F4;
    --accent-gold: #C6A76E;
    --accent-pink: #F5C2B6;
    --text-gray: #4A4A4A;
    --button-gradient-start: #F9D7C4;
    --button-gradient-end: #E9B992;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-gray);
    font-family: 'Montserrat', sans-serif;
}

.site-header {
    border-bottom: 1px solid rgba(198, 167, 110, 0.2);
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 3px;
    font-size: 1.8rem;
}

.nav-link {
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    font-weight: 400;
    padding: 0.75rem 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.navbar-nav {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    min-height: 60px;
}

.navbar-nav .nav-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.search-form {
    position: relative;
    width: 200px;
}

.search-form .form-control {
    border: 1px solid rgba(198, 167, 110, 0.3);
    border-radius: 20px;
    padding-right: 35px;
    font-size: 0.9rem;
    background-color: var(--primary-bg);
}

.search-form .btn {
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    background: none;
    color: var(--accent-gold);
    padding: 0.375rem 0.75rem;
}

.header-actions {
    margin-left: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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

.snipcart-items-count {
    background-color: var(--accent-gold);
    color: white;
    border-radius: 50%;
    padding: 0.2rem 0.4rem;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 0.5rem;
    min-width: 1.2rem;
    text-align: center;
    display: inline-block;
}

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

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

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

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        margin-top: 1rem;
    }
}

.footer {
    background-color: white;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer {
    background-color: white;
    border-top: 1px solid rgba(198, 167, 110, 0.2);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

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

.service-info .list-group-item {
    border-left: 3px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.service-info .list-group-item:hover {
    background-color: rgba(198, 167, 110, 0.1);
    transform: translateX(5px);
}

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

.contact-form-section .card {
    border: none;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    border-radius: 0;
    border: 1px solid rgba(198, 167, 110, 0.3);
    padding: 0.8rem;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(198, 167, 110, 0.25);
}

.contact-form-section .btn-primary {
    padding: 0.8rem 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.alert-info {
    background-color: rgba(245, 194, 182, 0.1);
    border-color: var(--accent-pink);
    color: var(--text-gray);
}

.footer-title {
    color: var(--accent-gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
}

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

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

.company-info {
    color: var(--text-gray);
}

.company-info i {
    color: var(--accent-gold);
    width: 20px;
    margin-right: 8px;
}

.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(to right, var(--button-gradient-start), var(--button-gradient-end));
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: white;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, var(--button-gradient-end), var(--button-gradient-start));
}

.navbar {
    padding: 0;
    align-items: center;
}

.navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Hero Carousel Styles */
.hero-section {
    position: relative;
    margin-bottom: 3rem;
}

.hero-section .carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
}

.carousel-caption h1,
.carousel-caption h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
}

.carousel-caption p {
    color: #f8f8f8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.carousel-caption .btn {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(198, 167, 110, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}
