.contact-info {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(74, 93, 117, 0.08);
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12), 0 5px 15px rgba(0,0,0,0.08);
}

.contact-info h3,
.contact-info h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-1);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
    border-radius: 2px;
}

.contact-info h4 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
}

.contact-info p {
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info ul li {
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease;
}

.contact-info ul li:hover {
    color: var(--accent-1);
}

.contact-info i {
    color: var(--accent-1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 93, 117, 0.08);
    border-radius: 50%;
    padding: 0.5rem;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-form-section .card {
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    border-radius: 20px;
    overflow: hidden;
}

.contact-form-section .card-body {
    padding: 2.5rem;
}

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

.contact-form-section .form-control,
.contact-form-section .form-select {
    border: 2px solid rgba(74, 93, 117, 0.15);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 0.2rem rgba(74,93,117,0.15);
    background-color: #fff;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 0.2rem rgba(74,93,117,0.25);
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    background: #fff;
}

.faq-section .accordion-button {
    background: #fff;
    color: var(--text-dark);
    font-weight: 500;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(74, 93, 117, 0.05) 0%, rgba(240, 248, 255, 0.5) 100%);
    color: var(--accent-1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(74,93,117,0.15);
    border-color: var(--accent-1);
}

.faq-section .accordion-body {
    color: var(--text-light);
    line-height: 1.8;
    padding: 1.5rem;
    background: #fff;
}
:root {
    --primary-bg: #f0f8ff;
    --accent-1: #4a5d75;
    --accent-2: #636b75;
    --accent-3: #d6cdc4;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
    z-index: 1030;
}

.site-header.sticky-top {
    position: sticky;
    top: 0;
}

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

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--accent-2);
    padding: 0.75rem 1.25rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

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

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

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

.search-input {
    border: 1px solid var(--accent-3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    width: 250px;
}

.btn-search {
    background: none;
    border: none;
    color: var(--accent-2);
    padding: 0.5rem;
    margin-left: -40px;
}

.btn-search:hover {
    color: var(--accent-1);
}

.site-footer {
    background-color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.footer-heading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--accent-1);
}

.footer-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-style: normal;
}

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

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

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

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

.footer-hours {
    list-style: none;
    padding: 0;
    color: var(--text-light);
}

.footer-hours li {
    margin-bottom: 0.75rem;
}

.breadcrumb {
    background: transparent;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: var(--accent-2);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--accent-1);
}

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

.product-image {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15), 0 5px 15px rgba(0,0,0,0.1);
}

.product-title {
    color: var(--accent-1);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-price {
    font-size: 1.75rem;
    color: var(--accent-1);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-description {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
    border: none;
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(74, 93, 117, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent-1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 93, 117, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(74, 93, 117, 0.3);
}

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

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

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
}

.cart-btn .snipcart-items-count {
    background-color: var(--accent-1);
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 24px;
}

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

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

.carousel {
    position: relative;
    border-radius: 0;
}

.carousel-inner {
    border-radius: 0;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s ease;
}

.carousel-item.active img {
    filter: brightness(0.75);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    padding: 2rem 3rem;
    text-align: center;
    z-index: 10;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.3);
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.carousel-caption p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5), 0 1px 2px rgba(0,0,0,0.3);
    color: #fff;
    font-weight: 300;
    line-height: 1.6;
}

.carousel-caption .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-caption.text-dark {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.carousel-caption.text-dark h1,
.carousel-caption.text-dark p {
    color: var(--text-dark);
    text-shadow: none;
}

.carousel-caption.text-dark h1 {
    color: var(--accent-1);
}

.carousel-indicators {
    display: none !important;
}

.carousel-control-prev,
.carousel-control-next {
    width: 70px;
    height: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev {
    left: 40px;
}

.carousel-control-next {
    right: 40px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev:active,
.carousel-control-next:active {
    transform: translateY(-50%) scale(1.05);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    opacity: 1;
}

@media (max-width: 768px) {
    .carousel-item {
        height: 450px;
    }
    
    .carousel-caption {
        padding: 1.5rem 2rem;
        max-width: 90%;
    }
    
    .carousel-caption h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .carousel-caption p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .carousel-caption .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 55px;
        height: 55px;
    }
    
    .carousel-control-prev {
        left: 20px;
    }
    
    .carousel-control-next {
        right: 20px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 22px;
        height: 22px;
    }
    
}

@media (max-width: 576px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption {
        padding: 1.25rem 1.5rem;
    }
    
    .carousel-caption h1 {
        font-size: 1.8rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(74, 93, 117, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
}

.product-card .card-img-top {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 0;
}

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

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

.product-card .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-1);
    margin-bottom: 0.75rem;
}

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

.product-card .card-title a:hover {
    color: var(--accent-2);
}

.product-card .card-text {
    color: var(--accent-1);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15), 0 5px 15px rgba(0,0,0,0.1);
}

.category-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    padding: 2.5rem 2rem;
    color: #fff;
}

.category-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.category-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.95;
}

.category-content .btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(74, 93, 117, 0.08);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
}

.service-card i {
    color: var(--accent-1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--accent-1);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-card .btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

h2.text-center {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-1);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

h2.text-center::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
    border-radius: 2px;
}

.form-control {
    border-radius: 12px;
    border: 2px solid rgba(74, 93, 117, 0.15);
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 0.2rem rgba(74,93,117,0.15);
}

.btn-outline-primary {
    border: 2px solid var(--accent-1);
    color: var(--accent-1);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-outline-primary:hover {
    background: var(--accent-1);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 93, 117, 0.3);
}
