/* ============================================
   Shobuj Bazar - Custom Styles
   Organic E-commerce for Bangladesh
   ============================================ */

/* ====== HERO SECTION ====== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2D4F3C 0%, #1a3d2e 100%);
}

.hero-section canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #F4A261;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    line-height: 1.1;
}

.hero-content h2 {
    font-family: 'Space Grotesk', 'Noto Sans Bengali', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #FFF8E7;
    font-weight: 300;
    margin-bottom: 40px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-btn {
    display: inline-block;
    padding: 16px 48px;
    background: #2D4F3C;
    color: #FFFFFF;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 80px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.hero-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background: #F4A261;
    color: #2D4F3C;
    border-color: #F4A261;
}

/* ====== FEATURES STRIP ====== */
.features-strip {
    background: #D7E9C5;
    padding: 30px 0;
}

.feature-item {
    text-align: center;
    padding: 15px;
}

.feature-item i {
    font-size: 2rem;
    color: #2D4F3C;
    margin-bottom: 10px;
}

.feature-item span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2D4F3C;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ====== SECTION HEADINGS ====== */
.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #2D4F3C;
    margin-bottom: 10px;
}

.section-heading p {
    color: #666;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ====== PRODUCT CARDS ====== */
.product-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 20px rgba(45, 79, 60, 0.08);
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(45, 79, 60, 0.15);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background: #F5F0E8;
}

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

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #F4A261;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.product-badge.out-of-stock {
    background: #dc3545;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    color: #999;
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background: #F4A261;
    color: #FFFFFF;
}

.product-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.product-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    color: #2D4F3C;
    margin-bottom: 8px;
    line-height: 1.3;
    text-decoration: none;
    display: block;
}

.product-title:hover {
    color: #F4A261;
}

.product-weight {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
}

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

.product-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #F4A261;
}

.product-price .original {
    text-decoration: line-through;
    color: #bbb;
    font-size: 0.85rem;
    margin-left: 5px;
    font-weight: 400;
}

.add-to-cart-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #D7E9C5;
    border: none;
    color: #2D4F3C;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #2D4F3C;
    color: #FFFFFF;
    transform: scale(1.1);
}

/* ====== CATEGORY CARDS ====== */
.category-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    transition: all 0.4s ease;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(45,79,60,0.8) 0%, rgba(45,79,60,0.1) 60%, transparent 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.category-card:hover::before {
    background: linear-gradient(to top, rgba(45,79,60,0.9) 0%, rgba(45,79,60,0.3) 70%, transparent 100%);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45,79,60,0.2);
}

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

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

.category-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    color: #FFFFFF;
}

.category-content h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.category-content span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ====== MARQUEE / REVIEWS STRIP ====== */
.marquee-strip {
    background: #F4A261;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-content span {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: #2D4F3C;
    padding: 0 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* ====== REVIEW CARDS ====== */
.review-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(45,79,60,0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45,79,60,0.12);
}

.review-stars {
    color: #F4A261;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #D7E9C5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #2D4F3C;
    font-size: 0.9rem;
}

.review-author-name {
    font-weight: 600;
    color: #2D4F3C;
    font-size: 0.9rem;
}

.review-author-date {
    font-size: 0.75rem;
    color: #999;
}

/* ====== AUTH PAGES ====== */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #D7E9C5 0%, #FFF8E7 100%);
}

.auth-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 60px rgba(45,79,60,0.15);
}

.auth-card h1 {
    font-family: 'DM Serif Display', serif;
    color: #2D4F3C;
    text-align: center;
    margin-bottom: 10px;
}

.auth-card .auth-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.form-control-custom {
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-control-custom:focus {
    border-color: #D7E9C5;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(215, 233, 197, 0.3);
    outline: none;
}

.btn-primary-custom {
    background: #2D4F3C;
    color: #FFFFFF;
    border: none;
    border-radius: 80px;
    padding: 14px 40px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary-custom:hover {
    background: #F4A261;
    color: #2D4F3C;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244,162,97,0.3);
}

.btn-secondary-custom {
    background: #D7E9C5;
    color: #2D4F3C;
    border: none;
    border-radius: 80px;
    padding: 14px 40px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary-custom:hover {
    background: #2D4F3C;
    color: #FFFFFF;
}

/* ====== CART PAGE ====== */
.cart-item {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 3px 15px rgba(45,79,60,0.06);
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 5px 25px rgba(45,79,60,0.1);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
}

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

.cart-item-title {
    font-family: 'DM Serif Display', serif;
    color: #2D4F3C;
    font-size: 1.1rem;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #F4A261;
    font-weight: 600;
    font-size: 1rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #D7E9C5;
    background: #FFFFFF;
    color: #2D4F3C;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.quantity-btn:hover {
    background: #D7E9C5;
}

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

.cart-summary {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(45,79,60,0.08);
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-family: 'DM Serif Display', serif;
    color: #2D4F3C;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.95rem;
}

.summary-row.total {
    border-bottom: none;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2D4F3C;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #2D4F3C;
}

/* ====== CHECKOUT PAGE ====== */
.checkout-section {
    background: #FFF8E7;
    min-height: 100vh;
    padding: 100px 0 60px;
}

.checkout-form-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(45,79,60,0.08);
}

.payment-method-card {
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-method-card:hover,
.payment-method-card.active {
    border-color: #2D4F3C;
    background: #f8faf6;
}

.payment-method-card input[type="radio"] {
    accent-color: #2D4F3C;
}

/* ====== DASHBOARD ====== */
.dashboard-sidebar {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(45,79,60,0.08);
    position: sticky;
    top: 100px;
}

.dashboard-sidebar .nav-link {
    color: #666;
    padding: 12px 18px;
    border-radius: 16px;
    margin-bottom: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-sidebar .nav-link:hover,
.dashboard-sidebar .nav-link.active {
    background: #D7E9C5;
    color: #2D4F3C;
    font-weight: 600;
}

.dashboard-content {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(45,79,60,0.08);
}

.stat-card {
    background: linear-gradient(135deg, #D7E9C5 0%, #c8e0b0 100%);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45,79,60,0.15);
}

.stat-card i {
    font-size: 2rem;
    color: #2D4F3C;
    margin-bottom: 10px;
}

.stat-card .stat-value {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: #2D4F3C;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ====== ORDER CARDS ====== */
.order-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(45,79,60,0.06);
    border-left: 4px solid #D7E9C5;
    transition: all 0.3s ease;
}

.order-card:hover {
    box-shadow: 0 5px 25px rgba(45,79,60,0.1);
}

.order-card.status-pending { border-left-color: #ffc107; }
.order-card.status-processing { border-left-color: #17a2b8; }
.order-card.status-shipped { border-left-color: #6f42c1; }
.order-card.status-delivered { border-left-color: #28a745; }
.order-card.status-cancelled { border-left-color: #dc3545; }

.order-status-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending .order-status-badge { background: #fff3cd; color: #856404; }
.status-processing .order-status-badge { background: #d1ecf1; color: #0c5460; }
.status-shipped .order-status-badge { background: #e2d4f0; color: #4a2c7a; }
.status-delivered .order-status-badge { background: #d4edda; color: #155724; }
.status-cancelled .order-status-badge { background: #f8d7da; color: #721c24; }

/* ====== ADMIN STYLES ====== */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: #2D4F3C;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1040;
    transition: all 0.3s ease;
}

.admin-sidebar .sidebar-brand {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-sidebar .sidebar-brand a {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: #D7E9C5;
    text-decoration: none;
}

.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.7);
    padding: 14px 25px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: rgba(255,255,255,0.1);
    color: #F4A261;
}

.admin-sidebar .nav-link i {
    width: 20px;
    text-align: center;
}

.admin-main {
    flex: 1;
    margin-left: 260px;
    background: #f5f5f0;
    min-height: 100vh;
}

.admin-header {
    background: #FFFFFF;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.admin-content {
    padding: 30px;
}

.admin-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.admin-table th {
    background: #f8f9f5;
    padding: 14px 18px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    font-weight: 600;
    text-align: left;
}

.admin-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.admin-table tr:hover td {
    background: #fafaf8;
}

/* ====== TOAST NOTIFICATIONS ====== */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 15px 25px;
    border-radius: 12px;
    color: #FFFFFF;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    animation: slideInRight 0.3s ease;
}

.toast-notification.success { background: #2D4F3C; }
.toast-notification.error { background: #dc3545; }
.toast-notification.info { background: #F4A261; }

/* ====== RESPONSIVE ====== */
@media (max-width: 991px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }
    
    .admin-sidebar.show {
        transform: translateX(0);
    }
    
    .admin-main {
        margin-left: 0;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-item-image {
        width: 150px;
        height: 150px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .auth-card {
        padding: 25px;
    }
    
    .product-card {
        margin-bottom: 20px;
    }
    
    .checkout-form-card,
    .dashboard-content {
        padding: 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* ====== ABOUT PAGE ====== */
.about-hero {
    background: linear-gradient(135deg, #D7E9C5 0%, #FFF8E7 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #2D4F3C;
    margin-bottom: 15px;
}

.about-story {
    padding: 60px 0;
}

.story-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(45,79,60,0.15);
}

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

/* ====== CONTACT PAGE ====== */
.contact-section {
    padding: 100px 0 60px;
    background: #FFF8E7;
    min-height: 100vh;
}

.contact-info-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(45,79,60,0.08);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item i {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: #D7E9C5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D4F3C;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ====== ANIMATIONS ====== */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* ====== LOADING SPINNER ====== */
.spinner-custom {
    width: 40px;
    height: 40px;
    border: 3px solid #D7E9C5;
    border-top-color: #2D4F3C;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ====== EMPTY STATE ====== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-family: 'DM Serif Display', serif;
    color: #888;
    margin-bottom: 10px;
}

.empty-state p {
    color: #aaa;
    margin-bottom: 20px;
}

/* ====== BREADCRUMB ====== */
.breadcrumb-custom {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 12px 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(45,79,60,0.06);
}

.breadcrumb-custom a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-custom a:hover {
    color: #F4A261;
}

.breadcrumb-custom .active {
    color: #2D4F3C;
    font-weight: 500;
}

/* ====== PRODUCT DETAIL ====== */
.product-detail-image {
    border-radius: 24px;
    overflow: hidden;
    background: #F5F0E8;
}

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

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.product-gallery-thumbs img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
    border-color: #F4A261;
}

/* ====== FILTER SIDEBAR ====== */
.filter-sidebar {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(45,79,60,0.06);
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2D4F3C;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    transition: color 0.3s ease;
}

.filter-option:hover {
    color: #F4A261;
}

.filter-option input[type="checkbox"] {
    accent-color: #2D4F3C;
}
