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

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f5f7f6;
    color: #1f2d27;
    line-height: 1.6;
}

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

a { text-decoration: none; color: inherit; }

/* Header */
.site-header {
    background: #0b7a5b;
    color: #fff;
    padding: 15px 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.logo {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
}
.logo span { color: #b7f0d8; }
.main-nav a {
    color: #fff;
    margin-left: 20px;
    font-weight: 500;
}
.main-nav a:hover { color: #b7f0d8; }
.cart-count {
    background: #ff8a00;
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

/* Header nav additions */
.header-icons { display: flex; align-items: center; gap: 18px; }
.icon-link { color: #fff; font-weight: 500; position: relative; }
.icon-link:hover { color: #b7f0d8; }
.wishlist-count { position: relative; top: -8px; }
.header-search-form { display: flex; flex: 1; max-width: 320px; margin: 0 15px; }
.header-search-form input { flex: 1; padding: 8px 12px; border-radius: 4px 0 0 4px; border: none; }
.header-search-form button { border: none; border-radius: 0 4px 4px 0; padding: 8px 12px; background: #095f47; color: #fff; cursor: pointer; }
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    background: #fff;
    color: #1f2d27;
    min-width: 180px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    border-radius: 6px;
    padding: 8px 0;
    z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 8px 16px; color: #1f2d27 !important; margin: 0; }
.nav-dropdown-menu a:hover { background: #f0f7f4; color: #0b7a5b !important; }

/* Hero */
.hero {
    background: linear-gradient(135deg, #0b7a5b, #14a67e);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 30px;
}
.hero h1 { font-size: 42px; margin-bottom: 10px; }
.hero p { font-size: 18px; margin-bottom: 20px; }
.btn-hero { background: #fff; color: #0b7a5b; font-weight: 700; }
.btn-hero:hover { background: #f0f7f4; }

/* Homepage sections */
.home-section { margin-bottom: 45px; }
.home-section h2 { margin-bottom: 20px; }
.section-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.section-heading h2 { margin-bottom: 0; }
.view-all-link { color: #0b7a5b; font-weight: 600; }
.view-all-link:hover { text-decoration: underline; }

.category-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}
.category-tile {
    background: #fff;
    border-radius: 8px;
    padding: 18px 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: transform 0.15s;
}
.category-tile:hover { transform: translateY(-3px); }
.category-tile img { width: 60px; height: 60px; object-fit: contain; margin-bottom: 10px; }
.category-tile span { display: block; font-weight: 600; font-size: 14px; }

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.why-us-item { background: #fff; border-radius: 8px; padding: 25px; text-align: center; }
.why-us-icon { font-size: 32px; display: block; margin-bottom: 10px; }
.why-us-item h4 { margin-bottom: 8px; }
.why-us-item p { color: #666; font-size: 14px; }

.newsletter-section { background: #0b7a5b; color: #fff; text-align: center; padding: 40px 20px; border-radius: 8px; }
.newsletter-section h2 { color: #fff; }
.newsletter-form { display: flex; justify-content: center; gap: 10px; margin-top: 15px; max-width: 450px; margin-left: auto; margin-right: auto; }
.newsletter-form input { flex: 1; padding: 10px; border-radius: 4px; border: none; }

.main-content { padding-bottom: 60px; min-height: 60vh; }

/* Alerts */
.alert {
    padding: 12px 18px;
    border-radius: 6px;
    margin: 15px 0;
}
.alert-success { background: #d7f5e9; color: #0b7a5b; border: 1px solid #0b7a5b; }
.alert-error { background: #fdeaea; color: #c0392b; border: 1px solid #c0392b; }
.alert-info { background: #eaf2fd; color: #2c5282; border: 1px solid #2c5282; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border: none;
    border-radius: 6px;
    background: #0b7a5b;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}
.btn:hover { background: #095f47; }
.btn-secondary { background: #6c757d; }
.btn-secondary:hover { background: #565e64; }
.btn-primary { background: #0b7a5b; }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-small { padding: 5px 12px; font-size: 13px; }
.btn:disabled { background: #ccc; cursor: not-allowed; }

/* Shop layout */
.shop-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 30px;
}
.sidebar h3 { margin-bottom: 10px; }
.category-list { list-style: none; }
.category-list li { margin-bottom: 8px; }
.category-list a { display: block; padding: 6px 10px; border-radius: 5px; }
.category-list a.active, .category-list a:hover { background: #0b7a5b; color: #fff; }
.search-form { margin-top: 20px; display: flex; }
.search-form input { flex: 1; padding: 8px; border: 1px solid #ccc; border-radius: 4px 0 0 4px; }
.search-form button { border-radius: 0 4px 4px 0; padding: 8px 14px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}
.product-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    text-align: center;
    position: relative;
}
.product-card img { width: 100%; height: 160px; object-fit: contain; margin-bottom: 10px; background: #f0f0f0; border-radius: 6px; }
.product-card h3 { font-size: 16px; margin-bottom: 5px; }
.category-tag { color: #777; font-size: 13px; margin-bottom: 5px; }
.price { font-weight: bold; font-size: 17px; color: #0b7a5b; margin-bottom: 10px; }
.old-price { text-decoration: line-through; color: #999; font-weight: normal; font-size: 14px; margin-left: 6px; }

.wishlist-btn {
    position: absolute; top: 10px; right: 10px;
    background: #fff; border: 1px solid #eee; border-radius: 50%;
    width: 34px; height: 34px; cursor: pointer; color: #ccc; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.15s, border-color 0.15s;
}
.wishlist-btn:hover { border-color: #ff6b6b; }
.wishlist-btn.active { color: #ff6b6b; border-color: #ff6b6b; }

.stars { color: #ffb400; letter-spacing: 1px; }
.rating-line { font-size: 13px; margin-bottom: 8px; }
.rating-count { color: #777; }

.product-listing { min-width: 0; }
.listing-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; color: #555; font-size: 14px; }
.sort-form { display: flex; align-items: center; gap: 8px; }
.sort-form select { padding: 6px; border: 1px solid #ccc; border-radius: 4px; }

/* Product detail */
.breadcrumb { margin: 15px 0; color: #666; font-size: 14px; }
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}
.product-detail-image img { width: 100%; border-radius: 8px; background: #f0f0f0; }
.product-detail-image #main-product-image { height: 340px; object-fit: contain; }
.product-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.product-thumb {
    width: 64px; height: 64px; object-fit: contain; background: #f0f0f0;
    border-radius: 6px; border: 2px solid transparent; cursor: pointer; padding: 2px;
}
.product-thumb:hover { border-color: #b7dfd0; }
.product-thumb.active { border-color: #0b7a5b; }
.product-detail-info h1 { margin-bottom: 10px; }
.product-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.product-title-row .wishlist-btn { position: static; flex-shrink: 0; }
.short-desc { color: #555; margin-bottom: 15px; }
.price-large { font-size: 30px; font-weight: bold; color: #0b7a5b; margin-bottom: 15px; }
.stock-info { margin-bottom: 20px; }
.add-to-cart-form { display: flex; align-items: center; gap: 10px; margin-bottom: 25px; flex-wrap: wrap; }
.add-to-cart-form input[type=number] { width: 70px; padding: 8px; border: 1px solid #ccc; border-radius: 4px; }
.add-to-cart-form select { padding: 8px; border: 1px solid #ccc; border-radius: 4px; margin-right: 10px; }
.out-of-stock-text { color: #c0392b; }
.variant-tag { color: #0b7a5b; font-weight: 600; }
.pdp-action-buttons { display: flex; gap: 10px; width: 100%; }
.buy-now-btn { background: #ff8a00; }
.buy-now-btn:hover { background: #e67a00; }
.shipping-info-box { background: #f7f9f8; border-radius: 6px; padding: 15px; margin-top: 20px; font-size: 14px; color: #555; }
.shipping-info-box p { margin-bottom: 6px; }

.rating-summary-line { margin-bottom: 15px; }
.reviews-section { background: #fff; padding: 25px; border-radius: 8px; margin-bottom: 40px; }
.reviews-section h2 { margin-bottom: 15px; }
.reviews-section h3 { margin: 20px 0 10px; }
.review-list { margin-bottom: 20px; }
.review-item { border-bottom: 1px solid #eee; padding: 15px 0; }
.review-item-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.review-date { color: #999; font-size: 12px; }
.review-form { max-width: 500px; }

.related-products h2 { margin: 20px 0; }

/* Cart */
.cart-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 8px; overflow: hidden; margin-bottom: 20px; }
.cart-table th, .cart-table td { padding: 12px 15px; border-bottom: 1px solid #eee; text-align: left; }
.cart-product-cell { display: flex; align-items: center; gap: 10px; }
.cart-product-cell img { width: 50px; height: 50px; object-fit: contain; background: #f0f0f0; border-radius: 4px; }
.qty-input { width: 60px; padding: 6px; }
.remove-link { color: #c0392b; }
.cart-bottom-row { display: flex; justify-content: space-between; align-items: center; padding: 15px; flex-wrap: wrap; gap: 15px; }
.coupon-box { display: flex; align-items: center; }
.coupon-form { display: flex; gap: 8px; }
.coupon-form input { padding: 8px; border: 1px solid #ccc; border-radius: 4px; width: 180px; }
.cart-summary { display: flex; align-items: center; gap: 20px; justify-content: flex-end; padding: 15px; flex-wrap: wrap; }
.cart-totals-box { text-align: right; min-width: 220px; }
.cart-totals-box p { display: flex; justify-content: space-between; gap: 20px; padding: 4px 0; }
.cart-final-total { font-size: 20px; font-weight: bold; border-top: 1px solid #eee; margin-top: 6px; padding-top: 10px !important; }

/* Checkout */
.checkout-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; }
.checkout-form-wrap, .order-summary { background: #fff; padding: 25px; border-radius: 8px; }
.admin-form label, .auth-form label { display: block; margin: 12px 0 5px; font-weight: 600; }
.checkout-form-wrap label { display: block; margin: 12px 0 5px; font-weight: 600; }
.checkout-form-wrap input, .checkout-form-wrap textarea,
.auth-form input, .auth-form textarea,
.admin-form input, .admin-form textarea, .admin-form select {
    width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; font-size: 15px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; }
.summary-list { list-style: none; margin-bottom: 15px; }
.summary-list li { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid #eee; }
.summary-total { display: flex; justify-content: space-between; font-size: 20px; font-weight: bold; padding-top: 10px; }
.payment-note { margin-top: 15px; color: #666; font-size: 14px; }

.pincode-check-row { display: flex; gap: 8px; }
.pincode-check-row input { flex: 1; }
.pincode-result { margin-top: 6px; font-size: 13px; font-weight: 600; min-height: 18px; }
.pincode-ok { color: #0b7a5b; }
.pincode-error { color: #c0392b; }

/* Auth */
.auth-form-wrap { max-width: 450px; margin: 30px auto; background: #fff; padding: 30px; border-radius: 8px; }
.auth-form-wrap h1 { margin-bottom: 20px; text-align: center; }
.auth-form-wrap p { margin-top: 15px; text-align: center; }

/* My Account */
.account-summary { display: flex; gap: 20px; margin: 20px 0; flex-wrap: wrap; }
.account-summary-card {
    background: #fff; border-radius: 8px; padding: 20px 30px; text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06); flex: 1; min-width: 140px;
}
.account-summary-card strong { display: block; font-size: 26px; color: #0b7a5b; }
.account-summary-card span { color: #666; font-size: 14px; }
.account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.account-box { background: #fff; padding: 25px; border-radius: 8px; }

/* Contact page */
.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; }
.contact-form-wrap, .contact-info { background: #fff; padding: 25px; border-radius: 8px; }
.contact-info p { margin-bottom: 12px; }
.map-embed { margin-top: 15px; border-radius: 6px; overflow: hidden; }

/* Static pages */
.static-page { background: #fff; padding: 30px; border-radius: 8px; max-width: 800px; margin: 0 auto 40px; }
.static-page h1 { margin-bottom: 20px; }
.static-page-content { color: #444; }

/* Payment / result pages */
.payment-page, .result-page { max-width: 600px; margin: 40px auto; background: #fff; padding: 40px; border-radius: 8px; text-align: center; }
.result-success h1 { color: #0b7a5b; }
.result-failed h1 { color: #c0392b; }
.order-details-box { text-align: left; background: #f7f9f8; padding: 20px; border-radius: 6px; margin: 20px 0; }
.order-details-box p { margin-bottom: 8px; }

/* Badges */
.badge { padding: 4px 10px; border-radius: 12px; font-size: 12px; font-weight: 600; }
.badge-pending { background: #fff3cd; color: #856404; }
.badge-success { background: #d7f5e9; color: #0b7a5b; }
.badge-failed { background: #fdeaea; color: #c0392b; }
.badge-processing { background: #eaf2fd; color: #2c5282; }

.site-footer { background: #1f2d27; color: #ccc; padding: 40px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 25px; padding-bottom: 30px; }
.footer-col h4 { color: #fff; margin-bottom: 12px; }
.footer-col h4 span { color: #7fd6b2; }
.footer-col a, .footer-col p { display: block; color: #ccc; margin-bottom: 8px; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #33443c; padding: 15px 0; text-align: center; font-size: 13px; }

.cart-hint { color: #777; font-size: 13px; margin-top: -10px; margin-bottom: 20px; }

/* Toast notifications (AJAX add-to-cart feedback) */
.toast-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 220px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: opacity 0.4s;
}

@media (max-width: 768px) {
    .shop-layout, .product-detail, .checkout-layout, .form-row, .account-grid, .contact-layout { grid-template-columns: 1fr; }
    .header-inner { flex-direction: column; align-items: stretch; }
    .header-search-form { max-width: 100%; margin: 10px 0; }
    .main-nav, .header-icons { justify-content: center; flex-wrap: wrap; }
}

/* =====================================================
   Invoices
   ===================================================== */
.invoice-toolbar { display: flex; gap: 10px; margin-bottom: 20px; }
.invoice-toolbar.no-print { flex-wrap: wrap; }
.invoice-sheet { background: #fff; padding: 35px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); max-width: 850px; margin: 0 auto; }
.invoice-head { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-bottom: 2px solid #eee; padding-bottom: 20px; margin-bottom: 20px; }
.invoice-head h2 { color: #0b7a5b; margin-bottom: 8px; }
.invoice-head p { font-size: 13px; color: #555; margin: 2px 0; }
.invoice-meta { text-align: right; }
.invoice-meta h3 { color: #333; margin-bottom: 8px; }
.invoice-meta p { font-size: 13px; margin: 2px 0; }
.invoice-billto { margin-bottom: 20px; }
.invoice-billto h4 { margin-bottom: 6px; }
.invoice-billto p { font-size: 14px; margin: 2px 0; color: #444; }
.invoice-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.invoice-table th, .invoice-table td { text-align: left; padding: 10px; border-bottom: 1px solid #eee; font-size: 14px; }
.invoice-table th { background: #f7f9f8; }
.invoice-totals { max-width: 320px; margin-left: auto; }
.invoice-totals div { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
.invoice-grand-total { border-top: 2px solid #333; font-weight: 700; font-size: 16px !important; margin-top: 6px; padding-top: 10px !important; }
.invoice-note, .invoice-terms { font-size: 13px; color: #666; margin-top: 15px; }
.invoice-footer-note { font-size: 12px; color: #999; margin-top: 20px; text-align: center; }

@media print {
    .no-print, .site-header, .site-footer, .admin-sidebar, .admin-topbar { display: none !important; }
    .invoice-sheet { box-shadow: none; padding: 0; }
    body { background: #fff; }
}

/* =====================================================
   Delivery tracking timeline
   ===================================================== */
.tracking-steps { display: flex; justify-content: space-between; margin: 30px 0; position: relative; }
.tracking-steps::before { content: ''; position: absolute; top: 9px; left: 5%; right: 5%; height: 3px; background: #e0e0e0; z-index: 0; }
.tracking-step { position: relative; z-index: 1; flex: 1; text-align: center; }
.tracking-step-dot { display: block; width: 20px; height: 20px; border-radius: 50%; background: #e0e0e0; margin: 0 auto 8px; border: 3px solid #fff; box-shadow: 0 0 0 2px #e0e0e0; }
.tracking-step.done .tracking-step-dot { background: #0b7a5b; box-shadow: 0 0 0 2px #0b7a5b; }
.tracking-step.current .tracking-step-dot { background: #ff8a00; box-shadow: 0 0 0 2px #ff8a00; }
.tracking-step-label { font-size: 13px; color: #555; }
.tracking-step.done .tracking-step-label, .tracking-step.current .tracking-step-label { color: #222; font-weight: 600; }
.tracking-details-box { background: #fff; padding: 20px; border-radius: 8px; margin-bottom: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.tracking-details-box p { margin: 6px 0; }

/* =====================================================
   Notifications (customer + admin bell)
   ===================================================== */
.notif-count { background: #c0392b; }
.notification-list { display: flex; flex-direction: column; gap: 10px; }
.notification-item { display: flex; justify-content: space-between; align-items: center; gap: 15px; background: #fff; border-radius: 8px; padding: 14px 18px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); border-left: 4px solid #e0e0e0; }
.notification-item.unread { border-left-color: #0b7a5b; background: #f4fbf8; }
.notification-item-main strong { display: block; margin-bottom: 4px; }
.notification-item-main p { margin: 0 0 4px; color: #555; font-size: 14px; }
.notification-time { font-size: 12px; color: #999; }

.admin-notif-bell { position: relative; display: inline-block; margin-right: 15px; }
.notif-bell-btn { background: none; border: none; font-size: 20px; cursor: pointer; position: relative; padding: 4px 6px; }
.notif-bell-badge { position: absolute; top: -2px; right: -2px; background: #c0392b; color: #fff; font-size: 10px; font-weight: 700; border-radius: 10px; padding: 1px 5px; min-width: 16px; text-align: center; }
.notif-bell-shake { animation: notif-shake 0.6s ease; }
@keyframes notif-shake { 0%,100% { transform: rotate(0); } 20% { transform: rotate(-15deg); } 40% { transform: rotate(12deg); } 60% { transform: rotate(-8deg); } 80% { transform: rotate(5deg); } }
.admin-notif-dropdown { display: none; position: absolute; right: 0; top: 36px; width: 320px; background: #fff; border-radius: 8px; box-shadow: 0 6px 20px rgba(0,0,0,0.15); z-index: 100; max-height: 400px; overflow-y: auto; }
.admin-notif-dropdown.open { display: block; }
.notif-dropdown-item { display: block; padding: 12px 16px; border-bottom: 1px solid #f0f0f0; color: #333; }
.notif-dropdown-item:hover { background: #f7f9f8; }
.notif-dropdown-item.unread { background: #f4fbf8; }
.notif-dropdown-item strong { display: block; font-size: 13px; margin-bottom: 3px; }
.notif-dropdown-item span { font-size: 12px; color: #777; display: block; }
.notif-dropdown-viewall { display: block; text-align: center; padding: 10px; font-size: 13px; font-weight: 600; color: #0b7a5b; }
.notif-empty { padding: 16px; color: #999; font-size: 13px; text-align: center; }

/* =====================================================
   Product Ads
   ===================================================== */
.sidebar-ad-card { display: block; background: #fff; border-radius: 8px; padding: 12px; margin-top: 20px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); position: relative; text-align: center; }
.sidebar-ad-tag { position: absolute; top: 8px; left: 8px; background: #ff8a00; color: #fff; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 10px; }
.sidebar-ad-card img { max-width: 100%; height: 100px; object-fit: contain; margin: 10px 0; }
.sidebar-ad-card strong { display: block; color: #222; margin-bottom: 3px; }
.sidebar-ad-card span { font-size: 12px; color: #777; }

.product-ads-section { margin: 10px 0; }
.product-ads-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.product-ad-card { display: flex; gap: 15px; background: linear-gradient(135deg, #fef9f0, #fff); border: 1px solid #ffe6bf; border-radius: 10px; padding: 15px; position: relative; align-items: center; }
.product-ad-card img { width: 80px; height: 80px; object-fit: contain; }
.product-ad-card-body strong { display: block; color: #222; margin-bottom: 4px; }
.product-ad-card-body p { font-size: 13px; color: #777; margin: 0 0 6px; }
.product-ad-price { font-weight: 700; color: #0b7a5b; }

.cod-badge { display: inline-block; font-size: 11px; background: #eaf2fd; color: #2c5282; padding: 2px 8px; border-radius: 10px; margin: 4px 0; }

/* =====================================================
   Shop page dynamic filters
   ===================================================== */
.filter-form { background: #fff; padding: 15px; border-radius: 8px; margin-top: 15px; }
.filter-label { display: block; font-weight: 600; font-size: 13px; margin: 12px 0 6px; }
.filter-label:first-child { margin-top: 0; }
.price-range-row { display: flex; align-items: center; gap: 8px; }
.price-range-row input { width: 100%; padding: 7px; border: 1px solid #ddd; border-radius: 5px; }
.filter-form select { width: 100%; padding: 7px; border: 1px solid #ddd; border-radius: 5px; }
.clear-filters-link { display: block; text-align: center; margin-top: 10px; font-size: 13px; color: #c0392b; }

/* =====================================================
   Checkout: payment method + pincode check
   ===================================================== */
.payment-method-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
.payment-method-options .disabled-option { opacity: 0.5; }
.pincode-check-row { display: flex; gap: 8px; }
.pincode-result { font-size: 13px; margin-top: 6px; }
.pincode-result.pincode-ok { color: #0b7a5b; }
.pincode-result.pincode-error { color: #c0392b; }
.result-actions { display: flex; gap: 10px; margin: 20px 0; flex-wrap: wrap; }
