:root {
    --primary-color: #00A651;
    --primary-dark: #008c44;
    --primary-light: #00c066;
    --secondary-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    padding-top: 80px;
}

main {
    padding-top: 0;
}

.navbar-brand {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #00A651 0%, #00c066 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

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

.nav-item {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0 0.15rem;
}

.nav-link {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.75rem 1.25rem !important;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 44px;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.search-input {
    min-width: 300px;
    border-radius: 20px 0 0 20px;
    border: 1px solid #e0e0e0;
    font-family: 'Raleway', sans-serif;
}

.search-input:focus {
    border-color: #00A651;
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.25);
}

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

.navbar {
    box-shadow: var(--shadow-sm);
    padding: 1.2rem 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98) !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

.breadcrumb {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 166, 81, 0.1);
    margin-top: 1rem;
}

header {
    position: relative;
}

.snipcart-checkout {
    background: none;
    border: none;
    color: var(--primary-color);
    padding: 0.75rem;
    font-size: 1.2rem;
    transition: var(--transition);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.snipcart-checkout:hover {
    color: var(--primary-light);
    background: rgba(0, 166, 81, 0.1);
    transform: scale(1.1) rotate(5deg);
}

.snipcart-items-count {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 166, 81, 0.4);
    animation: pulse 2s infinite;
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    text-align: center;
    line-height: 1.2;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

.hero-section {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    box-shadow: var(--shadow-md);
}

.hero-section .carousel-item {
    position: relative;
}

.hero-section .carousel-item img {
    border-radius: var(--border-radius);
    object-fit: cover;
    height: 500px;
    filter: brightness(0.95);
    transition: var(--transition);
}

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

.hero-section .carousel-caption {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    text-align: left;
    box-shadow: var(--shadow-lg);
}

.hero-section .carousel-caption h1,
.hero-section .carousel-caption h2 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: none;
}

.hero-section .carousel-caption p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0.8;
    transition: var(--transition);
}

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

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.hero-section .carousel-indicators {
    bottom: 1rem;
}

.hero-section .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: var(--transition);
}

.hero-section .carousel-indicators button.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.3);
}

.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    background: #ffffff;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-img-top {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    transition: var(--transition);
    height: 280px;
    object-fit: cover;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.card-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn {
    border-radius: var(--border-radius);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-success {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.btn-success::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-success:hover::before {
    width: 300px;
    height: 300px;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
    color: white;
}

.btn-success:active {
    transform: translateY(0);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.categories-section h2,
.featured-products h2 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.categories-section h2::after,
.featured-products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.newsletter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
}

.newsletter-section h2 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

.newsletter-section .form-control {
    border-radius: var(--border-radius);
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
}

.newsletter-section .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.25);
}

.trust-badges {
    padding: 3rem 0;
}

.trust-badges .col {
    padding: 2rem;
}

.trust-badges i {
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.trust-badges .col:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-light);
}

.trust-badges h3 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1rem;
}

.trust-badges p {
    color: var(--text-light);
    margin-top: 0.5rem;
}

footer {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    border-top: 4px solid var(--primary-color);
    color: #ecf0f1;
    padding: 3rem 0 1.5rem 0;
}

footer h5 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

footer p {
    color: #bdc3c7;
    line-height: 1.8;
}

footer .list-unstyled li {
    margin-bottom: 0.8rem;
}

footer address {
    color: #bdc3c7;
    line-height: 1.8;
}

footer a {
    color: #bdc3c7;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
}

footer a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

footer a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

footer a:hover::before {
    width: 100%;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.cookie-consent {
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    backdrop-filter: blur(10px);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-consent p {
    font-size: 0.95rem;
    color: #ecf0f1;
}

.cookie-consent a {
    color: var(--primary-light);
    text-decoration: underline;
    transition: var(--transition);
}

.cookie-consent a:hover {
    color: #ffffff;
}

.cookie-consent .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.cookie-consent .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}
.contact-info address {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-info a {
    color: #333;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #00A651;
    text-decoration: none;
}

.opening-hours {
    font-size: 1.1rem;
}

.contact-form .form-control {
    border-radius: var(--border-radius);
    border: 2px solid #e0e0e0;
    padding: 12px 18px;
    transition: var(--transition);
    font-size: 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.25);
    transform: translateY(-2px);
}

.faq-section .accordion-button {
    color: var(--text-dark);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: none;
    border-radius: var(--border-radius) !important;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1) 0%, #ffffff 100%);
    box-shadow: var(--shadow-sm);
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.25);
    border-color: var(--primary-color);
}

.faq-section .accordion-button:hover {
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.05) 0%, #ffffff 100%);
}

.support-section .card {
    transition: var(--transition);
    border: none;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.support-section .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.container.my-5 {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.container.my-5 img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.container.my-5 img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.container.my-5 h1 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.container.my-5 .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.container.my-5 .list-unstyled li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

.container.my-5 .list-unstyled li:hover {
    padding-left: 1rem;
    background: linear-gradient(90deg, rgba(0, 166, 81, 0.05), transparent);
}

.container.my-5 .list-unstyled li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.h3, .h5 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

.h3.mb-0 {
    color: var(--primary-color);
    font-size: 2rem;
}

@media (max-width: 768px) {
    .hero-section .carousel-caption {
        padding: 1.5rem;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }
    
    .hero-section .carousel-caption h1,
    .hero-section .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .hero-section .carousel-item img {
        height: 300px;
    }
    
    .categories-section h2,
    .featured-products h2 {
        font-size: 2rem;
    }
    
    .card-img-top {
        height: 200px;
    }
}

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

.card {
    animation: fadeInUp 0.6s ease-out;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }

.support-section .card-body {
    padding: 2rem;
}

.support-section .btn {
    border-radius: var(--border-radius);
    padding: 10px 24px;
    transition: var(--transition);
}

.support-section .btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}
