:root {
    --primary-color: #800020;
    --secondary-color: #d3d3d3;
    --background-color: #333333;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    padding-top: 90px;
}

@media (max-width: 991px) {
    body {
        padding-top: 80px;
    }
}

.site-header {
    background-color: var(--background-color);
}

.header-top {
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0;
}

.search-form {
    max-width: 300px;
    margin: 0 auto;
}

.search-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.search-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-form .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.2);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    background-color: var(--background-color);
    padding: 0.4rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 2px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: nowrap;
}

.navbar-nav .nav-item {
    flex: 1 1 auto;
    text-align: center;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-width: 0;
}

.nav-link {
    transition: color 0.3s ease;
    padding: 0.5rem 0.75rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 36px;
    white-space: nowrap;
}

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

@media (max-width: 991px) {
    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        flex: none;
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
        justify-content: flex-start;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

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

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

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

.snipcart-checkout {
    color: var(--secondary-color) !important;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.snipcart-checkout:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.15);
}

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

.snipcart-checkout .snipcart-items-count {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.site-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.site-footer a {
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.3rem 0;
    display: inline-block;
}

.site-footer a:hover {
    color: var(--primary-color) !important;
}

.site-footer address {
    line-height: 1.8;
}

.product-details {
    padding: 2rem 0;
}

.product-details h1 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
}

.product-details .price h2 {
    color: var(--primary-color);
    font-weight: 600;
}

.product-details img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-details .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.thank-you-section {
    min-height: 60vh;
}

.thank-you-section h1 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
}

.thank-you-content {
    background: #fff;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.thank-you-content .contact-info {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 2rem;
}

.cookie-consent {
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-consent .btn-primary {
    min-width: 100px;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.carousel-item {
    height: 600px;
    background-color: #000;
    transition: transform 0.6s ease-in-out;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    opacity: 0.75;
    transition: opacity 0.6s ease-in-out;
}

.carousel-item.active img {
    opacity: 0.85;
}

.carousel-caption {
    top: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    border-radius: 12px;
    left: 50%;
    width: auto;
    max-width: 80%;
}

.carousel-caption.text-dark {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    color: #333;
}

.carousel-caption h1,
.carousel-caption h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
    color: white;
}

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

.carousel-caption p {
    font-size: 1.25rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    color: rgba(255, 255, 255, 0.95);
}

.carousel-caption.text-dark p {
    color: #4a4a4a;
    text-shadow: none;
}

.carousel-caption .btn {
    animation: fadeInUp 0.8s ease-out 0.4s both;
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .carousel-caption {
        padding: 1.5rem 2rem;
        max-width: 90%;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

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

.carousel-indicators {
    margin-bottom: 20px;
    gap: 12px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    opacity: 0.7;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.carousel-indicators [data-bs-target]:hover {
    opacity: 1;
    transform: scale(1.2);
}

.carousel-indicators .active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 1;
    width: 32px;
    border-radius: 6px;
    transform: scale(1.1);
}

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

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.category-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.category-content {
    padding: 2rem;
    background: rgba(255,255,255,0.9);
}

.category-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin-bottom: 1rem;
}

.product-card {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-content h3 a {
    color: var(--background-color);
    text-decoration: none;
}

.product-content .price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card {
    padding: 2rem;
    background: white;
    border-radius: 4px;
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin: 1rem 0;
}

.contact-section form {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin-bottom: 1.5rem;
}

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

.category-header {
    padding: 3rem 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.category-header h1 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
}

.category-header .lead {
    max-width: 800px;
    margin: 0 auto;
    color: #4a4a4a;
}

.products-grid {
    padding: 3rem 0;
}

.process-section {
    position: relative;
}

.process-step {
    padding: 2rem;
    background: white;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.pricing-card {
    height: 100%;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card .card-header {
    background-color: var(--background-color);
    color: white;
}

.pricing-card .card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.team-card {
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.progress-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.progress {
    height: 1.5rem;
    background-color: rgba(0,0,0,0.1);
}

.progress-bar {
    background-color: var(--primary-color);
}

.options-section .card {
    transition: transform 0.3s ease;
}

.options-section .card:hover {
    transform: translateY(-5px);
}

.gallery-section .card {
    overflow: hidden;
}

.gallery-section .card img {
    transition: transform 0.3s ease;
    height: 300px;
    object-fit: cover;
}

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

.booking-section .card {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.style-content {
    margin-top: 2rem;
}

.color-card {
    background: white;
    padding: 1.5rem;
    border-radius: 4px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.color-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.examples-section .card {
    transition: transform 0.3s ease;
}

.examples-section .card:hover {
    transform: translateY(-5px);
}

.examples-section .card img {
    height: 300px;
    object-fit: cover;
}

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

.contact-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--background-color) 0%, #4a4a4a 100%);
    color: white;
}

.contact-info-section {
    position: relative;
    margin-top: -3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), #a04040);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin-bottom: 1rem;
}

.form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin-bottom: 2rem;
}

.contact-content {
    padding: 2.5rem;
}

.contact-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin-bottom: 1.5rem;
}

.service-highlights {
    margin-top: 2rem;
}

.service-highlights h3 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin-bottom: 1rem;
}

.service-highlights li {
    margin-bottom: 0.75rem;
    color: #4a4a4a;
}

.service-highlights i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.privacy-policy {
    padding: 2rem 0;
    color: #333;
}

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

.privacy-policy h2 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.privacy-policy p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

.privacy-policy address {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    line-height: 1.8;
}

.cookie-policy {
    padding: 2rem 0;
    color: #333;
}

.cookie-policy h1 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin-bottom: 1rem;
}

.cookie-policy h2, 
.cookie-policy h3 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin: 2rem 0 1rem;
}

.cookie-policy h2 {
    font-size: 1.5rem;
}

.cookie-policy h3 {
    font-size: 1.25rem;
}

.cookie-policy p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cookie-policy address {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    line-height: 1.8;
}

.terms-policy {
    padding: 2rem 0;
    color: #333;
}

.terms-policy h1 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin-bottom: 1rem;
}

.terms-policy h2 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.terms-policy h3 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.25rem;
}

.terms-policy p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.terms-policy ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.terms-policy li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.terms-policy address {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    line-height: 1.8;
}

.service-policy {
    padding: 2rem 0;
    color: #333;
}

.service-policy h1 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin-bottom: 1rem;
}

.service-policy h2 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.service-policy h3 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.25rem;
}

.service-policy p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-policy ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-policy li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-policy address {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    line-height: 1.8;
}

.payment-policy {
    padding: 2rem 0;
    color: #333;
}

.payment-policy h1 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin-bottom: 1rem;
}

.payment-policy h2 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.payment-policy h3 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.25rem;
}

.payment-policy p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.payment-policy ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.payment-policy li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.payment-policy address {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    line-height: 1.8;
}

.returns-policy {
    padding: 2rem 0;
    color: #333;
}

.returns-policy h1 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin-bottom: 1rem;
}

.returns-policy h2 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.returns-policy h3 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.25rem;
}

.returns-policy p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.returns-policy ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.returns-policy li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.returns-policy address {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    line-height: 1.8;
}

.shipping-policy {
    padding: 2rem 0;
    color: #333;
}

.shipping-policy h1 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin-bottom: 1rem;
}

.shipping-policy h2 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.shipping-policy h3 {
    font-family: 'Playfair Display', serif;
    color: var(--background-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.25rem;
}

.shipping-policy p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.shipping-policy ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.shipping-policy li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.shipping-policy address {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    line-height: 1.8;
}
