body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #f5f6f7;
    color: #2c3e50;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

.site-header {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-link {
    color: #34495e;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 1rem !important;
}

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

.search-form .form-control {
    border-radius: 20px 0 0 20px;
    border: 1px solid #e0e0e0;
}

.search-form .btn {
    border-radius: 0 20px 20px 0;
    border: 1px solid #e0e0e0;
    border-left: none;
}

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

.snipcart-checkout,
.snipcart-customer-signin {
    color: #2c3e50;
    text-decoration: none;
    padding: 0.5rem;
}

.product-card {
    background: white;
    border: none;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-card img {
    aspect-ratio: 1;
    object-fit: cover;
}

.product-tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.875rem;
    margin: 0.25rem;
}

.grid-bg {
    background-image: linear-gradient(rgba(200,200,200,0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(200,200,200,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

:root {
    --primary-color: #34495e;
    --secondary-color: #7f8c8d;
    --accent-color: #95a5a6;
}

.contact-hero {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 4rem 0;
}

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

.contact-form-section {
    background-image: linear-gradient(rgba(200,200,200,0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(200,200,200,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.contact-details {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.site-footer {
    border-top: 1px solid #e0e0e0;
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.footer-links a {
    color: #666;
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: color 0.2s ease;
}

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

address {
    color: #666;
    line-height: 1.6;
}

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

.carousel-inner {
    border-radius: 12px;
}

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

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 0 0 12px 12px;
    backdrop-filter: blur(2px);
}

.carousel-caption::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 12px 12px;
    z-index: -1;
}

.carousel-caption h1,
.carousel-caption h2 {
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.carousel-caption p {
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.carousel-caption .btn {
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 10px;
    flex-wrap: wrap;
}

.carousel-indicators [type="button"] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    text-indent: 0;
    opacity: 1;
    box-sizing: border-box;
}

.carousel-indicators [type="button"]:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.carousel-indicators [type="button"].active {
    background-color: #fff;
    width: 32px;
    border-radius: 6px;
    border-color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 10;
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    filter: invert(1);
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c3e50'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c3e50'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar {
    padding: 0.75rem 0;
}

.navbar-nav {
    display: flex;
    align-items: stretch;
    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;
}

.navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(52, 73, 94, 0.05);
}

.snipcart-checkout {
    position: relative;
    padding: 0.5rem 1rem !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #2c3e50;
}

.snipcart-checkout i {
    font-size: 1.25rem;
}

.snipcart-checkout .snipcart-items-count {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    position: relative;
    top: 0;
    left: 0;
}

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

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .filters-button {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .carousel-item img {
        height: 300px;
    }
    
    .carousel-caption {
        padding: 1.5rem 1rem;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.6) 100%);
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.75rem;
    }
    
    .carousel-caption p {
        font-size: 0.95rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .navbar-nav .nav-item {
        flex: none;
    }
}

.category-card {
    overflow: hidden;
    border-radius: 8px;
}

.category-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.category-overlay > div {
    background: rgba(255, 255, 255, 0.85);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.category-overlay h2,
.category-overlay h3 {
    color: #2c3e50 !important;
    text-shadow: none;
}

.category-overlay p {
    color: #34495e !important;
    text-shadow: none;
}
