:root {
    --primary-color: #00C2A8;
    --secondary-color: #8BE000;
    --text-color: #2C3E50;
    --light-gray: #F8F9FA;
}

body {
    font-family: 'Raleway', sans-serif;
    padding-top: 76px;
    color: var(--text-color);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 194, 168, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 224, 0, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    background-attachment: fixed;
    background-size: 100% 100%;
    min-height: 100vh;
}

.navbar-brand {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.navbar-brand:hover {
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(0, 194, 168, 0.3);
}

.search-input {
    border-radius: 20px 0 0 20px;
    border-right: none;
    min-width: 200px;
}

.search-input:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.search-input + .btn {
    border-radius: 0 20px 20px 0;
    border-left: none;
}

.footer-brand {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.contact-info p {
    transition: all 0.3s ease;
    color: var(--text-color);
    font-weight: 500;
}

.contact-info p:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form-section .card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-section .card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.contact-info-section .fa-3x {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-section .accordion-button {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    font-weight: 500;
    color: var(--text-color);
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
    left: 10%;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 194, 168, 0.2);
}

.breadcrumb {
    margin: 1rem 0;
    padding: 0.5rem 0;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    animation: fadeIn 0.5s ease;
}

/* Enhanced Carousel Styles */
.hero-section {
    margin-bottom: 2rem;
}

.carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 194, 168, 0.1);
}

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

.carousel-item {
    height: 450px !important;
    transition: all 0.6s ease-in-out;
}

.carousel-item img {
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.6s ease-in-out;
}

.carousel-item:hover img {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.02);
}

.carousel-caption {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.carousel-caption h1,
.carousel-caption h2 {
    color: var(--text-color) !important;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.carousel-caption p {
    color: var(--text-color) !important;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(0, 194, 168, 0.2);
    transition: all 0.3s ease;
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 194, 168, 0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: none;
    width: 20px;
    height: 20px;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-item {
        height: 350px !important;
    }
    
    .carousel-caption {
        padding: 1rem;
        margin: 0.5rem;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 300px !important;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.2rem;
    }
    
    .carousel-caption p {
        font-size: 0.8rem;
    }
}

/* Payment Methods Icons */
.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icon {
    font-size: 1.8rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.payment-icon:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
}

.payment-icon.fab.fa-cc-visa {
    color: #1A1F71;
}

.payment-icon.fab.fa-cc-mastercard {
    color: #EB001B;
}

.payment-icon.fab.fa-cc-paypal {
    color: #0070BA;
}

.payment-icon.fab.fa-apple-pay {
    color: #000000;
}

.payment-icon.fab.fa-google-pay {
    color: #4285F4;
}

.payment-icon.fas.fa-university {
    color: #6C757D;
}

@media (max-width: 768px) {
    .payment-methods {
        gap: 10px;
        margin-top: 1rem;
    }
    
    .payment-icon {
        font-size: 1.5rem;
    }
}

/* Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number i {
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number i {
    transform: scale(1.1);
    color: var(--secondary-color) !important;
}

/* About Preview Section */
.about-preview-section {
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
}

.about-preview-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-preview-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Sustainability Section */
.sustainability-section .card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 194, 168, 0.1);
}

.sustainability-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 194, 168, 0.1);
    border-color: var(--primary-color);
}

.sustainability-section .card i {
    transition: all 0.3s ease;
}

.sustainability-section .card:hover i {
    transform: scale(1.1);
    color: var(--secondary-color) !important;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-section .card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 194, 168, 0.1);
}

.testimonials-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.testimonials-section .card i {
    transition: all 0.3s ease;
}

.testimonials-section .card:hover i {
    color: var(--secondary-color) !important;
}

/* Image Uniformity */
.card-img-top {
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.about-preview-section img {
    height: 150px;
    object-fit: cover;
    object-position: center;
}

/* Product Images */
.featured-products .card-img-top,
.categories-section .card-img-top {
    height: 280px;
    object-fit: cover;
    object-position: center;
}

/* Shop Page Images */
.products-section .card-img-top {
    height: 300px;
    object-fit: cover;
    object-position: center;
}

/* Individual Product Pages */
.product-detail-img {
    height: 400px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .card-img-top {
        height: 200px;
    }
    
    .about-preview-section img {
        height: 120px;
    }
    
    .featured-products .card-img-top,
    .categories-section .card-img-top {
        height: 220px;
    }
    
    .products-section .card-img-top {
        height: 240px;
    }
    
    .product-detail-img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .card-img-top {
        height: 180px;
    }
    
    .about-preview-section img {
        height: 100px;
    }
    
    .featured-products .card-img-top,
    .categories-section .card-img-top {
        height: 200px;
    }
    
    .products-section .card-img-top {
        height: 220px;
    }
    
    .product-detail-img {
        height: 250px;
    }
}

/* Modern Cookie Banner */
.cookie-banner {
    animation: slideUp 0.5s ease-out;
}

.cookie-banner-content {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
    border-top: 3px solid var(--primary-color);
}

.cookie-icon {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.cookie-title {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.cookie-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-banner-actions .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-banner-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.cookie-settings-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

.cookie-settings-header h4 {
    color: var(--text-color);
    font-weight: 600;
}

.cookie-category {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    border-color: var(--primary-color);
    background: rgba(0, 194, 168, 0.05);
}

.cookie-category h6 {
    color: var(--text-color);
    font-weight: 600;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 194, 168, 0.25);
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner-content {
        padding: 1rem 0;
    }
    
    .cookie-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .cookie-title {
        font-size: 1.1rem;
    }
    
    .cookie-description {
        font-size: 0.9rem;
    }
    
    .cookie-settings-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .cookie-category {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .cookie-banner-actions {
        margin-top: 1rem;
    }
    
    .cookie-banner-actions .d-flex {
        flex-direction: column !important;
    }
    
    .cookie-banner-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}
