/* Index Page Styles */
:root {
    --primary-color: #198754;
    --secondary-color: #20c997;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Logo */
.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

/* Header Top - Mobile Slogan Animation */
.header-top {
    position: relative;
    overflow: hidden;
}

.slogan-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slogan-scroll {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll-slogans 15s linear infinite;
    gap: 4rem;
    align-items: center;
}

.slogan-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.slogan-item small {
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.product-image:hover .product-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-overlay a {
    z-index: 2;
}

.product-image {
    height: 300px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

@keyframes scroll-slogans {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Desktop: Hide mobile slogan scroll */
@media (min-width: 768px) {
    .slogan-scroll-wrapper {
        display: none;
    }
}

/* Mobile: Hide desktop phone number */
@media (max-width: 767.98px) {
    .header-top .col-md-6:first-child {
        display: none;
    }
}

/* Navbar */
.navbar {
    padding: 1rem 0;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

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

/* Header Buttons - Minimal Style */
.navbar .btn-minimal {
    background: transparent;
    border: none;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.navbar .btn-minimal:hover {
    background: rgba(25, 135, 84, 0.1);
    color: var(--primary-color);
}

.navbar .btn-minimal i {
    font-size: 1.1rem;
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 200px;
    margin-top: 0.5rem;
}

.navbar .dropdown-item {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background: rgba(25, 135, 84, 0.1);
    color: var(--primary-color);
    padding-left: 2rem;
}

.navbar .dropdown-item i {
    color: var(--primary-color);
    width: 20px;
}

.navbar .dropdown-divider {
    margin: 0.5rem 0;
    opacity: 0.1;
}

.cart-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.45rem;
}

/* Dropdown Menu Styles */
.products-dropdown {
    min-width: 280px;
    padding: 1rem 0;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    margin-top: 0.5rem;
}

.products-dropdown .dropdown-item {
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.products-dropdown .dropdown-item i {
    font-size: 1.1rem;
    color: var(--primary-color);
    width: 25px;
    transition: transform 0.3s ease;
}

.products-dropdown .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.1), rgba(32, 201, 151, 0.1));
    color: var(--primary-color);
    padding-left: 2rem;
    transform: translateX(5px);
}

.products-dropdown .dropdown-item:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.products-dropdown .dropdown-divider {
    margin: 0.8rem 1rem;
    opacity: 0.2;
}

/* Hero Section */
.hero-section {
    position: relative;
}

.hero-slide {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-slide h1 {
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-slide .lead {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    font-size: 1.3rem;
}

.min-vh-50 {
    min-height: 50vh;
}

/* Visual Categories */
.visual-categories {
    padding: 3rem 0;
}

.visual-categories-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    letter-spacing: -0.5px;
    margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
    .visual-categories-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.category-visual-card {
    display: block;
    text-decoration: none;
    height: 100%;
    transition: transform 0.3s ease;
}

.category-visual-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.category-visual-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 140%; /* Daha uzun dikdörtgen */
    overflow: hidden;
    border-radius: 8px;
    background: #f0f0f0;
}

.category-visual-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-visual-card:hover .category-visual-image img {
    transform: scale(1.05);
}

.category-visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    padding: 1.5rem 1rem 1rem;
    display: flex;
    align-items: flex-end;
}

.category-visual-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mobile: 2 columns */
@media (max-width: 767.98px) {
    .visual-categories .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .visual-categories .col-6 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .category-visual-title {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
    
    .category-visual-overlay {
        padding: 1rem 0.75rem 0.75rem;
    }
}

/* Tablet: 3 columns */
@media (min-width: 768px) and (max-width: 991.98px) {
    .category-visual-title {
        font-size: 0.9rem;
    }
}

/* Desktop: 6 columns */
@media (min-width: 992px) {
    .category-visual-title {
        font-size: 0.95rem;
    }
}

/* Bestsellers Section */
.bestsellers-section {
    background: #fff;
}

.bestsellers-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    letter-spacing: -0.5px;
}

@media (max-width: 767.98px) {
    .bestsellers-section h2 {
        font-size: 1.5rem;
    }
    
    .bestsellers-section .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .bestsellers-section .col-6 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* Weekly Packages */
.weekly-packages {
    background: #f8f9fa;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Nature Story Section */
.nature-story-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 5rem 0;
}

.nature-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.nature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.92) 0%, rgba(20, 150, 110, 0.92) 100%);
    z-index: 2;
    pointer-events: none;
}

.nature-story-section .container {
    position: relative;
    z-index: 10;
}

.nature-content {
    position: relative;
    z-index: 11;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.nature-icon i {
    color: #ffffff;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
}

.nature-content h2 {
    color: #ffffff !important;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    font-weight: 800 !important;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.nature-content .lead {
    font-size: 1.1rem;
    color: #ffffff !important;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.7;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.nature-feature-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: all 0.4s ease;
    height: 100%;
}

.nature-feature-card:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.nature-feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.nature-feature-card:hover .nature-feature-icon {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.nature-feature-icon i {
    font-size: 2rem;
    color: #ffffff;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
}

.nature-feature-card h4 {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: #ffffff !important;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.nature-feature-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #ffffff !important;
    opacity: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.nature-stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.nature-stat {
    text-align: center;
}

.nature-stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    font-family: 'Poppins', sans-serif;
}

.nature-stat-label {
    font-size: 1rem;
    color: #ffffff;
    margin-top: 0.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
}

.nature-story-section .btn-light {
    position: relative;
    z-index: 12;
    background: #ffffff !important;
    color: var(--primary-color) !important;
    border: none;
    font-weight: 700;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.nature-story-section .btn-light:hover {
    background: #f8f9fa !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    color: var(--primary-color) !important;
}

.nature-story-section a,
.nature-story-section button {
    position: relative;
    z-index: 12;
    pointer-events: auto;
    cursor: pointer;
}

/* Categories */
.category-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.product-image {
    height: 300px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-rating {
    color: #ffc107;
    font-size: 0.9rem;
}

.product-rating span {
    color: #666;
    font-size: 0.85rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Georgia', serif;
    letter-spacing: -.5px;
}

/* Features */
.feature-box {
    padding: 2rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* Brands Slider */
.brands-section .carousel-control-prev,
.brands-section .carousel-control-next {
    width: 5%;
    opacity: .7;
}

.brands-section .carousel-control-prev:hover,
.brands-section .carousel-control-next:hover {
    opacity: 1;
}

.brand-logo {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.brand-logo img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: .7;
    transition: all .3s ease;
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Footer */
.footer {
    background: #1a1a1a !important;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    color: #adb5bd;
}

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

.social-links a {
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-payment-icons {
    color: rgba(255, 255, 255, 0.7);
}

.footer-payment-icons i {
    transition: all 0.3s ease;
}

.footer-payment-icons i:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-badges .badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: white;
}

/* Instagram Button */
.instagram-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.instagram-button:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 25px rgba(225, 48, 108, 0.6);
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .instagram-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 80px;
        right: 20px;
    }
}

/* Alert Notifications */
.alert-error {
    background-color: #dc3545 !important;
    color: #fff !important;
    border: none !important;
    font-weight: 500 !important;
}

.alert-success {
    background-color: #198754 !important;
    color: #fff !important;
    border: none !important;
    font-weight: 500 !important;
}

.alert-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
    border: none !important;
    font-weight: 500 !important;
}

.alert-info {
    background-color: #0dcaf0 !important;
    color: #212529 !important;
    border: none !important;
    font-weight: 500 !important;
}

.alert-danger {
    background-color: #dc3545 !important;
    color: #fff !important;
    border: none !important;
    font-weight: 500 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 450px;
    }
    
    .hero-slide h1 {
        font-size: 2rem !important;
    }
    
    .hero-slide .lead {
        font-size: 1rem !important;
    }
    
    /* Products Grid - Mobile optimization */
    .featured-products .row,
    .weekly-packages .row,
    .bestsellers-section .row {
        gap: 0.5rem !important;
        margin: 0 -0.25rem;
    }
    
    .featured-products .col-lg-3,
    .weekly-packages .col-lg-3,
    .bestsellers-section .col-lg-3,
    .featured-products .col-6,
    .weekly-packages .col-6,
    .bestsellers-section .col-6 {
        padding: 0 0.25rem !important;
        margin-bottom: 0.5rem;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* Extra Small Mobile (<576px) */
@media (max-width: 575.98px) {
    .featured-products .row,
    .weekly-packages .row,
    .bestsellers-section .row {
        gap: 0.4rem !important;
        margin: 0 -0.2rem !important;
        display: flex !important;
        flex-wrap: wrap !important;
    }
    
    .featured-products .col-6,
    .weekly-packages .col-6,
    .bestsellers-section .col-6 {
        padding: 0 0.2rem !important;
        flex: 0 0 calc(50% - 0.2rem) !important;
        max-width: calc(50% - 0.2rem) !important;
        width: calc(50% - 0.2rem) !important;
    }
}

/* Small Mobile (≥576px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .featured-products .row,
    .weekly-packages .row,
    .bestsellers-section .row {
        gap: 0.5rem !important;
        margin: 0 -0.25rem !important;
        display: flex !important;
        flex-wrap: wrap !important;
    }
    
    .featured-products .col-6,
    .weekly-packages .col-6,
    .bestsellers-section .col-6 {
        padding: 0 0.25rem !important;
        flex: 0 0 calc(50% - 0.25rem) !important;
        max-width: calc(50% - 0.25rem) !important;
        width: calc(50% - 0.25rem) !important;
    }
}

/* Medium Mobile/Tablet (≥768px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .featured-products .row,
    .weekly-packages .row,
    .bestsellers-section .row {
        gap: 0.75rem !important;
        margin: 0 -0.4rem !important;
        display: flex !important;
        flex-wrap: wrap !important;
    }
    
    .featured-products .col-6,
    .weekly-packages .col-6,
    .bestsellers-section .col-6 {
        padding: 0 0.4rem !important;
        flex: 0 0 calc(50% - 0.4rem) !important;
        max-width: calc(50% - 0.4rem) !important;
        width: calc(50% - 0.4rem) !important;
    }
    
    .product-image {
        height: 250px;
    }
    
    
    .footer .col-lg-3,
    .footer .col-lg-4,
    .footer .col-md-6,
    .footer .col-12 {
        text-align: center !important;
        margin-bottom: 2rem;
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .footer .social-links {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center !important;
    }
    
    .footer-payment-icons,
    .footer-badges {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .footer-payment-icons i {
        font-size: 1.5rem !important;
        margin: 0.25rem !important;
    }
    
    .footer-badges .badge {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.8rem !important;
        margin: 0.25rem !important;
    }
    
    .nature-story-section {
        min-height: 300px;
        padding: 3rem 0;
    }
    
    .nature-content {
        padding: 2rem 1.5rem;
    }
    
    .nature-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem;
    }
    
    .nature-content .lead {
        font-size: 0.95rem;
    }
    
    .nature-feature-card {
        margin-bottom: 1rem;
    }
    
    .nature-stats-row {
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .nature-stat-number {
        font-size: 2rem;
    }
    
    .nature-stat-label {
        font-size: 0.85rem;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .instagram-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 80px;
        right: 20px;
    }
}

/* Favorite Button - Mini Style */
.product-card .favorite-btn,
.package-card .favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 10;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.product-card .favorite-btn:hover,
.package-card .favorite-btn:hover {
    color: #ff4d4d;
    transform: scale(1.15);
    box-shadow: 0 3px 12px rgba(255, 77, 77, 0.2);
}

.product-card .favorite-btn.active,
.package-card .favorite-btn.active {
    color: #ff4d4d;
    background: rgba(255, 245, 245, 0.95);
}

.product-card .favorite-btn i,
.package-card .favorite-btn i {
    font-size: 0.95rem;
}

