:root {
    --primary-color: #4AA3A2;
    --hover-color: #3d8a89;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --accent-color: #6BC4C3;
    --accent-light: #E8F5F4;
    --accent-dark: #2E7A79;
    --gradient-1: linear-gradient(135deg, #4AA3A2 0%, #6BC4C3 50%, #8DD5D4 100%);
    --gradient-2: linear-gradient(135deg, #E8F5F4 0%, #FFFFFF 100%);
    --gradient-3: linear-gradient(135deg, #4AA3A2 0%, #3d8a89 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
    background: linear-gradient(180deg, #ffffff 0%, #F0FDFC 50%, #ffffff 100%);
    background-attachment: fixed;
    position: relative;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.01em;
    padding-top: 70px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(74, 163, 162, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(107, 196, 195, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(141, 213, 212, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

header {
    position: relative;
    z-index: 9998;
}

header .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
}

/* Smooth scroll and modern effects */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography improvements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* Special text effects */
.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Improved letter spacing for better readability */
.lead {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.7;
}

/* Section spacing improvements */
section {
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 163, 162, 0.2), transparent);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--hover-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    font-style: italic;
    text-transform: none;
}

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

.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    box-shadow: 0 4px 20px rgba(74, 163, 162, 0.15);
    z-index: 9999 !important;
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid transparent;
    background-image: linear-gradient(white, white), var(--gradient-1) !important;
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

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

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #333 !important;
    transition: all 0.3s ease;
    padding: 0.5rem 0.7rem !important;
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.1px;
    font-size: 0.85rem;
}

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

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

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-nav {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
}

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

.search-form {
    max-width: 250px;
    min-width: 200px;
    flex-shrink: 0;
}

.search-form .form-control {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

.search-form .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    white-space: nowrap;
}


.cart-icon {
    color: var(--primary-color);
    font-size: 1rem;
    margin-right: 4px;
}

.snipcart-checkout {
    display: flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border: none;
    background: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.snipcart-checkout:hover {
    background-color: rgba(74, 163, 162, 0.1);
    transform: translateY(-2px);
}

.snipcart-items-count {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    min-width: 18px;
    text-align: center;
}

.cart-icon {
    font-size: 1rem;
}

/* Responsive menu - Mobile improvements */
@media (max-width: 991px) {
    body {
        padding-top: 60px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-toggler {
        border: 2px solid var(--primary-color);
        border-radius: 8px;
        padding: 0.4rem 0.6rem;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(74, 163, 162, 0.25);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2874, 163, 162, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-collapse {
        margin-top: 1rem;
        padding: 1.5rem 0;
        border-top: 2px solid rgba(74, 163, 162, 0.1);
        background: rgba(255, 255, 255, 0.98);
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(74, 163, 162, 0.15);
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .navbar-collapse.collapsing {
        transition: height 0.35s ease;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .nav-item {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(74, 163, 162, 0.1);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 1.5rem !important;
        font-size: 1rem;
        font-weight: 500;
        color: #333 !important;
        transition: all 0.3s ease;
        border-radius: 0;
        position: relative;
        display: flex;
        align-items: center;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--gradient-1);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link:active,
    .nav-link:focus {
        background: rgba(74, 163, 162, 0.05);
        color: var(--primary-color) !important;
        padding-left: 2rem;
    }
    
    .nav-link:hover::before,
    .nav-link:active::before,
    .nav-link:focus::before {
        transform: scaleY(1);
    }
    
    .navbar-collapse {
        display: flex;
        flex-direction: column;
    }
    
    .mobile-search {
        width: 100%;
        max-width: 100%;
        margin: 1rem 0;
        padding: 0 1rem;
        order: 2;
    }
    
    .mobile-search .form-control {
        border-radius: 10px;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        border: 2px solid rgba(74, 163, 162, 0.2);
    }
    
    .mobile-search .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(74, 163, 162, 0.15);
    }
    
    .mobile-search .btn {
        border-radius: 10px;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        white-space: nowrap;
    }
    
    .mobile-cart {
        width: 100%;
        padding: 0 1rem;
        order: 3;
    }
    
    .snipcart-checkout {
        margin: 0.5rem 0 1rem 0;
        padding: 0.75rem 1.5rem;
        width: 100%;
        justify-content: center;
        border-radius: 10px;
        background: rgba(74, 163, 162, 0.05);
        border: 2px solid var(--primary-color);
        display: flex;
        align-items: center;
    }
    
    .snipcart-checkout:hover {
        background: var(--primary-color);
    }
    
    .snipcart-checkout:hover .cart-icon,
    .snipcart-checkout:hover .snipcart-items-count {
        color: white !important;
    }
    
    .snipcart-items-count {
        font-size: 1.1rem;
        margin-left: 0.5rem;
    }
    
    .cart-icon {
        font-size: 1.3rem;
    }
}

.breadcrumb {
    background: rgba(74, 163, 162, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
}

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

.footer {
    background: linear-gradient(180deg, #ffffff 0%, #E8F5F4 100%);
    border-top: 3px solid transparent;
    background-image: linear-gradient(white, #E8F5F4), var(--gradient-1);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 163, 162, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(107, 196, 195, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.footer > * {
    position: relative;
    z-index: 1;
}

.footer-content h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

.footer-content .text-muted {
    color: #666 !important;
}

.footer-content a.text-muted {
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-content a.text-muted:hover {
    color: var(--primary-color) !important;
    padding-left: 5px;
}

.cookie-consent {
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-consent .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
}

.cookie-consent .btn-primary:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
}

/* Product page styles */
.product-details .price-tag h2 {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.product-features {
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.product-features h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: -0.01em;
}

.product-features .fas {
    color: var(--primary-color) !important;
}

.btn-primary {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--hover-color) 100%);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(74, 163, 162, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--hover-color) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 163, 162, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(74, 163, 162, 0.3);
}
/* Hero Section - Modern Carousel */
.hero-section {
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-section .carousel {
    height: 700px;
}

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

.hero-section .carousel-image-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hero-section .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transform: scale(1.1);
    transition: transform 8s ease-in-out;
}

.hero-section .carousel-item.active img {
    transform: scale(1);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 163, 162, 0.7) 0%, rgba(58, 138, 137, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-section .carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 0;
    text-align: center;
}

.carousel-content {
    max-width: 700px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-style: italic;
}

.carousel-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.6;
}

.carousel-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(74, 163, 162, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 163, 162, 0.5);
}

/* Carousel Indicators - Modern Style */
.hero-section .carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
    z-index: 3;
}

.hero-section .carousel-indicators button {
    width: 50px;
    height: 6px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.hero-section .carousel-indicators button.active {
    background-color: var(--primary-color);
    opacity: 1;
    width: 70px;
    box-shadow: 0 0 15px rgba(74, 163, 162, 0.6);
}

.hero-section .carousel-indicators button:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.8);
}

/* Carousel Controls - Modern Style */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

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

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    opacity: 1;
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(74, 163, 162, 0.4);
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2000%) hue-rotate(150deg) brightness(0.9) contrast(0.9);
}

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

/* Carousel Fade Animation */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-up-delay {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-fade-in-up-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .hero-section .carousel {
        height: 500px;
    }
    
    .hero-section .carousel-item {
        height: 500px;
    }
    
    .carousel-content {
        padding: 2rem;
        max-width: 90%;
    }
    
    .carousel-title {
        font-size: 2rem;
    }
    
    .carousel-subtitle {
        font-size: 1rem;
    }
    
    .carousel-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .hero-section .carousel-control-prev {
        left: 15px;
    }
    
    .hero-section .carousel-control-next {
        right: 15px;
    }
}

/* Categories Section - Modern Design */
.categories-section {
    background: var(--gradient-2);
    padding: 5rem 0 !important;
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 163, 162, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.categories-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 196, 195, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.categories-section > * {
    position: relative;
    z-index: 1;
}

.categories-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(74, 163, 162, 0.2);
    letter-spacing: -0.02em;
    font-style: italic;
}

.categories-section h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(74, 163, 162, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.categories-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-1);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(74, 163, 162, 0.4);
}

.category-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(74, 163, 162, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    position: relative;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), var(--gradient-1);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 0.1;
}

.category-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(107, 196, 195, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.category-card:hover::after {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(74, 163, 162, 0.3);
}

.category-card img {
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card .card-body {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.category-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    letter-spacing: -0.01em;
}

.category-card p {
    font-family: 'Inter', sans-serif;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.1px;
}

.category-card .btn-outline-primary {
    border-radius: 25px;
    padding: 0.6rem 2rem;
    font-weight: 600;
    border-width: 2px;
    transition: all 0.3s ease;
}

.category-card .btn-outline-primary:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(74, 163, 162, 0.3);
}

/* Product Cards - Modern Design */
.featured-products {
    background: linear-gradient(180deg, #ffffff 0%, #E8F5F4 50%, #ffffff 100%);
    padding: 5rem 0 !important;
    position: relative;
    overflow: hidden;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 163, 162, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.featured-products::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(107, 196, 195, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.featured-products > * {
    position: relative;
    z-index: 1;
}

.featured-products h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(74, 163, 162, 0.2);
    letter-spacing: -0.02em;
    font-style: italic;
}

.featured-products h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(107, 196, 195, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.featured-products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-1);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(74, 163, 162, 0.4);
}

.product-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(74, 163, 162, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    position: relative;
    height: 100%;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), var(--gradient-1);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 0.08;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(107, 196, 195, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(74, 163, 162, 0.25);
}

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

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

.product-card .card-body {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.product-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.product-card:hover h3 {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.product-card p {
    font-family: 'Inter', sans-serif;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.1px;
}

.product-card .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.product-card .btn-primary {
    border-radius: 25px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.product-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 163, 162, 0.4);
}

/* Features Section - Modern Design */
.features-section {
    padding: 5rem 0 !important;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(74, 163, 162, 0.03) 49%, rgba(74, 163, 162, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(107, 196, 195, 0.03) 49%, rgba(107, 196, 195, 0.03) 51%, transparent 52%);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.features-section > * {
    position: relative;
    z-index: 1;
}

.features-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(74, 163, 162, 0.2);
    letter-spacing: -0.02em;
    font-style: italic;
}

.features-section h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(74, 163, 162, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.features-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-1);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(74, 163, 162, 0.4);
}

.feature-card {
    padding: 3rem 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(74, 163, 162, 0.15);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), var(--gradient-1);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(74, 163, 162, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-card:hover::after {
    opacity: 1;
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(74, 163, 162, 0.2);
}

.feature-card i {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(74, 163, 162, 0.2));
}

.feature-card:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(74, 163, 162, 0.4));
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-family: 'Inter', sans-serif;
    color: #666;
    line-height: 1.8;
    letter-spacing: 0.1px;
}

/* Contact Section - Modern Design */
.contact-section {
    padding: 5rem 0 !important;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 163, 162, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-section > * {
    position: relative;
    z-index: 1;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
    font-style: italic;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(74, 163, 162, 0.4);
}

.contact-form {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    padding: 2.5rem;
    background: white;
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 20px 50px rgba(74, 163, 162, 0.15);
}

.contact-form .form-control {
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(74, 163, 162, 0.15);
    transform: translateY(-2px);
}

.contact-section ul li {
    margin-bottom: 1.2rem;
    color: var(--text-color);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.contact-section ul li:hover {
    transform: translateX(5px);
}

.contact-section ul li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}
/* Contact Page Styles */
.contact-card,
.contact-form-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover,
.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(74, 163, 162, 0.15);
}

.contact-details h3 {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 0.8rem;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(74, 163, 162, 0.25);
}

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

.faq-section .accordion-button {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 1.2rem;
    letter-spacing: 0.2px;
}

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

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