/* Main styles */
/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 2rem;
}

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

.carousel-item {
    height: 600px;
    background-color: var(--primary-bg);
    transition: transform 0.6s ease-in-out;
}

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

.carousel-item:hover img {
    transform: scale(1.05);
}

.carousel-caption {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.carousel-caption h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-gray);
}

.carousel-caption p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Carousel Indicators - Modern Style */
.carousel-indicators {
    display: none !important;
}

.carousel-indicators [type="button"] {
    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: 1;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    text-indent: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.carousel-indicators [type="button"]:not(.active) {
    background-color: rgba(255, 255, 255, 0.4);
}

.carousel-indicators [type="button"].active {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    width: 32px;
    border-radius: 6px;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(124, 141, 163, 0.4);
}

.carousel-indicators [type="button"]:hover:not(.active) {
    background-color: rgba(124, 141, 163, 0.6);
    border-color: rgba(124, 141, 163, 0.8);
    transform: scale(1.1);
}

/* Carousel Controls - Modern Style */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

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

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

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(30%) sepia(10%) saturate(1500%) hue-rotate(190deg) brightness(90%) contrast(85%);
}

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

/* Category Cards */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.category-content {
    padding: 2rem;
    background: white;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.product-content {
    padding: 1.5rem;
}

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

.product-card h3 {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.product-card .price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-gray);
}

.product-card .description {
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 100%;
}

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

/* Contact Section */
.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 1rem;
    color: var(--accent-blue);
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}
:root {
    --primary-bg: #f8f9fa;
    --accent-gray: #4a4a4a;
    --accent-blue: #7c8da3;
    --border-color: #e9ecef;
}

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

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

/* Header styles */
.site-header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar {
    padding: 0.75rem 0;
    min-height: 60px;
}

.navbar .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-brand {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-gray);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    height: 60px;
    line-height: 60px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    height: 60px;
    flex-wrap: nowrap;
}

.nav-item {
    display: flex;
    align-items: center;
    height: 60px;
}

.nav-link {
    font-weight: 500;
    color: var(--accent-gray);
    transition: all 0.3s ease;
    padding: 0.75rem 1rem !important;
    margin: 0 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    border-radius: 6px;
    white-space: nowrap;
    text-align: center;
    min-width: fit-content;
}

.nav-link:hover {
    color: var(--accent-blue);
    background-color: rgba(124, 141, 163, 0.08);
}

/* Search styles */
.search-input {
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    width: 200px;
    transition: all 0.3s ease;
    height: 38px;
}

.search-input:focus {
    width: 300px;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(124, 141, 163, 0.25);
}

.navbar-collapse {
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #ffffff !important;
        border-top: 1px solid var(--border-color);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        opacity: 1 !important;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        background-color: #ffffff;
    }
    
    .nav-item {
        width: 100%;
        background-color: #ffffff;
    }
    
    .nav-link {
        width: 100%;
        padding: 0.75rem 1rem !important;
        color: var(--accent-gray) !important;
        background-color: #ffffff;
        border-radius: 6px;
        margin-bottom: 0.25rem;
    }
    
    .nav-link:hover {
        color: var(--accent-blue) !important;
        background-color: rgba(124, 141, 163, 0.1);
    }
    
    .cart-wrapper {
        margin-top: 1rem;
        width: 100%;
        justify-content: flex-start;
        background-color: #ffffff;
        padding: 0.5rem 1rem;
        border-radius: 6px;
    }
}

/* Footer styles */
.site-footer {
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

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

.site-footer p {
    color: #6c757d;
    line-height: 1.6;
}

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

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

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Breadcrumb styles */
.breadcrumb {
    background: transparent;
    padding: 0.75rem 0;
}

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

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

/* Cart and user buttons */
.cart-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.cart-wrapper:hover {
    background-color: rgba(124, 141, 163, 0.08);
}

.btn-link.snipcart-checkout {
    color: var(--accent-gray);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    height: 40px;
    min-width: 40px;
}

.btn-link.snipcart-checkout:hover {
    color: var(--accent-blue);
    background-color: rgba(124, 141, 163, 0.08);
}

.btn-link.snipcart-checkout i {
    font-size: 1.2rem;
    line-height: 1;
}

.snipcart-items-count {
    background-color: var(--accent-blue);
    color: white;
    border-radius: 50%;
    min-width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: -5px;
    right: -5px;
    padding: 0 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

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

.snipcart-total-price,
.snipcart-total-price::before,
.snipcart-total-price::after {
    display: none !important;
    visibility: hidden !important;
}

.btn-link.snipcart-checkout {
    position: relative;
}
/* Contact page styles */
.hero-section {
    background: linear-gradient(135deg, var(--primary-bg) 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin-bottom: 0;
}

.contact-info-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-info-card .card {
    border: none;
}

.contact-info-card address {
    margin-bottom: 1.5rem;
}

.contact-info-card i {
    color: var(--accent-blue);
    width: 24px;
    margin-right: 10px;
}

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

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

.contact-form-section .form-control,
.contact-form-section .form-select {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 0.75rem;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(124, 141, 163, 0.25);
}

.faq-section .accordion-button {
    background: white;
    color: var(--accent-gray);
    font-weight: 500;
    padding: 1.25rem;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--accent-blue);
    background: linear-gradient(to right, rgba(124, 141, 163, 0.1), white);
}

.faq-section .accordion-body {
    color: #6c757d;
    padding: 1.25rem;
    line-height: 1.6;
}
