/* site.css - lightweight custom design (single file, no external CSS libs) */

:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #1f2933;
  --muted: #6b7280;
  --primary: #d9534f;
  --primary-dark: #c9423f;
  --success: #27ae60;
  --warning: #f2c94c;
  --danger: #e74c3c;
  --border: #e5e7eb;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --radius: 10px;
  --max-width: 1200px;
  --gutter: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

/* Layout grid (Bootstrap-lite) */
.container { width: min(var(--max-width), calc(100% - 32px)); margin: 0 auto; }
.row { display: flex; flex-wrap: wrap; margin-left: calc(-1 * var(--gutter) / 2); margin-right: calc(-1 * var(--gutter) / 2); }
[class^="col-"], [class*=" col-"] { padding-left: calc(var(--gutter) / 2); padding-right: calc(var(--gutter) / 2); width: 100%; }
.col-12 { width: 100%; }

@media (min-width: 768px) {
  .col-md-6 { width: 50%; }
  .col-md-10 { width: 83.333%; }
  .col-md-12 { width: 100%; }
}
@media (min-width: 992px) {
  .col-lg-2 { width: 16.666%; }
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333%; }
  .col-lg-5 { width: 41.666%; }
  .col-lg-6 { width: 50%; }
  .col-lg-8 { width: 66.666%; }
  .col-lg-12 { width: 100%; }
  .offset-lg-1 { margin-left: 8.333%; }
  .offset-lg-2 { margin-left: 16.666%; }
}

/* Display utilities */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.ml-auto { margin-left: auto; }
.mt-3 { margin-top: 12px; }
.text-center { text-align: center; }

@media (min-width: 992px) {
  .d-lg-none { display: none !important; }
  .d-lg-flex { display: flex !important; }
  .d-lg-block { display: block !important; }
}

/* Typography */
h1, h2, h3, h4, h5 { margin: 0 0 12px 0; color: #0f172a; font-weight: 700; }
p { margin: 0 0 12px 0; color: var(--muted); }
.small { font-size: 13px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 6px; border: 1px solid transparent; padding: 10px 16px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; text-decoration: none; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

/* Header / logo / search */
.logo-flex { display: flex; align-items: center; gap: 0; padding: 0; margin: 0; }
.logo-img { height: 50px; width: auto; transition: all 0.3s ease; }
.search-form-desktop { flex: 1; max-width: 500px; margin: 8px 20px; position: relative; }
.search-form-flex { display: flex; gap: 8px; width: 100%; }
.search-input-desktop { flex: 1; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px 0 0 4px; font-size: 14px; outline: none; transition: all 0.3s ease; background-color: #fff; }
.search-btn-red { padding: 12px 20px; background-color: #d9534f; color: white; border: 1px solid #d9534f; border-radius: 0 4px 4px 0; cursor: pointer; font-weight: 600; transition: all 0.3s ease; white-space: nowrap; display: flex; align-items: center; justify-content: center; }
.autocomplete-list { position: absolute; top: 100%; left: 0; right: 0; background: white; border: 1px solid #ddd; border-top: none; list-style: none; padding: 0; margin: 0; max-height: 300px; overflow-y: auto; display: none; z-index: 1000; border-radius: 0 0 4px 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

/* Footer */
.footer-area-padding { padding: 30px 0; }
.footer-title { font-size: 14px; margin-bottom: 12px; }
.footer-list-margin { margin: 0; }
.footer-list-item { margin-bottom: 6px; }
.footer-link { font-size: 13px; }
.footer-social-flex { display: flex; gap: 10px; }
.footer-social-icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background-color: #f0f0f0; border-radius: 50%; transition: all 0.3s ease; }
.footer-social-icon-facebook:hover { background-color: #d9534f; color: white; }
.footer-bottom { margin-top: 20px; padding-top: 15px; border-top: 1px solid #e0e0e0; }
.footer-text { text-align: center; font-size: 12px; color: #999; margin: 0; }

/* Product page */
.product-title { margin-bottom: 30px; font-size: 24px; font-weight: 600; }
.product-compare-heading { margin-top: 20px; margin-bottom: 20px; font-size: 15px; color: #666; }
.btn-go-to-store { display: inline-flex; align-items: center; gap: 8px; padding: 11px 16px; background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); color: white; border-radius: 6px; cursor: pointer; font-size: 14px; font-weight: 600; transition: all 0.2s ease; user-select: none; min-height: 40px; box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2); }
.btn-go-to-store:hover { box-shadow: 0 6px 16px rgba(0, 123, 255, 0.35); transform: translateY(-2px); }
.similar-products-section { margin-top: 20px; }
.similar-products-title { margin-bottom: 30px; font-size: 20px; font-weight: 600; color: #333; }
.product-card-link { text-decoration: none; color: inherit; display: block; height: 100%; }
.section-heading-lg { font-size: 28px; font-weight: 600; text-align: center; margin-bottom: 40px; }
.product-mini-title { font-size: 14px; font-weight: 600; margin-bottom: 10px; min-height: 40px; display: flex; align-items: center; justify-content: center; }
.product-image-fit { max-height: 100%; max-width: 100%; object-fit: contain; }
.product-image-main { max-height: 280px; object-fit: contain; }
.product-mini-category { font-size: 12px; color: #999; margin-bottom: 10px; }
.product-mini-price { font-size: 12px; font-weight: 600; color: #d9534f; margin-bottom: 10px; }
.brand-link { color: #1976d2; text-decoration: underline; }
.hidden { display: none; }
.availability-mark { font-size: 18px; margin-right: 4px; line-height: 1; }

/* Breadcrumb */
.breadcrumb-wrapper { background: #f8f9fb; padding: 8px 0; border-bottom: 1px solid #e4e7eb; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0 12px; background: transparent; font-size: 14px; color: #4a5568; list-style: none; }
.breadcrumb-centered { justify-content: center; text-align: center; }
.breadcrumb-item { display: inline-flex; align-items: center; color: inherit; }
.breadcrumb-item + .breadcrumb-item::before { content: '›'; margin: 0 6px; color: #a0aec0; }
.breadcrumb a { color: #2b6cb0; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-item.active span { color: #1a202c; font-weight: 600; }
.svg-inline-middle { vertical-align: middle; flex-shrink: 0; }
.chart-container { position: relative; height: 400px; }
.product-card { border: 1px solid #e0e0e0; border-radius: 8px; padding: 15px; text-align: center; height: 100%; display: flex; flex-direction: column; justify-content: space-between; transition: all 0.3s ease; }
.product-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); transform: translateY(-4px); }
.product-card-image { margin-bottom: 12px; height: 120px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-card-image-lg { height: 150px; }
.product-card-placeholder { margin-bottom: 12px; height: 120px; background-color: #f0f0f0; display: flex; align-items: center; justify-content: center; border-radius: 4px; color: #999; }
.related-by-brand-section { margin-top: 40px; }
.related-by-brand-title { margin-bottom: 30px; font-size: 18px; font-weight: 600; color: #333; }
.price-info-section { background-color: #f9f9f9; border-top: 1px solid #e0e0e0; padding: 30px 0; }
.price-info-title { font-size: 16px; font-weight: 600; margin-bottom: 15px; }
.price-info-p { font-size: 13px; line-height: 1.6; color: #555; margin: 0 0 12px 0; }
.contact-link { color: #d9534f; text-decoration: none; font-weight: 500; }

/* Page helpers */
.page-title { font-size: 32px; font-weight: 700; margin-bottom: 10px; text-align: center; }
.lead-text { font-size: 16px; color: #999; text-align: center; margin-bottom: 40px; }
.section-gap-margin { margin-bottom: 40px; }
.section-heading { font-size: 24px; font-weight: 700; color: #333; margin-bottom: 20px; border-bottom: 2px solid #d9534f; padding-bottom: 10px; }
.list-indent { font-size: 14px; color: #666; line-height: 1.8; margin-left: 20px; margin-bottom: 15px; }
.list-indent li { margin-bottom: 8px; }
.body-p { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 15px; }
.section-heading-small { font-size: 20px; font-weight: 700; color: #333; margin-bottom: 15px; }
.terms-footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid #e0e0e0; text-align: center; }
.small-muted { font-size: 12px; color: #999; }
.m-0 { margin: 0; }
.mb-30 { margin-bottom: 30px; }
.mb-60 { margin-bottom: 60px; }
.mt-60 { margin-top: 60px; }

/* Hero / empty states */
.search-hero { margin: -30px 0 20px 0; }
.empty-icon { font-size: 64px; color: #ddd; display: block; margin-bottom: 20px; }
.no-results { grid-column: 1 / -1; text-align: center; padding: 40px; color: #999; font-size: 16px; }
.empty-state { padding: 60px 20px; }

/* Feature and CTA */
.feature-card { background: linear-gradient(135deg, #d9534f 0%, #c9423f 100%); padding: 60px 40px; border-radius: 8px; text-align: center; color: white; }
.feature-icon { font-size: 80px; opacity: 0.2; display: block; margin-bottom: 20px; }
.cta-btn { display: inline-block; background-color: #d9534f; color: white; padding: 14px 40px; border-radius: 4px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
.cta-btn:hover { background-color: #c9423f; box-shadow: 0 4px 12px rgba(217, 83, 79, 0.3); }

/* FAQ */
.terms-section { padding: 20px; background-color: #f9f9f9; border-left: 4px solid #d9534f; margin-bottom: 40px; }
.about-content { padding: 20px; }
.faq-item { margin-bottom: 20px; border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; }
.faq-question { padding: 20px; background-color: #f9f9f9; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s ease; }
.faq-answer { padding: 20px; display: none; }
.faq-question-title { font-size: 16px; font-weight: 600; color: #333; margin: 0; }
.faq-answer-p { font-size: 14px; color: #666; line-height: 1.8; margin: 0; }
.faq-question i { font-size: 20px; color: #d9534f; transition: transform 0.3s ease; }
.faq-question.open + .faq-answer { display: block; }

/* Brand helpers */
.product-mini-brand { font-size: 13px; color: #666; font-weight: 500; margin-bottom: 10px; }
.empty-state-text { font-size: 16px; color: #999; }

/* Disclaimer helpers */
.disclaimer-wrapper { background-color: #f9f9f9; border-top: 1px solid #e0e0e0; padding: 30px 0; }
.disclaimer-title { font-size: 16px; font-weight: 600; margin-bottom: 15px; }

/* Search form tweaks */
.search-form { position: relative; }
.search-input { transition: all 0.3s ease !important; border-color: #ddd !important; }
.search-input:hover { border-color: #d9534f !important; box-shadow: 0 1px 4px rgba(217, 83, 79, 0.15) !important; }
.search-input:focus { border-color: #d9534f !important; box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.1) !important; }
.search-btn { transition: all 0.3s ease !important; }
.search-btn:hover { background-color: #c9423f !important; border-color: #c9423f !important; box-shadow: 0 2px 8px rgba(217, 83, 79, 0.3) !important; }
.search-btn:active { transform: translateY(1px) !important; }
#autocompleteList li, #autocompleteListMobile li { padding: 12px 15px; cursor: pointer; border-bottom: 1px solid #f0f0f0; font-size: 14px; transition: all 0.2s ease; }
#autocompleteList li:hover, #autocompleteListMobile li:hover { background-color: #f9f9f9; color: #d9534f; padding-left: 18px; }
@media (max-width: 991px) { .search-form-mobile { position: relative; } }
@media (max-width: 768px) { .search-form input, .search-form button { font-size: 13px; } .search-input { border-radius: 4px 0 0 4px !important; } .search-btn { border-radius: 0 4px 4px 0 !important; } }

/* Cookie banner */
@keyframes slideDown { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(100%); } }
@keyframes slideIn { from { opacity: 0; transform: translateY(100%); } to { opacity: 1; transform: translateY(0); } }
#cookieConsentBanner { animation: slideIn 0.4s ease; }

/* Homepage cards */
.product-card-button { margin-top: auto; padding-top: 12px; border-top: 1px solid #f0f0f0; display: none; }
.product-card-button button { color: white; border: none; padding: 8px 16px; border-radius: 4px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; width: 100%; }
.product-card-button.latest-added button { background-color: #d9534f; }
.product-card-button.latest-added button:hover { background-color: #c9423f; }
.product-card-button.latest-verified button { background-color: #28a745; }
.product-card-button.latest-verified button:hover { background-color: #218838; }
@media (max-width: 768px) { .product-card-button { display: block; } }
.latest_products_area { padding: 44px 0; background-color: #f9f9f9; }
.latest_verified_products_area { padding: 44px 0; background-color: #fff; }
@media (max-width: 768px) { .latest_products_area { padding: 32px 0; } .latest_products_area h2 { font-size: 22px !important; margin-bottom: 26px !important; } .latest_verified_products_area { padding: 32px 0; } .latest_verified_products_area h2 { font-size: 22px !important; margin-bottom: 26px !important; } }

/* Brands page */
.brands-header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 60px 0; margin-bottom: 50px; text-align: center; }
.brands-header h1 { font-size: 42px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.5px; }
.brands-header p { font-size: 18px; opacity: 0.95; margin-bottom: 0; }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; margin-bottom: 60px; }
.brand-card { background: white; border-radius: 12px; padding: 24px; text-align: center; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; cursor: pointer; text-decoration: none; color: inherit; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 140px; border-top: 3px solid transparent; }
.brand-card:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); transform: translateY(-4px); border-top-color: #667eea; }
.brand-name { font-size: 18px; font-weight: 600; color: #333; margin-bottom: 8px; word-break: break-word; }
.brand-count { font-size: 14px; color: #999; background: #f5f5f5; padding: 6px 12px; border-radius: 20px; display: inline-block; }
.brands-stats { background: #f9f9f9; padding: 40px; border-radius: 12px; text-align: center; margin-bottom: 40px; }
.stats-value { font-size: 36px; font-weight: 700; color: #667eea; margin-bottom: 8px; }
.stats-label { font-size: 16px; color: #666; }
.section-title { font-size: 28px; font-weight: 700; color: #333; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 3px solid #667eea; display: inline-block; }
.search-box { background: white; padding: 20px; border-radius: 12px; margin-bottom: 30px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); }
.search-box input { width: 100%; padding: 12px 16px; border: 1px solid #e0e0e0; border-radius: 8px; font-size: 14px; transition: all 0.2s ease; }
.search-box input:focus { outline: none; border-color: #667eea; box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1); }
@media (max-width: 768px) { .brands-header { padding: 40px 0; } .brands-header h1 { font-size: 28px; } .brands-header p { font-size: 16px; } .brands-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; } .brand-card { min-height: 120px; padding: 16px; } .brand-name { font-size: 16px; } }
@media (max-width: 480px) { .brands-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; } .brand-card { padding: 12px; min-height: 100px; } .brand-name { font-size: 14px; } .brand-count { font-size: 12px; } }

/* Search results page */
.search_results_area { padding: 60px 0; background-color: #f9f9f9; min-height: 400px; }
.search-hero { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 40px 0; margin-bottom: 40px; border-radius: 8px; }
.search-hero h1 { font-size: 32px; font-weight: 700; margin-bottom: 15px; }
.search-hero .brand-highlight { color: #ffd700; }
.brand-seo-text { padding-top: 12px; }
.price-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; margin-top: 20px; }
.price-stat { background: rgba(255,255,255,0.1); padding: 15px; border-radius: 6px; text-align: center; }
.price-stat-label { font-size: 12px; opacity: 0.9; text-transform: uppercase; margin-bottom: 8px; }
.price-stat-value { font-size: 24px; font-weight: 700; }
.search-controls { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 15px; }
.results-count { color: #666; font-size: 14px; }
.sort-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.sort-btn { padding: 8px 14px; border: 1px solid #e6e6e6; border-radius: 10px; background: #fff; color: #333; text-decoration: none; font-weight: 600; line-height: 1.2; transition: all 0.15s ease; white-space: nowrap; }
.sort-btn:hover { border-color: #cbd5e0; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); }
.sort-btn.active { background: #1f78ff; border-color: #1f78ff; color: #fff; box-shadow: 0 2px 10px rgba(31, 120, 255, 0.25); }
.search-result-card { background: white; border: 1px solid #e0e0e0; border-radius: 8px; padding: 15px; text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; transition: all 0.3s ease; }
.search-result-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.15); transform: translateY(-4px); text-decoration: none; color: inherit; }
.product-image { margin-bottom: 12px; height: 150px; display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 4px; }
.product-image img { max-height: 100%; max-width: 100%; object-fit: contain; }
.product-image.no-image { background-color: #f0f0f0; color: #999; }
.product-title { font-size: 15px; font-weight: 600; margin-bottom: 10px; min-height: 45px; display: flex; align-items: center; justify-content: center; }
.product-info { font-size: 13px; color: #999; margin-bottom: 12px; flex-grow: 1; }
.product-info p { margin: 5px 0; }
.product-brand { font-weight: 500; color: #666; }
.product-price { font-size: 16px; font-weight: 700; color: #d9534f; margin-bottom: 8px; }
.view-button { margin-top: auto; padding-top: 12px; border-top: 1px solid #f0f0f0; display: none; }
.view-button button { background-color: #d9534f; color: white; border: none; padding: 8px 16px; border-radius: 4px; font-size: 13px; font-weight: 600; cursor: pointer; width: 100%; transition: all 0.3s ease; }
.view-button button:hover { background-color: #c9423f; }

/* About page */
.about_area { padding: 80px 0; background-color: #fff; }
@media (max-width: 768px) { .about_area { padding: 50px 0; } .about_area h1 { font-size: 24px !important; } .about_area h2 { font-size: 20px !important; } .about_area p { font-size: 14px !important; } }

/* FAQ page */
.faq_area { padding: 80px 0; background-color: #fff; }
.faq-question { background-color: #f9f9f9; cursor: pointer; }
.faq-question:hover { background-color: #f0f0f0; }
.faq-question i { transition: transform 0.3s ease; }
.faq-question.active i { transform: rotate(180deg); }
@media (max-width: 768px) { .faq_area { padding: 50px 0; } .faq_area h1 { font-size: 24px !important; } .faq-question h3 { font-size: 14px !important; } .faq-answer p { font-size: 13px !important; } }

/* Terms page */
.terms_area { background: #f8f9fa; min-height: 100vh; }
.terms-section { transition: all 0.3s ease; }
.terms-section:hover { background-color: rgba(217, 83, 79, 0.02); padding: 15px; border-radius: 8px; }

/* Contact page */
.contact_area { padding: 60px 0; }
.contact_info { display: flex; flex-direction: column; gap: 30px; }
.info_item { display: flex; gap: 15px; }
.info_item i { font-size: 30px; color: #d9534f; min-width: 30px; }
.info_item h6 { margin-bottom: 5px; font-weight: 600; font-size: 16px; }
.info_item p { margin: 0; color: #999; font-size: 14px; }
.contact_form_area { background: #f9f9f9; padding: 40px; border-radius: 8px; }
.contact_form_area h3 { font-size: 24px; font-weight: 600; color: #333; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: #333; }
.form-control { width: 100%; padding: 10px 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; transition: all 0.3s ease; }
.form-control:focus { outline: none; border-color: #d9534f; box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.1); }
.invalid-feedback { color: #dc3545; font-size: 13px; margin-top: 5px; }
.btn-primary { background-color: #d9534f; border-color: #d9534f; }
.btn-primary:hover { background-color: #c9423f; border-color: #c9423f; }
.g-recaptcha-wrapper { margin-bottom: 10px; }
.contact-terms-note { color: #999; display: block; }
.contact-submit-full { width: 100%; }
.alert { border-radius: 4px; font-size: 14px; margin-bottom: 20px; }
.alert-success { background-color: #d4edda; border-color: #c3e6cb; color: #155724; }
.alert-danger { background-color: #f8d7da; border-color: #f5c6cb; color: #721c24; }
@media (max-width: 768px) {
  .contact_form_area { padding: 20px; }
  .contact_form_area h3 { font-size: 20px; margin-bottom: 20px; }
  .contact_form_area .row { flex-direction: column; }
  .contact_info .col-lg-3 { margin-bottom: 30px; }
}

/* Utilities */
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.mt-80 { margin-top: 80px; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.footer-social-icon i { font-size: 16px; }

/* Cookie banner layout */
.cookie-banner-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-banner-col { flex: 1; min-width: 250px; }
.cookie-banner-text { margin: 0; font-weight: 600; margin-bottom: 8px; }
.cookie-banner-copy { margin: 0; opacity: 0.95; font-size: 13px; }
.cookie-banner-link { color: #3498db; text-decoration: none; font-weight: 500; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept { padding: 10px 20px; background-color: #d9534f; color: white; border: none; border-radius: 4px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; white-space: nowrap; }
.cookie-btn-accept:hover { background-color: #c9423f; }
.cookie-btn-reject { padding: 10px 20px; background-color: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); border-radius: 4px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; white-space: nowrap; }
.cookie-btn-reject:hover { border-color: rgba(255,255,255,0.6); }

/* About page structured classes */
.about-hero-title { font-size: 32px; font-weight: 700; margin-bottom: 10px; text-align: center; }
.about-hero-subtitle { font-size: 16px; color: #999; text-align: center; margin-bottom: 40px; }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); box-shadow: var(--shadow); }
.btn-secondary { background: #f1f3f5; color: #111827; border-color: #e5e7eb; }
.btn-secondary:hover { background: #e5e7eb; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: rgba(217, 83, 79, 0.1); }
.btn-lg { padding: 12px 18px; font-size: 16px; }
.btn-sm { padding: 8px 12px; font-size: 13px; }

/* Forms */
.form-group { margin-bottom: 18px; }
.form-control { width: 100%; padding: 12px 14px; border: 1px solid #d9dde3; border-radius: 6px; background: #fff; font-size: 14px; transition: all 0.2s ease; }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.12); }
.invalid-feedback { color: var(--danger); font-size: 13px; margin-top: 6px; }

/* Header */
.header_area { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.main_menu { padding: 14px 0; }
.navbar { display: flex; align-items: center; }
.navbar-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: #111; text-decoration: none; }
.navbar-toggler { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 36px; border: 1px solid #d9dde3; border-radius: 6px; background: #fff; cursor: pointer; }
.icon-bar { display: block; width: 22px; height: 2px; background: #111; border-radius: 2px; }

.search-form { width: 100%; }
.search-form-desktop { flex: 1; max-width: 560px; margin-left: 24px; position: relative; }
.search-form-mobile { width: 100%; margin-top: 12px; position: relative; }
.search-form-flex { display: flex; width: 100%; align-items: stretch; gap: 0; }
.search-input { flex: 1; padding: 12px 14px; border: 1px solid #d9dde3; border-right: 0; border-radius: 8px 0 0 8px; font-size: 14px; background: #fff; }
.search-btn { border: 1px solid var(--primary); background: var(--primary); color: #fff; padding: 0 16px; border-radius: 0 8px 8px 0; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s ease; }
.search-btn:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.search-btn svg { width: 18px; height: 18px; }
.autocomplete-list { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border: 1px solid #d9dde3; border-top: 0; list-style: none; padding: 0; margin: 0; max-height: 280px; overflow-y: auto; display: none; z-index: 20; border-radius: 0 0 10px 10px; box-shadow: var(--shadow); }
.autocomplete-list li { padding: 12px 15px; cursor: pointer; border-bottom: 1px solid #f2f2f2; font-size: 14px; }
.autocomplete-list li:hover { background: #f9fafb; color: var(--primary); }

@media (max-width: 991px) {
  .navbar { flex-wrap: wrap; }
  .navbar-toggler { display: flex; margin-left: 12px; }
  .search-form-desktop { display: none; }
  .search-form-mobile { display: block; }
}

/* Hero / sections */
/* More compact vertical rhythm across homepage */
.section_gap { padding: 36px 0; }
.section_gap_sm { padding: 36px 0; }
.seo_intro_area { padding: 48px 0 40px; }
.top_brands_area { padding: 44px 0 36px; }
.top_brands_area .section-heading-lg,
.latest_products_area .section-heading-lg { margin-bottom: 18px; }

/* Blog cards */
.blog-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06); height: 100%; display: flex; flex-direction: column; overflow: hidden; }
.blog-card-image-link { display: block; }
.blog-card-image { width: 100%; height: 190px; object-fit: cover; display: block; }
.blog-card-body { padding: 16px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { font-size: 12px; color: #6b7280; margin-bottom: 8px; }
.blog-card-title { font-size: 18px; margin: 0 0 10px; line-height: 1.35; }
.blog-card-title a { color: #111827; text-decoration: none; }
.blog-card-title a:hover { color: var(--primary, #d9534f); }
.blog-card-excerpt { color: #4b5563; font-size: 14px; margin-bottom: 12px; }
.blog-card-link { margin-top: auto; font-weight: 600; color: var(--primary, #d9534f); text-decoration: none; font-size: 14px; }
.blog-card-link:hover { text-decoration: underline; }

.blog-hero-image img { width: 100%; border-radius: 14px; object-fit: cover; }
.blog-hero-meta { color: #6b7280; margin-top: 6px; margin-bottom: 18px; font-size: 14px; }
.blog-content p { margin-bottom: 14px; font-size: 16px; line-height: 1.6; color: #1f2937; }
.blog-disclaimer { margin-top: 22px; font-size: 14px; color: #6b7280; }
.breadcrumb { background: transparent; padding: 0; margin-bottom: 10px; }
.breadcrumb-item + .breadcrumb-item::before { content: '/'; color: #9ca3af; }
.breadcrumb a { color: #374151; }
.breadcrumb a:hover { color: var(--primary, #d9534f); }

/* Footer */
.footer-area { background: #0f172a; color: #e5e7eb; margin-top: 60px; }
.footer-area-padding { padding: 40px 0; }
.footer-title { font-size: 14px; letter-spacing: 0.2px; color: #e5e7eb; text-transform: uppercase; }
.footer-list-margin { margin: 0; padding: 0; list-style: none; }
.footer-list-item { margin-bottom: 8px; }
.footer-link { color: #cbd5e1; font-size: 14px; }
.footer-link:hover { color: #fff; }
.footer-social-flex { display: flex; gap: 10px; margin-top: 10px; }
.footer-social-icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); color: #fff; font-weight: 700; letter-spacing: 0.3px; transition: all 0.2s ease; }
.footer-social-icon:hover { background: #fff; color: #0f172a; }
.footer-bottom { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-text { margin: 0; color: #94a3b8; font-size: 13px; }

/* Tabs */
.nav-tabs { list-style: none; padding: 0; margin: 0 0 16px 0; display: flex; gap: 8px; border-bottom: 1px solid #e5e7eb; padding-bottom: 8px; }
.nav-tabs .nav-item { margin: 0; padding: 0; }
.nav-link { padding: 10px 14px; border-radius: 8px; background: #f3f4f6; color: #374151; font-weight: 600; border: 1px solid transparent; transition: all 0.2s ease; }
.nav-link:hover { background: #e5e7eb; }
.nav-link.active { background: #fff; border-color: #e5e7eb; color: #111827; box-shadow: var(--shadow); }
.tab-content { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 18px; box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* Tables */
.table-responsive { width: 100%; overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid #f0f0f0; }
.table-sm th, .table-sm td { padding: 10px 12px; }
.table th { font-size: 13px; letter-spacing: 0.3px; text-transform: uppercase; color: #4b5563; }
.table tbody tr:hover { background: #f9fafb; }

/* Alerts */
.alert { border-radius: 8px; padding: 12px 14px; margin-bottom: 16px; font-size: 14px; border: 1px solid transparent; }
.alert-success { background: #e8f6ef; border-color: #b8e1c4; color: #1b5e20; }
.alert-danger { background: #fcebea; border-color: #f5c6cb; color: #7f1d1d; }

/* Cookie banner */
#cookieConsentBanner { animation: slideUp 0.3s ease; }
.cookie-banner-container { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cookie-banner-col { flex: 1; min-width: 260px; }
.cookie-banner-actions { display: flex; gap: 10px; }
.cookie-banner-text { font-weight: 700; margin: 0 0 8px 0; }
.cookie-banner-copy { margin: 0; font-size: 14px; color: #e0e7ff; }
.cookie-banner-link { color: #fff; text-decoration: underline; }
.cookie-btn-accept { background: #4ade80; color: #0f172a; border: none; padding: 10px 16px; border-radius: 8px; cursor: pointer; font-weight: 700; }
.cookie-btn-reject { background: #0ea5e9; color: #fff; border: none; padding: 10px 16px; border-radius: 8px; cursor: pointer; font-weight: 700; }

@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes slideDown { from { transform: translateY(0); opacity: 1; } to { transform: translateY(20px); opacity: 0; } }

/* Icons fallback (replacing font icon sets) */
.lnr, .fa { position: relative; display: inline-flex; align-items: center; justify-content: center; font-style: normal; }
.lnr::before, .fa::before { display: inline-block; }
.lnr-magnifier::before { content: "🔍"; }
.lnr-chart-bars::before { content: "📊"; }
.lnr-alarm::before { content: "⏰"; }
.lnr-shield::before { content: "🛡️"; }
.lnr-thumbs-up::before { content: "👍"; }
.lnr-phone::before { content: "📞"; }
.lnr-chevron-down::before { content: "⌄"; }
.fa-facebook::before { content: "f"; font-weight: 800; }
.fa-twitter::before { content: "t"; font-weight: 800; }
.fa-instagram::before { content: "ig"; font-weight: 800; font-size: 11px; }
.fa-linkedin::before { content: "in"; font-weight: 800; font-size: 11px; }

/* Hero cards (home/search) */
.search-hero { background: linear-gradient(135deg, #ffeaea 0%, #fff8f6 100%); border-radius: 16px; padding: 32px; box-shadow: var(--shadow); }
.search-hero h1 { margin-bottom: 12px; }
.search-hero p { margin-bottom: 18px; color: #4b5563; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.feature-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 14px; padding: 18px; box-shadow: 0 8px 18px rgba(0,0,0,0.05); }
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

/* Product page */
.product_image_area { padding: 24px 0 16px; background: #fff; box-shadow: var(--shadow); border-radius: 14px; margin-top: 10px; }
.product-image-main { border-radius: 12px; background: #f8fafc; padding: 6px; max-width: 250px; margin: 0 auto; }
.product-title { font-size: 28px; margin-bottom: 14px; }
.list { list-style: none; padding: 0; margin: 0; }
.list li { padding: 8px 0; display: flex; gap: 8px; font-size: 14px; color: #374151; }
.list span { color: #6b7280; }
.brand-link { font-weight: 700; }

.product-compare-heading { margin: 0 0 16px 0; font-size: 20px; }
#merchantPriceTable { width: 100%; border-collapse: separate; border-spacing: 0; margin-bottom: 0; }
#merchantPriceTable thead tr { background: linear-gradient(135deg, #f8f9fa 0%, #f0f1f3 100%); border-bottom: 2px solid #e0e0e0; }
#merchantPriceTable thead th { padding: 14px 16px; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; color: #333; text-align: left; border: none; }
#merchantPriceTable tbody tr { border-bottom: 1px solid #f0f0f0; transition: all 0.2s ease; cursor: pointer; vertical-align: middle; }
#merchantPriceTable tbody tr:hover { background-color: #fafbff; box-shadow: inset 0 0 0 1px rgba(0, 123, 255, 0.1); }
#merchantPriceTable tbody td { padding: 14px 16px; border: none; text-align: left; }
#merchantPriceTable tbody td:first-child { font-weight: 400; color: #333; white-space: nowrap; }
#merchantPriceTable tbody td:nth-child(2) { color: #666; max-width: 350px; word-wrap: break-word; }
#merchantPriceTable tbody td:nth-child(3) { font-weight: 700; font-size: 18px; color: #e74c3c; }
#merchantPriceTable tbody td:nth-child(4) { font-size: 13px; }
#merchantPriceTable tbody td:nth-child(4) > div:first-child { font-weight: 600; display: flex; align-items: center; gap: 6px; margin-bottom: 4px; color: var(--success); }
#merchantPriceTable tbody td:nth-child(4) > div:first-child .status-unavailable { color: #c0392b; }
#merchantPriceTable tbody td:nth-child(4) > div:last-child { color: #999; font-size: 11px; }
#merchantPriceTable tbody td:nth-child(5) { text-align: center; }
.go-to-store-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 10px; background: #111827; color: #fff; font-weight: 700; border: none; cursor: pointer; transition: all 0.2s ease; }
.go-to-store-btn:hover { background: #0f172a; box-shadow: var(--shadow); }

@media (max-width: 768px) {
  #merchantPriceTable { display: grid; width: 100%; }
  #merchantPriceTable thead { display: none; }
  #merchantPriceTable tbody { display: grid; gap: 16px; }
  #merchantPriceTable tbody tr { display: grid; grid-template-columns: 1fr; gap: 0; border: none; border-radius: 10px; padding: 16px; background: white; box-shadow: var(--shadow); }
  #merchantPriceTable tbody tr td { border: none; padding: 0; display: grid; grid-template-columns: 100px 1fr; gap: 12px; align-items: flex-start; margin-bottom: 10px; font-size: 13px; }
  #merchantPriceTable tbody tr td::before { content: attr(data-label); font-weight: 700; color: #666; font-size: 11px; text-transform: uppercase; letter-spacing: 0.3px; }
  #merchantPriceTable tbody tr td:nth-child(3) { font-weight: 700; font-size: 16px; color: #e74c3c; grid-template-columns: 1fr; }
  #merchantPriceTable tbody tr td:nth-child(5) { grid-template-columns: 1fr; padding-top: 12px; border-top: 1px solid #f0f0f0; margin-top: 12px; margin-bottom: 0; }
  #merchantPriceTable tbody tr td:nth-child(5)::before { display: none; }
  #merchantPriceTable tbody tr td:nth-child(5) .go-to-store-btn { width: 100%; justify-content: center; }
}

/* Similar / related product cards */
.product-card-link { text-decoration: none; color: inherit; }
.product-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 12px; padding: 14px; box-shadow: 0 6px 14px rgba(0,0,0,0.06); transition: all 0.2s ease; height: 100%; display: flex; flex-direction: column; gap: 10px; }
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.product-card-placeholder { background: #f3f4f6; border-radius: 10px; padding: 24px; text-align: center; color: #9ca3af; font-size: 14px; }
.product-mini-title { font-size: 14px; font-weight: 700; color: #111827; margin: 0; }
.product-mini-category { font-size: 12px; text-transform: capitalize; color: #6b7280; margin: 0; }
.product-mini-price { font-size: 13px; font-weight: 700; color: var(--primary); margin: 0; }
.product-card-button { margin-top: auto; }
.product-card-button button { width: 100%; border: none; border-radius: 10px; padding: 10px 12px; font-weight: 700; background: #111827; color: #fff; cursor: pointer; transition: all 0.2s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.08); }
.product-card-button button:hover { background: #0f172a; box-shadow: var(--shadow); }
.view-button { margin-top: auto; }
.view-button button { width: 100%; border: none; border-radius: 10px; padding: 10px 12px; font-weight: 700; background: #111827; color: #fff; cursor: pointer; transition: all 0.2s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.08); }
.view-button button:hover { background: #0f172a; box-shadow: var(--shadow); }

/* Brands page */
.brands-header { text-align: center; padding: 40px 16px 20px; }
.brands-header h1 { margin-bottom: 6px; font-size: 28px; }
.brands-header p { color: #4b5563; }
.brands-stats { background: #fff; border: 1px solid #f0f0f0; border-radius: 12px; padding: 16px; margin-bottom: 16px; text-align: center; box-shadow: 0 6px 14px rgba(0,0,0,0.06); }
.brands-stats .stats-value { font-size: 26px; font-weight: 800; color: #111827; }
.brands-stats .stats-label { color: #6b7280; font-size: 14px; }
.search-box { margin: 0 0 16px 0; }
.search-box input { width: 100%; padding: 12px 14px; border: 1px solid #d9dde3; border-radius: 10px; font-size: 15px; }
.section-title { font-size: 18px; font-weight: 700; margin: 10px 0 14px; color: #111827; }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.brand-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 12px; padding: 16px; text-decoration: none; color: #111827; box-shadow: 0 6px 12px rgba(0,0,0,0.05); transition: transform 0.15s ease, box-shadow 0.15s ease; display: flex; flex-direction: column; gap: 6px; }
.brand-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: #e5e7eb; }
.brand-name { font-size: 16px; font-weight: 700; }
.brand-count { font-size: 13px; color: #6b7280; }
@media (max-width: 640px) {
  .brands-header h1 { font-size: 24px; }
  .brands-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
}

/* Contact page */
.contact_area { padding: 60px 0; }
.contact_form_area { background: #fff; padding: 32px; border-radius: 12px; box-shadow: var(--shadow); }
.contact_form_area h3 { font-size: 24px; font-weight: 700; color: #111827; margin-bottom: 18px; }
.g-recaptcha-wrapper { margin-bottom: 10px; }
.contact-terms-note { color: #6b7280; display: block; }
.contact-submit-full { width: 100%; }
@media (max-width: 768px) {
  .contact_form_area { padding: 22px; }
}

/* FAQ */
.faq_area { padding: 70px 0; }
.faq-question { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; box-shadow: 0 6px 16px rgba(0,0,0,0.04); }
.faq-question:hover { background: #f9fafb; }
.faq-answer { padding: 12px 16px; color: #4b5563; }

/* Terms */
.terms_area { background: #f9fafb; min-height: 100vh; padding: 50px 0; }
.terms-section { padding: 12px 14px; border-radius: 10px; transition: all 0.2s ease; }
.terms-section:hover { background: rgba(217, 83, 79, 0.04); padding: 14px; }

/* About */
.about_area { padding: 80px 0; background: #fff; }
.about-highlight-icon, .about-feature-icon { font-size: 24px; margin-right: 8px; }

/* Search results empty state */
.empty-icon { font-size: 20px; opacity: 0.6; }

/* Footer icons size */
.footer-social-icon i { font-size: 14px; }

/* Utilities */
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.mt-80 { margin-top: 80px; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* Cookie banner media */
@media (max-width: 640px) {
  .cookie-banner-actions { width: 100%; justify-content: flex-start; }
}
