/* ============================================
   BIO-SUDS - FRESH LIGHT GREEN THEME
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Green Colors - Iets donkerder voor beter contrast */
    --primary-color: #4a7c59;
    --primary-light: #6b9b7a;
    --primary-lighter: #e8f5e8;
    --primary-dark: #3d6b4a;
    --secondary-color: #5a8a62;
    
    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-medium: #333333;
    --text-light: #666666;
    --text-muted: #888888;
    
    /* Background Colors - Light & Fresh */
    --bg-light: #ffffff;
    --bg-soft: #f8faf8;
    --bg-subtle: #f5f7f5;
    --bg-accent: #eef5ee;
    
    /* Border & Shadow */
    --border-light: #e0e8e0;
    --border-medium: #c8d8c8;
    --shadow-sm: 0 2px 8px rgba(74, 124, 89, 0.08);
    --shadow-md: 0 4px 20px rgba(74, 124, 89, 0.12);
    --shadow-lg: 0 8px 30px rgba(74, 124, 89, 0.15);
    
    /* Status Colors */
    --danger-color: #dc3545;
    --success-color: #4a7c59;
    --warning-color: #f0ad4e;
}

body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER STYLES - LIGHT THEME
   ============================================ */

.main-header {
    background: var(--bg-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: transform 0.3s ease-in-out;
    border-bottom: 1px solid var(--border-light);
}

.main-header.header-hidden {
    transform: translateY(-100%);
}

.main-header.menu-is-open {
    transform: translateY(0) !important;
}

/* Top Bar - Green */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 0.85rem;
    padding: 10px 0;
    font-family: 'Segoe UI', sans-serif;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info i {
    margin-right: 5px;
    color: white;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

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

/* Header Main */
.header-main {
    padding: 20px 0;
    background: var(--bg-light);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s;
}

.logo img {
    height: 60px;
    width: auto;
    transition: all 0.3s;
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(74, 124, 89, 0.3));
}

/* Search Bar */
.search-bar {
    flex: 1;
    max-width: 600px;
}

.search-bar form {
    display: flex;
    border: 2px solid var(--border-medium);
    border-radius: 50px;
    overflow: hidden;
    background: var(--bg-soft);
    transition: all 0.3s;
}

.search-bar form:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(74, 124, 89, 0.15);
    background: white;
}

.search-bar input {
    flex: 1;
    padding: 12px 25px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    background: transparent;
    color: var(--text-dark);
}

.search-bar input::placeholder {
    color: var(--text-muted);
}

.search-bar button {
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.search-bar button:hover {
    background: var(--primary-dark);
}

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

.header-icon {
    position: relative;
    font-size: 1.6rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.header-icon:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 3px 7px;
    border-radius: 12px;
    font-weight: bold;
    border: 2px solid white;
}

.hamburger-menu {
    display: none;
    background: none;
    border: 2px solid var(--primary-color);
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
}

.hamburger-menu:hover {
    background: var(--primary-color);
    color: white;
}

/* Navigation */
.main-nav {
    background: var(--bg-soft);
    border-top: 1px solid var(--border-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    padding: 0;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 25px;
    color: var(--text-medium);
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--bg-accent);
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.nav-menu a i {
    color: var(--primary-color);
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 12px 12px;
    list-style: none;
    padding: 10px 0;
    z-index: 1000;
    border: 1px solid var(--border-light);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    padding: 12px 25px;
    display: block;
    border: none;
    text-transform: none;
}

.dropdown-menu li a:hover {
    background: var(--bg-accent);
    border-left: 3px solid var(--primary-color);
}
/* ============================================
   HERO SECTION - MET AFBEELDING
   ============================================ */

.hero {
    /* Pas hieronder het pad aan naar jouw afbeelding */
    background-image: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
        url('../img/header.png'); /* Jouw foto */
    
    background-size: cover;      /* Zorgt dat de foto de hele ruimte vult */
    background-position: center; /* Centreert de foto */
    background-repeat: no-repeat;
    
    padding: 140px 20px;         /* Iets meer ruimte boven/onder */
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

/* De oude ::before gradient halen we weg, die hebben we niet meer nodig */
.hero::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

/* Tekst wit maken zodat het van de foto af springt */
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #ffffff; /* Wit */
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Segoe UI', sans-serif;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3); /* Schaduw voor leesbaarheid */
}

.luxury-title .script-text {
    font-family: 'Segoe UI', sans-serif; /* Of je script font */
    font-size: 3.5rem; /* Iets groter */
    color: #ffffff;    /* Wit */
    display: block;
    line-height: 1.3;
    letter-spacing: 1px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #f0f0f0; /* Iets zachter wit */
    font-family: 'Segoe UI', sans-serif;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0; /* Lichtgrijs */
    max-width: 600px;
    margin: 0 auto;
}

/* Knoppen aanpassen voor op een donkere achtergrond */
.hero-buttons .btn-primary {
    background: #ffffff;
    color: var(--primary-color);
    border-color: #ffffff;
}

.hero-buttons .btn-primary:hover {
    background: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
}

.hero-buttons .btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.hero-buttons .btn-secondary:hover {
    background: #ffffff;
    color: var(--primary-color);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-family: 'Segoe UI', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.3);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 80px 0;
    background: var(--bg-light);
}

section:nth-child(even) {
    background: var(--bg-soft);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', sans-serif;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    font-family: 'Segoe UI', sans-serif;
}

/* ============================================
   CATEGORY GRID
   ============================================ */

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.category-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.category-card a {
    text-decoration: none;
    color: var(--text-dark);
    display: block;
    position: relative;
    z-index: 1;
}

.category-image-wrapper {
    height: 200px;
    background: var(--bg-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.category-icon {
    font-size: 70px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    opacity: 0.6;
    transition: all 0.3s;
}

.category-card:hover .category-icon {
    opacity: 1;
    transform: scale(1.1);
}

.category-info {
    padding: 25px;
}

.category-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
}

.category-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-family: 'Segoe UI', sans-serif;
}

.category-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

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

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

/* ============================================
   PRODUCT GRID
   ============================================ */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.badge-sale {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-image {
    height: 250px;
    overflow: hidden;
    background: var(--bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.5s;
}

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

.no-image {
    font-size: 60px;
    color: var(--primary-light);
}

.product-info {
    padding: 25px;
    border-top: 1px solid var(--border-light);
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    min-height: 50px;
}

.product-price {
    margin-bottom: 20px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Segoe UI', sans-serif;
}

.btw-info {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.btn-add-cart {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-add-cart:hover {
    background: var(--primary-color);
    color: white;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: var(--bg-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background: var(--bg-accent);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews-section {
    background: white;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.stars {
    color: #f4b740;
    font-size: 1.2rem;
}

.rating-text {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--bg-soft);
    padding: 30px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.review-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.reviewer-info strong {
    color: var(--text-dark);
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-stars {
    color: #f4b740;
}

.review-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.review-verified {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   USPs
   ============================================ */

.usps {
    background: var(--bg-accent);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.usp-item {
    text-align: center;
    padding: 40px 25px;
    border: 1px solid var(--border-light);
    background: white;
    border-radius: 12px;
    transition: all 0.3s;
}

.usp-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.usp-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.usp-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
}

.usp-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   FOOTER - LIGHT THEME
   ============================================ */

.main-footer {
    background: var(--bg-subtle);
    color: var(--text-dark);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-column h3 i {
    color: var(--primary-color);
}

.footer-column p {
    color: var(--text-light);
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-medium);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--text-medium);
}

.contact-list i {
    color: var(--primary-color);
    margin-top: 3px;
}

.newsletter-section {
    background: white;
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h3 {
    margin-bottom: 8px;
    color: var(--primary-color);
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
}

.newsletter-text p {
    color: var(--text-light);
}

.newsletter-text h3 i {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    padding: 14px 25px;
    border: 2px solid var(--border-medium);
    border-radius: 8px;
    width: 350px;
    background: var(--bg-soft);
    color: var(--text-dark);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.newsletter-form button {
    padding: 14px 35px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.footer-bottom {
    background: var(--bg-accent);
    padding: 25px 0;
    border-top: 1px solid var(--border-light);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: var(--text-medium);
}

.footer-links a:hover {
    color: var(--primary-color);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
    .hamburger-menu {
        display: block;
    }
    
    .top-bar {
        display: none;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: 100vh;
        background: white;
        transition: left 0.3s;
        overflow-y: auto;
        z-index: 2000;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.nav-open {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 20px;
        background: var(--bg-accent);
        border-radius: 8px;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .search-bar {
        max-width: 100%;
    }
    
    .hero h1,
    .luxury-title .script-text {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 40px auto 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero h1,
    .luxury-title .script-text {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
}

/* ============================================
   PRODUCT IMAGE FIX
   ============================================ */

.product-card img,
.product-grid .product-card img,
.featured-products .product-card img {
    width: 100% !important;
    height: 250px !important;
    object-fit: contain !important;
    object-position: center !important;
    background: var(--bg-subtle) !important;
    border-radius: 12px 12px 0 0 !important;
    transition: transform 0.3s ease !important;
    display: block !important;
    padding: 15px !important;
}

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

.product-card .product-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-subtle);
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.category-card img,
.category-card .category-image {
    width: 100% !important;
    height: 200px !important;
    object-fit: contain !important;
    object-position: center !important;
    background: var(--bg-accent) !important;
    border-radius: 12px 12px 0 0 !important;
    transition: transform 0.3s ease !important;
    padding: 15px !important;
}

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

.category-card .category-image-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-accent);
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.product-image .no-image,
.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-subtle);
    color: var(--primary-light);
    font-size: 3rem;
    border-radius: 12px 12px 0 0;
}

@media (max-width: 768px) {
    .product-card img,
    .product-grid .product-card img,
    .featured-products .product-card img,
    .product-card .product-image {
        height: 200px !important;
    }
    
    .category-card img,
    .category-card .category-image,
    .category-card .category-image-wrapper {
        height: 150px !important;
    }
}

@media (max-width: 480px) {
    .product-card img,
    .product-grid .product-card img,
    .featured-products .product-card img,
    .product-card .product-image {
        height: 180px !important;
    }
    
    .category-card img,
    .category-card .category-image,
    .category-card .category-image-wrapper {
        height: 120px !important;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--primary-light);
    color: var(--text-dark);
}

a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media print {
    .main-header,
    .main-footer,
    .hero-buttons {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}