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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* ==================== TOP BAR ==================== */

.top-bar {
    background: linear-gradient(135deg, #c8e6c9 0%, #dcedc8 100%);
    border-bottom: 1px solid #a5d6a7;
    padding: 0.6rem 0;
    font-size: 0.9rem;
}

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

.top-contacts {
    display: flex;
    gap: 2rem;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==================== HEADER ==================== */

header {
    background-color: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container a {
    display: block;
}

.logo-image {
    width: 200px;
    height: auto;
}

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

.search-form {
    display: flex;
    border: 2px solid #5fa817;
    border-radius: 5px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
}

.search-button {
    background-color: #5fa817;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #4d8a13;
}

/* Header Right - Icons */
.header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wishlist-header-btn,
.cart-header-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
    font-weight: 600;
    font-size: 0.9rem;
}

.wishlist-header-btn {
    color: #c0392b;
    background: rgba(192, 57, 43, 0.06);
}
.wishlist-header-btn:hover {
    background: rgba(192, 57, 43, 0.12);
    transform: translateY(-2px);
}

.cart-header-btn {
    color: white;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}
.cart-header-btn:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.header-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.header-icon-wrap svg {
    width: 22px;
    height: 22px;
}

.wishlist-icon-wrap svg {
    stroke: #c0392b;
    fill: rgba(192, 57, 43, 0.08);
}

.cart-icon-wrap svg {
    stroke: white;
}

.header-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

.wishlist-count {
    background: #c0392b;
    color: white;
}

.cart-count {
    background: #1b5e20;
    color: white;
}

.header-btn-label {
    white-space: nowrap;
}

/* ==================== NAVIGATION ==================== */

.main-nav {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: visible;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

.nav-menu li {
    position: relative;
    flex-shrink: 0;
}

.nav-menu > li:last-child {
    padding-right: 0;
}

.nav-menu > li > a {
    color: white;
    text-decoration: none;
    padding: 1rem 1.3rem;
    display: block;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.nav-menu > li > a:hover {
    background-color: #4d8a13;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    padding: 0.5rem 0;
}

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

.dropdown-menu a {
    color: #333;
    padding: 0.8rem 1.5rem;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #5fa817;
}

/* ==================== BANNER ==================== */

.banner-section {
    background: linear-gradient(135deg, #194d19 0%, #1b5e20 50%, #2e7d32 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.banner-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

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

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-large {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

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

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

/* ==================== PAGE TITLE ==================== */

.page-title {
    font-size: 2.5rem;
    color: #1a5940;
    margin-bottom: 2rem;
    text-align: center;
}

/* ==================== CATEGORIES ==================== */

.categories-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #e8f5e9 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1a5940;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.category-card {
    background: linear-gradient(135deg, #ffffff 0%, #c8e6c9 100%);
    border: 2px solid #a5d6a7;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: #333;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(46, 125, 50, 0.25);
    border-color: #4caf50;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(46, 125, 50, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.category-card h3 {
    font-size: 1.3rem;
    color: #1a5940;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.9rem;
    color: #666;
}

/* ==================== PRODUCTS ==================== */

.featured-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #e8f5e9 0%, #ffffff 100%);
}

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

#results-count {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    color: #1a5940;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #c8e6c9 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #c8e6c9;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.3);
    border-color: #4caf50;
}

.product-image-container {
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff6b35;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.product-badge.out-of-stock {
    background-color: #6c757d;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #f0f0f0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform: translateZ(0);
}

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

.product-info {
    padding: 1.5rem;
}

.product-category {
    color: #5fa817;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1a5940;
    line-height: 1.3;
    min-height: 2.6em;
}

.product-details {
    margin: 0.8rem 0;
    font-size: 0.85rem;
    color: #666;
}

.product-detail {
    margin-bottom: 0.3rem;
    display: flex;
    gap: 0.5rem;
}

.product-detail strong {
    color: #1a5940;
    font-weight: 600;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s;
}

.product-card:hover .feature-tag {
    background-color: #5fa817;
    color: white;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.product-price-container {
    display: flex;
    flex-direction: column;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a5940;
}

.product-price-unit {
    font-size: 0.75rem;
    color: #999;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8557 100%);
    color: white;
    padding: 0.7rem 1.3rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    will-change: transform;
}

.add-to-cart-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.add-to-cart-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.add-to-cart-btn .btn-icon {
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.add-to-cart-btn:hover:not(:disabled) .btn-icon {
    transform: scale(1.2);
}

/* ==================== CATALOG ==================== */

.catalog-section {
    padding: 2rem 0;
    min-height: 60vh;
}

.filters {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-group {
    flex: 1;
    min-width: 250px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a5940;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

/* ==================== CART ==================== */

.cart-section {
    padding: 2rem 0;
    min-height: 60vh;
}

.cart-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    animation: slideInLeft 0.4s ease-out;
}

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

.cart-item-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a5940;
}

.cart-item-price {
    color: #5fa817;
    font-size: 1.1rem;
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #f8f9fa;
    padding: 0.5rem;
    border-radius: 5px;
}

.quantity-btn {
    background-color: #5fa817;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background-color: #4d8a13;
}

.quantity-btn:active {
    transform: scale(0.9);
}

.quantity-value {
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 30px;
    text-align: center;
}

.cart-item-total {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1a5940;
    min-width: 100px;
    text-align: right;
}

.remove-btn {
    background-color: #dc3545;
    color: white;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.remove-btn:hover {
    background-color: #c82333;
}

.cart-summary {
    background: linear-gradient(135deg, #ffffff 0%, #c8e6c9 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.2);
    border: 2px solid #a5d6a7;
}

.summary-content {
    max-width: 500px;
    margin: 0 auto;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    font-size: 1.1rem;
}

.summary-row.total {
    border-top: 2px solid #ddd;
    margin-top: 1rem;
    padding-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a5940;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cart-actions .btn {
    flex: 1;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.empty-cart h3 {
    font-size: 1.8rem;
    color: #1a5940;
    margin-bottom: 0.5rem;
}

/* ==================== CHECKOUT ==================== */

.checkout-section {
    padding: 2rem 0;
    min-height: 60vh;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.checkout-form,
.order-summary {
    background: linear-gradient(135deg, #ffffff 0%, #c8e6c9 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.15);
    border: 2px solid #c8e6c9;
}

.checkout-form h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1b5e20;
    font-size: 1.5rem;
    border-bottom: 3px solid #4caf50;
    padding-bottom: 0.5rem;
}

.checkout-form h3:first-child {
    margin-top: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.radio-group label:hover {
    background-color: #f8f9fa;
}

.radio-group input[type="radio"] {
    width: auto;
    cursor: pointer;
}

.payment-info {
    background-color: #fff3cd;
    padding: 1rem;
    border-radius: 5px;
    border-left: 4px solid #ffc107;
}

.order-summary h3 {
    margin-bottom: 1.5rem;
    color: #1a5940;
    font-size: 1.5rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.summary-totals {
    margin-top: 1.5rem;
}

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

.reviews-section {
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
    padding: 4rem 0;
}

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

.review-card {
    background: linear-gradient(135deg, #ffffff 0%, #c8e6c9 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.15);
    border: 2px solid #a5d6a7;
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.25);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: #1b5e20;
    font-size: 1.1rem;
}

.review-rating {
    color: #ffa726;
    font-size: 1rem;
    margin-top: 0.2rem;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin: 1rem 0;
    font-style: italic;
}

.review-date {
    color: #999;
    font-size: 0.85rem;
    text-align: right;
}

/* ==================== HOURS ==================== */

.hours-section {
    background: linear-gradient(135deg, #c8e6c9 0%, #ffffff 100%);
    padding: 4rem 0;
    border-top: 1px solid #a5d6a7;
}

.hours-content {
    max-width: 900px;
    margin: 0 auto;
}

.hours-title {
    text-align: center;
    margin-bottom: 2rem;
}

.hours-title h2 {
    font-size: 2rem;
    color: #1a5940;
    margin-bottom: 0.5rem;
}

.hours-title p {
    color: #666;
}

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

.day {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #c8e6c9 100%);
    border-radius: 12px;
    border-left: 4px solid #4caf50;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.day:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.25);
}

.day.highlight {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe5b4 100%);
    border-left-color: #ff6b35;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

/* ==================== MAP & SOCIAL ==================== */

.map-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
    padding: 4rem 0;
}

.map-container {
    margin: 2rem 0 3rem;
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.2);
    border-radius: 16px;
    overflow: hidden;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #c8e6c9 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.15);
    border: 2px solid #a5d6a7;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.25);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #1b5e20;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.contact-card p {
    color: #555;
    line-height: 1.6;
}

.contact-card a {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #1b5e20;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon.facebook {
    background-color: #1877f2;
    color: white;
}

.social-icon.facebook:hover {
    background-color: #0d65d9;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #e08323 0%, #d5582c 25%, #cc1733 50%, #bc1356 75%, #ac0878 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.5);
}

.social-icon.website {
    background-color: #2e7d32;
    color: white;
}

.social-icon.website:hover {
    background-color: #1b5e20;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.5);
}

/* ==================== FOOTER ==================== */

footer {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ==================== PAGINATION ==================== */

.pagination-container {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    min-width: 45px;
    height: 45px;
    padding: 0.7rem 1.2rem;
    border: 2px solid #e0e0e0;
    background: white;
    color: #333;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

.pagination-btn:hover:not(.active) {
    border-color: #5fa817;
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(95, 168, 23, 0.2);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #5fa817 0%, #4d8a13 100%);
    color: white;
    border-color: #5fa817;
    box-shadow: 0 4px 15px rgba(95, 168, 23, 0.3);
    cursor: default;
    transform: translateY(-2px);
}

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

.pagination-dots {
    color: #999;
    font-weight: bold;
    padding: 0 0.5rem;
    font-size: 1.2rem;
    user-select: none;
}

.pagination-btn {
    animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==================== MOBILE MENU ==================== */

.mobile-menu-toggle {
    display: none;
    background: #5fa817;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
    will-change: transform;
}

.mobile-menu-toggle:hover {
    background: #4d8a13;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* ==================== SCROLL TO TOP ==================== */

.scroll-to-top {
    position: fixed;
    bottom: -60px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5fa817 0%, #4d8a13 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(95, 168, 23, 0.4);
    z-index: 9997;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.scroll-to-top.visible {
    bottom: 20px;
    opacity: 1;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(95, 168, 23, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* ==================== NOTIFICATIONS ==================== */

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 300px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    border-left: 4px solid #5fa817;
}

.notification-error {
    border-left: 4px solid #ff6b35;
}

.notification span:first-child {
    font-size: 1.5rem;
}

.notification-success span:first-child {
    color: #5fa817;
}

.notification-error span:first-child {
    color: #ff6b35;
}

/* ==================== LOADING ==================== */

.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #5fa817;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ==================== ACCESSIBILITY ==================== */

*:focus {
    outline: 2px solid #5fa817;
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid #5fa817;
    outline-offset: 2px;
}

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #5fa817;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10001;
}

.skip-to-content:focus {
    top: 0;
}

/* ==================== PERFORMANCE ==================== */

.is-scrolling * {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
}

.touch-device .product-card.touch-active {
    transform: scale(0.98);
    opacity: 0.9;
}

html {
    scroll-behavior: smooth;
}

/* ==================== RESPONSIVE - LARGE SCREENS ==================== */

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* ==================== RESPONSIVE - TABLETS HORIZONTAL ==================== */

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
}

/* ==================== RESPONSIVE - TABLETS ==================== */

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    header {
        padding: 0.5rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .header-content {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0;
        gap: 0.5rem;
        align-items: center;
    }

    .logo-container {
        order: 1;
        flex: 0 0 auto;
        margin-left: 45px;
    }

    .logo-image {
        width: 120px;
    }

    .header-right {
        order: 2;
        flex: 0 0 auto;
        gap: 0.3rem;
        margin-left: auto;
    }
    
    .header-btn-label {
        display: none;
    }
    
    .wishlist-header-btn,
    .cart-header-btn {
        padding: 0.5rem;
        border-radius: 10px;
        gap: 0;
    }
    
    .wishlist-header-btn {
        background: transparent;
    }
    
    .header-icon-wrap {
        width: 32px;
        height: 32px;
    }
    
    .header-icon-wrap svg {
        width: 24px;
        height: 24px;
    }

    .search-container {
        order: 3;
        width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
    }
    
    .search-form {
        border-radius: 8px;
    }
    
    .search-input {
        padding: 0.6rem 0.8rem;
        font-size: 0.95rem;
    }
    
    .search-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .mobile-menu-toggle {
        display: block;
        position: fixed;
        top: 8px;
        left: 12px;
        z-index: 10000;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        z-index: 9999;
        transition: left 0.3s ease-in-out;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 60px 0 20px 0;
        overflow-x: visible;
    }
    
    .nav-menu > li > a {
        color: #333;
        text-align: left;
        padding: 1.1rem 1.5rem;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1.1rem;
    }
    
    .nav-menu > li > a:hover {
        background-color: #f8f9fa;
        color: #5fa817;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        background: #f8f9fa;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
    }
    
    .nav-menu li.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 0.8rem 2rem;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .banner-content h1 {
        font-size: 1.8rem;
    }

    .banner-content p {
        font-size: 0.95rem;
    }
    
    .banner-section {
        padding: 2.5rem 0;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .category-icon {
        font-size: 2.5rem;
    }
    
    .category-card h3 {
        font-size: 0.85rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-info {
        padding: 0.8rem;
    }
    
    .product-name {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .product-description {
        display: none;
    }
    
    .product-details {
        display: none;
    }
    
    .product-image {
        height: 180px;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
    }

    .cart-item-controls {
        flex-direction: column;
        width: 100%;
    }

    .cart-actions {
        flex-direction: column;
    }

    .filters {
        flex-direction: column;
        padding: 0.8rem;
        gap: 0.6rem;
    }
    
    .filters-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .filter-group select,
    .filter-group input {
        padding: 0.9rem;
        font-size: 1.05rem;
        border-radius: 8px;
    }
    
    .filter-group label {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    #category-filter {
        font-size: 1.1rem;
        padding: 1rem;
        font-weight: 600;
    }
    
    #subcategory-filter {
        font-size: 1.05rem;
        padding: 0.9rem;
    }

    .pagination {
        gap: 0.3rem;
    }
    
    .pagination-btn {
        min-width: 36px;
        height: 36px;
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    #results-count {
        font-size: 0.9rem;
        padding: 0.6rem;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: -55px;
        right: 15px;
    }
    
    .scroll-to-top.visible {
        bottom: 80px;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* Quick view mobile */
    .quick-view-modal {
        width: 95%;
        max-height: 90vh;
        margin: 5vh auto;
    }
    
    .quick-view-content {
        flex-direction: column;
    }
    
    .quick-view-image {
        max-height: 200px;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px !important;
        -webkit-appearance: none;
        appearance: none;
    }
    
    input[type="radio"],
    input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
    
    button,
    .btn {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
}

/* ==================== RESPONSIVE - PHONES ==================== */

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    header {
        padding: 0.4rem 0;
    }
    
    .logo-image {
        width: 100px;
    }
    
    .header-icon-wrap {
        width: 28px;
        height: 28px;
    }
    
    .search-input {
        padding: 0.5rem 0.6rem;
        font-size: 0.9rem;
    }
    
    .search-button {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .section-title h2 {
        font-size: 1.3rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
    }
    
    .pagination {
        gap: 0.2rem;
    }
    
    .pagination-btn {
        min-width: 32px;
        height: 32px;
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .pagination-btn:first-child,
    .pagination-btn:last-child {
        font-size: 0;
        min-width: 32px;
    }
    
    .pagination-btn:first-child::before {
        content: '←';
        font-size: 1.1rem;
    }
    
    .pagination-btn:last-child::before {
        content: '→';
        font-size: 1.1rem;
    }
    
    #results-count {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .product-card {
        margin: 0;
        border-radius: 10px;
        border-width: 1px;
    }
    
    .product-name {
        font-size: 0.78rem;
        min-height: auto;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 0.3rem;
    }
    
    .product-image {
        height: 140px;
    }
    
    .product-info {
        padding: 0.4rem 0.5rem;
    }
    
    .product-category {
        font-size: 0.65rem;
        margin-bottom: 0.2rem;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    .product-badge {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
    
    .wishlist-btn {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .product-info {
        padding: 0.5rem;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .add-to-cart-btn {
        width: 100%;
        justify-content: center;
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .quick-view-btn {
        display: none;
    }
    
    .banner-content h1 {
        font-size: 1.3rem;
    }
    
    .banner-content p {
        font-size: 0.85rem;
    }
    
    .banner-section {
        padding: 1.5rem 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .category-card {
        padding: 1rem 0.6rem;
    }
    
    .category-icon {
        font-size: 2.2rem;
        margin-bottom: 0.4rem;
    }
    
    .category-card h3 {
        font-size: 0.85rem;
    }
    
    .category-card p {
        font-size: 0.7rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .social-icons {
        gap: 0.8rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .category-card h3 {
        font-size: 1rem;
    }
    
    .category-card p {
        font-size: 0.8rem;
    }
    
    .nav-menu > li > a {
        font-size: 0.85rem;
        padding: 0.7rem;
    }
    
    .header-content {
        gap: 1rem;
    }
    
    .search-button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .cart-item-name {
        font-size: 1rem;
    }
    
    .cart-item-price {
        font-size: 1rem;
    }
    
    .cart-item-total {
        font-size: 1.1rem;
        min-width: auto;
    }
    
    .checkout-form h3 {
        font-size: 1.2rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
}

/* ==================== RESPONSIVE - VERY SMALL SCREENS ==================== */

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .logo-image {
        width: 100px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .product-card {
        margin: 0 0.2rem;
    }
    
    .pagination-btn {
        min-width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .category-card {
        padding: 1rem 0.5rem;
    }
    
    .banner-content h1 {
        font-size: 1.3rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
}

/* ==================== LANDSCAPE MODE ==================== */

@media (max-width: 768px) and (orientation: landscape) {
    .banner-section {
        padding: 2rem 0;
    }
    
    .banner-content h1 {
        font-size: 1.8rem;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==================== TOUCH DEVICES ==================== */

@media (hover: none) and (pointer: coarse) {
    .btn,
    .add-to-cart-btn,
    .quantity-btn,
    .pagination-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-menu > li > a {
        padding: 1rem 1.5rem;
    }
    
    .search-button {
        min-width: 60px;
    }
}
/* ==================== BREADCRUMBS ==================== */

.breadcrumbs-section {
    background: linear-gradient(135deg, #f8faf8 0%, #e8f5e9 100%);
    padding: 0.8rem 0;
    border-bottom: 1px solid #c8e6c9;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: #2e7d32;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.breadcrumbs a:hover {
    color: #1b5e20;
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #999;
    font-size: 1rem;
}

.breadcrumb-current {
    color: #666;
    font-weight: 600;
}

/* ==================== ADVANCED FILTERS ==================== */

.filters-advanced {
    background: white;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
    border: 2px solid #c8e6c9;
    overflow: hidden;
}

.filters-row {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filters-row-secondary {
    background: linear-gradient(135deg, #f8faf8 0%, #e8f5e9 100%);
    border-top: 1px solid #e0e0e0;
    padding: 1.2rem 1.5rem;
}

.filters-advanced .filter-group {
    flex: 1;
    min-width: 200px;
}

.filters-advanced .filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a5940;
    font-size: 0.9rem;
}

.filters-advanced .filter-group select,
.filters-advanced .filter-group input[type="text"] {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: white;
}

.filters-advanced .filter-group select:focus,
.filters-advanced .filter-group input:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

/* Price Range */
.filter-group-price {
    min-width: 250px !important;
}

.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-range-inputs input {
    width: 100px !important;
    padding: 0.6rem 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s;
}

.price-range-inputs input:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

.price-range-separator {
    color: #999;
    font-weight: 600;
}

.btn-filter-apply {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-filter-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Brand Checkboxes */
.filter-group-brand {
    min-width: 300px !important;
}

.brand-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-height: 120px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.brand-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #555;
    cursor: pointer;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
    background: white;
    white-space: nowrap;
}

.brand-checkbox-label:hover {
    border-color: #4caf50;
    background: #f0fff0;
}

.brand-checkbox-label input {
    display: none;
}

.brand-checkbox-label input:checked + .checkbox-custom + .brand-name {
    color: #1b5e20;
    font-weight: 600;
}

.brand-checkbox-label:has(input:checked) {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-color: #4caf50;
}

.brand-show-more {
    background: none;
    border: none;
    color: #2e7d32;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s;
}

.brand-show-more:hover {
    color: #1b5e20;
}

/* Stock Filter */
.filter-group-stock {
    min-width: auto !important;
    flex: 0 0 auto;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
    white-space: nowrap;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4caf50;
    cursor: pointer;
}

/* Filter Actions */
.filter-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
}

.btn-filter-reset {
    background: none;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    font-weight: 600;
    white-space: nowrap;
}

.btn-filter-reset:hover {
    border-color: #ff6b35;
    color: #ff6b35;
    background: #fff5f0;
}

/* Active Filter Tags */
.active-filters {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    border-top: 1px solid #e0e0e0;
    flex-wrap: wrap;
    background: #fffde7;
}

.active-filters-label {
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
}

.active-filters-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tag {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #1b5e20;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid #a5d6a7;
}

.filter-tag button {
    background: none;
    border: none;
    color: #c62828;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
    padding: 0;
    font-weight: bold;
    transition: transform 0.2s;
}

.filter-tag button:hover {
    transform: scale(1.3);
}

/* ==================== SEARCH AUTOCOMPLETE ==================== */

.search-wrapper {
    position: relative;
    flex: 1;
}

.search-wrapper .search-input {
    width: 100%;
}

.search-filter-wrapper {
    position: relative;
}

.search-autocomplete,
.filter-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #4caf50;
    border-top: none;
    border-radius: 0 0 12px 12px;
    z-index: 1000;
    max-height: 350px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1rem;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: linear-gradient(135deg, #f0fff0 0%, #e8f5e9 100%);
}

.autocomplete-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.autocomplete-info {
    flex: 1;
    min-width: 0;
}

.autocomplete-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-name mark {
    background: #fff176;
    color: #333;
    padding: 0 2px;
    border-radius: 3px;
}

.autocomplete-meta {
    font-size: 0.8rem;
    color: #999;
    margin-top: 2px;
}

.autocomplete-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a5940;
    white-space: nowrap;
}

/* ==================== WISHLIST ==================== */

.wishlist-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    opacity: 0;
    transform: scale(0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-card:hover .wishlist-btn {
    opacity: 1;
    transform: scale(1);
}

.wishlist-btn.active {
    opacity: 1;
    transform: scale(1);
    background: #fff0f0;
}

.wishlist-btn .heart-icon {
    font-size: 1.1rem;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.wishlist-btn.active .heart-icon {
    filter: grayscale(0%);
}

.wishlist-btn:hover {
    transform: scale(1.15) !important;
}

.btn-wishlist {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e0e0e0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-wishlist:hover {
    border-color: #ff6b35;
    background: #fff5f0;
}

.btn-wishlist.active {
    background: #fff0f0;
    border-color: #ff6b35;
}

/* ==================== QUICK VIEW ==================== */

.quick-view-btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.95) 0%, rgba(46, 125, 50, 0.95) 100%);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product-card:hover .quick-view-btn {
    bottom: 15px;
}

.quick-view-btn:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    transform: translateX(-50%) scale(1.05);
}

/* Quick View Modal */
.quick-view-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.quick-view-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quick-view-modal {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.quick-view-overlay.active .quick-view-modal {
    transform: scale(1) translateY(0);
}

.quick-view-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 2;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-view-close:hover {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    transform: rotate(90deg);
}

.quick-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.quick-view-image {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8faf8 0%, #e8f5e9 100%);
    border-radius: 20px 0 0 20px;
}

.quick-view-image img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
}

.quick-view-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.qv-category {
    color: #5fa817;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.qv-title {
    font-size: 1.5rem;
    color: #1a5940;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.qv-sku {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.3rem;
}

.qv-brand {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.qv-availability {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
}

.qv-availability.in-stock {
    background: #e8f5e9;
    color: #2e7d32;
}

.qv-availability.out-of-stock {
    background: #fce4ec;
    color: #c62828;
}

.qv-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.qv-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.qv-feature-tag {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.25rem 0.6rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.qv-price-section {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    padding: 1rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.qv-price {
    font-size: 2rem;
    font-weight: 800;
    color: #1a5940;
}

.qv-unit {
    font-size: 0.9rem;
    color: #999;
}

.qv-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 1rem;
}

.qv-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.3rem;
}

.qv-quantity input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    outline: none;
}

.qv-quantity .quantity-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    border-radius: 8px;
}

.qv-add-cart {
    flex: 1;
    padding: 0.8rem 1.5rem !important;
    font-size: 1rem !important;
    border-radius: 12px !important;
}

.qv-full-link {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8557 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(255,107,53,0.3);
    position: relative;
    z-index: 10;
}

.qv-full-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.4);
    color: white;
}

/* ==================== RECENTLY VIEWED ==================== */

.recently-viewed-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8faf8 0%, #e8f5e9 100%);
    border-top: 1px solid #c8e6c9;
}

.recently-viewed-section .section-title h2 {
    font-size: 1.8rem;
}

.recently-viewed-grid {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.recently-viewed-grid::-webkit-scrollbar {
    height: 6px;
}

.recently-viewed-grid::-webkit-scrollbar-track {
    background: #e8f5e9;
    border-radius: 3px;
}

.recently-viewed-grid::-webkit-scrollbar-thumb {
    background: #a5d6a7;
    border-radius: 3px;
}

.recently-viewed-card {
    min-width: 180px;
    max-width: 180px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.recently-viewed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.2);
}

.rv-image {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.rv-info {
    padding: 0.8rem;
}

.rv-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a5940;
    line-height: 1.3;
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rv-price {
    font-size: 1rem;
    font-weight: 700;
    color: #ff6b35;
}

/* ==================== RESPONSIVE - FILTERS ==================== */

@media (max-width: 768px) {
    .breadcrumbs {
        font-size: 0.8rem;
    }
    
    .filters-row {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .filters-row-secondary {
        padding: 1rem;
    }
    
    .filters-advanced .filter-group {
        min-width: 100% !important;
    }
    
    .filter-group-price {
        min-width: 100% !important;
    }
    
    .price-range-inputs {
        flex-wrap: nowrap;
    }
    
    .price-range-inputs input {
        flex: 1;
        min-width: 0;
    }
    
    .brand-checkboxes {
        max-height: 100px;
    }
    
    .filter-actions {
        width: 100%;
    }
    
    .btn-filter-reset {
        width: 100%;
        justify-content: center;
    }
    
    .quick-view-content {
        grid-template-columns: 1fr;
    }
    
    .quick-view-image {
        border-radius: 20px 20px 0 0;
        padding: 1.5rem;
    }
    
    .quick-view-image img {
        max-height: 250px;
    }
    
    .quick-view-info {
        padding: 1.5rem;
    }
    
    .qv-title {
        font-size: 1.2rem;
    }
    
    .qv-price {
        font-size: 1.5rem;
    }
    
    .qv-actions {
        flex-wrap: wrap;
    }
    
    .qv-quantity {
        flex: 0 0 auto;
    }
    
    .qv-add-cart {
        min-width: 150px;
    }
    
    .quick-view-modal {
        width: 95%;
        max-height: 90vh;
    }
    
    .recently-viewed-card {
        min-width: 150px;
        max-width: 150px;
    }
    
    .rv-image {
        height: 100px;
    }
    
    .product-card:hover .wishlist-btn {
        opacity: 1;
    }
    
    .wishlist-btn {
        opacity: 1;
        transform: scale(1);
    }
    
    .product-card .quick-view-btn {
        bottom: 10px;
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .qv-actions {
        flex-direction: column;
    }
    
    .qv-add-cart {
        width: 100%;
    }
    
    .btn-wishlist {
        width: 100%;
    }
    
    .recently-viewed-card {
        min-width: 140px;
        max-width: 140px;
    }
    
    .active-filters {
        padding: 0.6rem 1rem;
    }
}

/* ==================== PRODUCT DETAIL PAGE ==================== */

.product-detail-section {
    padding: 2rem 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.product-detail-image {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.product-detail-info h1 {
    font-size: 1.6rem;
    color: #1a5940;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-detail-brand {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.product-detail-sku {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: bold;
    color: #e65100;
    margin-bottom: 0.5rem;
}

.product-detail-stock {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-detail-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.product-detail-actions .btn-large {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

.product-chars {
    background: #f0f7f0;
    border-radius: 8px;
    padding: 1rem 1.5rem;
}

.char-row {
    display: flex;
    padding: 0.4rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.char-row:last-child {
    border-bottom: none;
}

.char-label {
    font-weight: 600;
    color: #555;
    min-width: 120px;
}

.char-value {
    color: #333;
}

.product-description-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.product-description-section h2 {
    color: #1a5940;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-description-text {
    line-height: 1.7;
    color: #444;
}

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

.features-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: #444;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .product-detail-info h1 {
        font-size: 1.3rem;
    }
    .product-detail-price {
        font-size: 1.6rem;
    }
}
