:root {
    --primary-color: #2A7E3E;
    --secondary-color: #734F2F;
    --accent-color: #92B73A;
    --light-green: #E8F5E9;
    --white: #FFFFFF;
    --text-dark: #1C1C1C;
    --text-light: #666666;
}

body {
    font-family: 'Outfit', sans-serif;
}

/* Top Bar Styles */
.top-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    padding: 8px 0;
    color: var(--white);
    font-size: 0.9rem;
}

.top-bar-link {
    color: var(--white);
    text-decoration: none;
    padding: 0 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.top-bar-link:last-child {
    border-right: none;
}

.top-bar-link:hover {
    color: var(--light-green);
}

/* Main Header Styles */
.main-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header-logo {
    height: 60px;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

/* Search Bar Styles */
.search-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    padding-left: 50px;
    border: 2px solid #eee;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(42, 126, 62, 0.1);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-action-btn {
    position: relative;
    background: none;
    border: none;
    padding: 10px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.header-action-btn:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.action-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
}

/* Navigation Menu */
.main-nav {
    background: var(--white);
    border-top: 1px solid #eee;
    padding: 15px 0;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    transition: all 0.3s ease;
}

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

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

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

/* Footer */
footer {
    background: var(--secondary-color) !important;
}

footer h6 {
    color: var(--accent-color);
    font-weight: 600;
}

footer a {
    color: var(--white) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--accent-color) !important;
}

footer .btn-warning {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

footer .btn-warning:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Text accents */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(42, 126, 62, 0.15);
}

.category-image-container {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: #f8f9fa;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.category-content {
    padding: 1.25rem;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.category-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.category-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: var(--accent-color);
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .category-image-container {
        height: 140px;
    }
    
    .category-content {
        padding: 1rem;
    }
    
    .category-title {
        font-size: 1rem;
    }
    
    .category-desc {
        font-size: 0.8rem;
    }
}

.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 60vh;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/shop/phyto/pattern.png') repeat;
    opacity: 0.05;
    z-index: 1;
}

.hero-content {
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-badge:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, var(--primary-color), #2d5a3d);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-light);
}

.hero-features {
    display: flex;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.05);
    padding: 12px 24px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature-item i {
    color: var(--accent-color);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--accent-color);
    border: none;
    padding: 15px 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #a3c74c;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-width: 2px;
    padding: 15px 30px;
}

.hero-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite;
}

.hero-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.15; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-image {
        margin-top: 40px;
    }
}


.product-gallery .main-image {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
}

.thumbnail {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.product-title {
    font-size: 2rem;
    font-weight: 400;
}

.product-price .new-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.product-price .old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    border-radius: 0;
}

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

.features-list li {
    margin-bottom: 10px;
}

.product-meta {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.product-tabs .nav-link {
    color: #666;
    font-weight: 500;
}

.product-tabs .nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Related Products */
.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.product-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Categories Slider Styles */
.categories-slider {
    position: relative;
    margin: 0 -15px;
    padding: 0 50px;
}

.categories-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 20px 0;
}

.categories-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.category-item {
    flex: 0 0 auto;
    min-width: 200px;
}

.category-card-simple {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.category-card-simple:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(42, 126, 62, 0.15);
    border-color: var(--primary-color);
}

.category-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.category-card-simple:hover .category-icon-large {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(42, 126, 62, 0.3);
}

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

.category-title-simple {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.category-link-simple {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(42, 126, 62, 0.1);
}

.category-link-simple:hover {
    color: white;
    background: var(--primary-color);
    transform: translateY(-2px);
}

.category-link-simple i {
    transition: transform 0.3s ease;
}

.category-link-simple:hover i {
    transform: translateX(3px);
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.slider-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(42, 126, 62, 0.3);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .categories-slider {
        padding: 0 40px;
    }
    
    .category-item {
        min-width: 160px;
    }
    
    .category-card-simple {
        padding: 20px 15px;
        height: 160px;
    }
    
    .category-icon-large {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .category-icon-large i {
        font-size: 1.2rem;
    }
    
    .category-title-simple {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .categories-slider {
        padding: 0 30px;
    }
    
    .category-item {
        min-width: 140px;
    }
    
    .category-card-simple {
        padding: 15px 10px;
        height: 140px;
    }
    
    .category-icon-large {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }
    
    .category-title-simple {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .category-link-simple {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Custom min-height utilities */
.min-vh-40 {
    min-height: 40vh !important;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 50vh; /* Réduit de 70vh à 50vh */
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
    transform: translateX(100%);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 10;
}

.hero-slide.prev {
    transform: translateX(-100%);
    z-index: 2;
}

.hero-slide.next {
    transform: translateX(100%);
    z-index: 2;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-image-container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    max-height: 200px; /* Réduit de 300px à 200px pour s'adapter à la nouvelle hauteur */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 30px; /* Réduit de 40px à 30px */
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1rem; /* Réduit de 1.2rem à 1rem */
    animation: floatIcon 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) { top: 15%; left: 15%; }
.floating-icon:nth-child(2) { top: 55%; right: 15%; }
.floating-icon:nth-child(3) { bottom: 15%; left: 45%; }

/* Products Showcase */
.hero-products-showcase {
    padding: 15px; /* Réduit de 20px à 15px */
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; /* Réduit de 20px à 15px */
    max-width: 320px; /* Réduit de 400px à 320px */
    margin: 0 auto;
}

.showcase-product {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px; /* Réduit de 15px à 12px */
    padding: 12px; /* Réduit de 15px à 12px */
    text-align: center;
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
    transform: translateY(30px);
}

.showcase-product:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.product-image {
    width: 60px; /* Réduit de 80px à 60px */
    height: 60px;
    margin: 0 auto 8px; /* Réduit de 10px à 8px */
    border-radius: 8px; /* Réduit de 10px à 8px */
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h6 {
    color: white;
    font-size: 0.8rem; /* Réduit de 0.9rem à 0.8rem */
    margin-bottom: 4px; /* Réduit de 5px à 4px */
    font-weight: 600;
}

.product-info .price {
    color: var(--accent-color);
    font-size: 0.7rem; /* Réduit de 0.8rem à 0.7rem */
    font-weight: 500;
}

/* Categories Preview */
.hero-categories-preview {
    padding: 15px; /* Réduit de 20px à 15px */
}

.categories-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px; /* Réduit de 15px à 12px */
    max-width: 280px; /* Réduit de 350px à 280px */
    margin: 0 auto;
}

.preview-category {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px; /* Réduit de 12px à 10px */
    padding: 12px 8px; /* Réduit de 15px 10px à 12px 8px */
    text-align: center;
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
    transform: translateY(30px);
}

.preview-category:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.preview-category .category-icon {
    width: 40px; /* Réduit de 50px à 40px */
    height: 40px;
    margin: 0 auto 6px; /* Réduit de 8px à 6px */
    border-radius: 8px; /* Réduit de 10px à 8px */
    overflow: hidden;
}

.preview-category .category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-category span {
    color: white;
    font-size: 0.7rem; /* Réduit de 0.8rem à 0.7rem */
    font-weight: 500;
    display: block;
}

/* Hero Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 20;
    pointer-events: none;
}

.hero-nav-btn {
    position: absolute;
    width: 40px; /* Réduit de 50px à 40px */
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 1rem; /* Réduit de 1.2rem à 1rem */
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

.hero-nav-btn.prev {
    left: 20px; /* Réduit de 30px à 20px */
}

.hero-nav-btn.next {
    right: 20px; /* Réduit de 30px à 20px */
}

/* Hero Slider Indicators */
.hero-slider-indicators {
    position: absolute;
    bottom: 20px; /* Réduit de 30px à 20px */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px; /* Réduit de 12px à 10px */
    z-index: 20;
}

.indicator {
    width: 10px; /* Réduit de 12px à 10px */
    height: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.02);
    animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
    width: 150px; /* Réduit de 200px à 150px */
    height: 150px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px; /* Réduit de 150px à 100px */
    height: 100px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px; /* Réduit de 100px à 80px */
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Animations */
@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.05; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.1; }
}

/* Responsive Design - Optimisé */
@media (max-width: 1200px) {
    .hero-slider {
        height: 65vh;
    }
    
    .hero-main-image {
        max-height: 250px;
    }
}

@media (max-width: 991.98px) {
    .hero-slider {
        height: 60vh;
    }
    
    .hero-slide {
        height: auto;
        min-height: 60vh;
    }
    
    .product-showcase-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        gap: 12px;
    }
    
    .categories-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 220px;
        gap: 10px;
    }
    
    .hero-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .hero-nav-btn.prev { left: 15px; }
    .hero-nav-btn.next { right: 15px; }
    
    .hero-main-image {
        max-height: 200px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 55vh;
    }
    
    .hero-slide {
        min-height: 55vh;
    }
    
    .hero-slider-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .floating-icon {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
    
    .shape-1 { width: 120px; height: 120px; }
    .shape-2 { width: 80px; height: 80px; }
    .shape-3 { width: 60px; height: 60px; }
    
    .hero-main-image {
        max-height: 180px;
    }
    
    .product-showcase-grid {
        max-width: 240px;
        gap: 10px;
    }
    
    .categories-preview-grid {
        max-width: 200px;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 50vh;
    }
    
    .hero-slide {
        min-height: 50vh;
    }
    
    .hero-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .hero-nav-btn.prev { left: 10px; }
    .hero-nav-btn.next { right: 10px; }
    
    .hero-main-image {
        max-height: 150px;
    }
    
    .product-showcase-grid {
        max-width: 200px;
        gap: 8px;
    }
    
    .categories-preview-grid {
        max-width: 180px;
        gap: 6px;
    }
    
    .showcase-product {
        padding: 8px;
    }
    
    .preview-category {
        padding: 8px 6px;
    }
}

