
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Source+Sans+Pro:wght@400;600&display=swap');

:root {
    --primary-red: #EF4444;
    --primary-blue: #60A5FA;
    --primary-green: #00A651;
    --warm-white: #FAFAF9;
    --light-gray: #F3F4F6;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: var(--warm-white);
}

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


.navbar {
    background-color: rgba(250, 250, 249, 0.98) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 0.5rem 0;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    width: 100%;
    min-height: 60px;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--primary-red) !important;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
}

.search-form {
    position: relative;
    max-width: 300px;
    margin: 0 1rem;
}

.search-form input {
    width: 100%;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    background-color: #F9FAFB;
    transition: all 0.3s ease;
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.2);
}

.search-form button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6B7280;
    cursor: pointer;
}

.nav-link {
    color: #374151 !important;
    transition: color 0.3s ease;
    padding: 0.5rem 0.75rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    text-align: center;
}

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

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

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


.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,165,81,0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #009548;
    border-color: #009548;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0,165,81,0.3);
}


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

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

.breadcrumb-item.active {
    color: #6B7280;
}


.cart-button {
    background: none;
    border: none;
    padding: 0.4rem 0.75rem;
    color: #374151;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cart-button:hover {
    color: var(--primary-red);
}

.cart-count {
    background-color: var(--primary-red);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 20px;
}


.container {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

body {
    padding-top: 60px;
}


footer {
    background-color: var(--light-gray);
    padding: 3rem 0;
    margin-top: 3rem;
}

.footer-heading {
    font-family: 'Montserrat Alternates', sans-serif;
    color: #374151;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-description {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact {
    color: #6B7280;
}


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

.product-image {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-title {
    color: #374151;
    margin-bottom: 1rem;
}

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

.product-description {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-actions {
    margin-top: 2rem;
}


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

.cookie-consent.show {
    display: block;
}

.cookie-text {
    color: #374151;
    margin-bottom: 1rem;
}

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


.thank-you-container {
    padding: 4rem 0;
}

.thank-you-container .card {
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    background-color: var(--warm-white);
}

.contact-info {
    color: #6B7280;
}

.contact-info i {
    color: var(--primary-green);
    width: 20px;
}

.hero-section {
    margin-top: 60px;
    position: relative;
}

.carousel-item {
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    background-color: var(--warm-white);
    position: relative;
    overflow: hidden;
}

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

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

.carousel-caption {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 249, 0.95));
    padding: 3rem;
    border-radius: 16px;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1F2937;
}

.carousel-caption p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4B5563;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators 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);
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    width: 32px;
    border-radius: 6px;
}


.category-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

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

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(255,255,255,0.9));
    color: #374151;
}


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

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.product-card a {
    position: relative;
    overflow: hidden;
    display: block;
}

.product-card img {
    height: 350px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

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

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

.product-card .card-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    min-height: 3.2em;
}

.product-card .card-title a {
    color: #1F2937;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .card-title a:hover {
    color: var(--primary-red);
}

.product-card .price {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-family: 'Playfair Display', serif;
}

.product-card .btn-primary {
    margin-top: auto;
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}


.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-info-section .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background: linear-gradient(145deg, var(--warm-white), #ffffff);
    transition: transform 0.3s ease;
}

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

.contact-info-section .card h3 {
    color: #374151;
    font-family: 'Montserrat Alternates', sans-serif;
    margin-bottom: 1.5rem;
}

.contact-info-section .card i {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

.contact-form-section .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: linear-gradient(165deg, #ffffff, var(--warm-white));
}

.contact-form-section .form-label {
    color: #374151;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.2);
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-section .accordion-button {
    background: linear-gradient(145deg, #ffffff, var(--warm-white));
    color: #374151;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    padding: 1.25rem;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary-green);
    background: linear-gradient(145deg, var(--warm-white), #ffffff);
}

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


@media (max-width: 768px) {
    .carousel-item {
        height: 50vh;
        min-height: 400px;
    }
    
    .carousel-caption {
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .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;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        justify-content: flex-start;
    }
    
    .product-card img {
        height: 280px;
    }
    
    .hero-section {
        margin-top: 50px;
    }
    
    body {
        padding-top: 50px;
    }
    
    .navbar {
        min-height: 50px;
        padding: 0.4rem 0;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 40vh;
        min-height: 300px;
    }
    
    .carousel-caption {
        padding: 1rem;
    }
    
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .product-card img {
        height: 250px;
    }
}
