/* Colors */
:root {
    --bg-color: #F5FAFF;
    --primary-blue: #5AB5FF;
    --accent-mint: #7ADBC3;
    --accent-coral: #FF6B6B;
    --button-green: #00A651;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@500;600;700&family=Raleway:wght@300;400;500;600&display=swap');

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--bg-color);
    font-weight: 400;
}

/* Header & Navigation */
.search-form {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.search-form input {
    width: 100%;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
}

.search-form button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--button-green);
    padding: 0;
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(90, 181, 255, 0.1);
}
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

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

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

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Buttons */
.btn-primary {
    background-color: var(--button-green);
    border-color: var(--button-green);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--button-green);
    border-color: var(--button-green);
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(0,166,81,0.2);
}

/* Cart & Account buttons */
.btn-link {
    color: #333;
    text-decoration: none;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.btn-link:hover {
    color: var(--button-green);
}

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

.cart-count {
    background-color: var(--button-green);
    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;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 0;
    font-size: 0.9rem;
}

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

.breadcrumb-item.active {
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem 0;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        width: 100%;
        padding: 0.75rem 1rem;
    }
    
    .ms-lg-4 {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .carousel-caption {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .carousel-caption h1 {
        font-size: 1.75rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.footer-title {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #666;
    line-height: 1.6;
}

.company-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

.company-info i {
    color: var(--button-green);
    width: 20px;
    margin-right: 10px;
}

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

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

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    margin-top: 2rem;
}

.copyright {
    color: #888;
    font-size: 0.9rem;
}

/* Cookie Consent Banner */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    color: #666;
}

.cookie-content a {
    color: var(--button-green);
    text-decoration: none;
}

.cookie-content .btn {
    white-space: nowrap;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    margin-top: 0;
}

#heroCarousel {
    border-radius: 0;
    overflow: hidden;
}

.carousel-item {
    height: 600px;
    background-color: var(--bg-color);
    position: relative;
}

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

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

.carousel-caption {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 250, 255, 0.95) 100%);
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    max-width: 650px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease;
}

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

.carousel-caption h1 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.carousel-caption p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.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;
    backdrop-filter: blur(10px);
}

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

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

.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 20px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--button-green);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-size: 60%;
}

.carousel-indicators {
    margin-bottom: 30px;
}

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

.carousel-indicators [data-bs-target].active {
    background-color: var(--button-green);
    border-color: var(--button-green);
    width: 30px;
    border-radius: 6px;
}

/* Category Cards */
.category-card {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.category-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    padding: 2rem;
}

.category-content {
    padding: 2rem;
    text-align: center;
}

.category-content h3 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Product Cards */
.product-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    padding: 1rem;
}

.product-content {
    padding: 1.5rem;
}

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

.product-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-content h3 a:hover {
    color: var(--button-green);
}

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

/* Benefits Section */
.benefit-card {
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.benefit-card h3 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.contact-info h3 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

/* Product Page Styles */
.product-image-container {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.product-title {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.product-price .price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--button-green);
}

.product-description {
    color: #666;
    line-height: 1.6;
}

.product-features h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 0.5rem 0;
    color: #666;
}

.product-features li:before {
    content: "✓";
    color: var(--button-green);
    margin-right: 0.5rem;
}
/* Contact Page Styles */
.contact-info-section .card {
    background: linear-gradient(to bottom right, #fff, #f8fbff);
    border: none;
    border-radius: 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.contact-details h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

.contact-info-section .form-label {
    color: #333;
    font-weight: 500;
}

.contact-info-section .form-control,
.contact-info-section .form-select {
    border-radius: 0.5rem;
    border: 1px solid #e0e0e0;
    padding: 0.75rem;
    transition: all 0.2s ease;
}

.contact-info-section .form-control:focus,
.contact-info-section .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(90, 181, 255, 0.1);
}

.faq-links .card {
    background: linear-gradient(to bottom right, #fff, #f8fbff);
    border: none;
    border-radius: 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.faq-links h3 {
    color: #333;
    font-size: 1.25rem;
    margin: 1rem 0;
}

.faq-links p {
    color: #666;
    margin-bottom: 1.5rem;
}
