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

:root {
  --bg: #f5f8fb;
  --surface: #ffffff;
  --text: #0b1724;
  --muted: #4b5563;
  --primary: #0ea5e9;
  --primary-dark: #0b4f6c;
  --accent: #22c55e;
  --success: #22c55e;
  --warning: #f2c94c;
  --danger: #e74c3c;
  --border: #e3e8ef;
  --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: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); color: white; border: 1px solid var(--primary); 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; box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25); }
.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: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); 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: #ffffff; border-radius: 6px; cursor: pointer; font-size: 15px; font-weight: 700; transition: all 0.2s ease; user-select: none; min-height: 40px; box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2); text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); }
.list .btn-go-to-store span {color: white;}
.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-description { font-size: 12px; color: #666; margin-bottom: 8px; line-height: 1.4; min-height: 34px; }
.product-mini-price { font-size: 12px; font-weight: 600; color: var(--primary); 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: #0f172a; margin-bottom: 20px; border-bottom: 2px solid var(--primary); 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, var(--primary) 0%, var(--accent) 100%); padding: 60px 40px; border-radius: 8px; text-align: center; color: white; box-shadow: 0 10px 30px rgba(11, 79, 108, 0.2); }
.feature-icon { font-size: 80px; opacity: 0.2; display: block; margin-bottom: 20px; }
.cta-btn { display: inline-block; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); color: white; padding: 14px 40px; border-radius: 6px; text-decoration: none; font-weight: 700; transition: all 0.3s ease; box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35); }
.cta-btn:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(11, 79, 108, 0.35); }

/* FAQ */
.terms-section { padding: 20px; background-color: #f8fbff; border-left: 4px solid var(--primary); 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: var(--primary) !important; box-shadow: 0 1px 4px rgba(14, 165, 233, 0.2) !important; }
.search-input:focus { border-color: var(--primary) !important; box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15) !important; }
.search-btn { transition: all 0.3s ease !important; }
.search-btn:hover { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important; border-color: var(--primary-dark) !important; box-shadow: 0 4px 12px rgba(11, 79, 108, 0.3) !important; }
.search-btn:active { transform: translateY(1px) !important; }

/* Catalog pagination */
.catalog-pagination { margin: 16px 0 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.catalog-pagination .page-item { margin: 0; display: inline-flex; }
.catalog-pagination .page-link { border: 1px solid var(--border); color: var(--muted); padding: 8px 12px; border-radius: 6px; min-width: 38px; text-align: center; font-weight: 600; background: #fff; box-shadow: 0 6px 16px rgba(0,0,0,0.04); transition: all 0.2s ease; }
.catalog-pagination .page-link:hover { border-color: var(--primary); color: var(--primary); box-shadow: 0 8px 20px rgba(14,165,233,0.15); transform: translateY(-1px); }
.catalog-pagination .page-item.active .page-link { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); border-color: transparent; color: #fff; box-shadow: 0 10px 24px rgba(14,165,233,0.25); }
.catalog-pagination .page-item.disabled .page-link { opacity: 0.5; pointer-events: none; box-shadow: none; }
.catalog-pagination .page-link:focus { outline: none; box-shadow: 0 0 0 3px rgba(14,165,233,0.2); }
.catalog-pagination .page-link[aria-label] { font-size: 16px; font-weight: 700; }
#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; }

/* promotii.online redesign */
body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 196, 61, 0.18), transparent 24%),
    linear-gradient(180deg, #f7f4ed 0%, #f1f4ee 45%, #eef3f6 100%);
  color: #12312f;
}

h1, h2, h3, h4, h5 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

p, li, dd, dt, small {
  font-family: "Source Serif 4", Georgia, serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(18px);
  background: rgba(255, 252, 245, 0.88);
  border-bottom: 1px solid rgba(18, 49, 47, 0.08);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
  flex-wrap: wrap;
}

.site-nav-panel {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #12312f;
}

.site-brand:hover {
  color: #12312f;
}

.site-brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #12312f 0%, #1f6a57 100%);
  color: #fff8e8;
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 16px 36px rgba(18, 49, 47, 0.18);
}

.site-brand strong,
.site-brand small {
  display: block;
}

.site-brand strong {
  font-size: 20px;
  letter-spacing: -0.03em;
}

.site-brand small {
  color: #53716d;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Space Grotesk", sans-serif;
}

.site-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(18, 49, 47, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: #12312f;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 12px 28px rgba(18, 49, 47, 0.08);
}

.site-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.site-nav a,
.site-admin-link,
.backend-link,
.backend-back-link,
.section-link {
  color: #12312f;
  font-family: "Space Grotesk", sans-serif;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-admin-link:hover {
  background: rgba(31, 106, 87, 0.08);
  color: #1f6a57;
  transform: translateY(-1px);
}

.site-admin-link {
  padding: 10px 16px;
  border: 1px solid rgba(18, 49, 47, 0.12);
  border-radius: 999px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(18, 49, 47, 0.05);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.section-link:hover {
  background: rgba(31, 106, 87, 0.1);
  color: #1f6a57;
  transform: translateY(-1px);
}

.site-main {
  padding-bottom: 60px;
}

.flash {
  margin: 18px 0 0;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(18, 49, 47, 0.08);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 40px rgba(18, 49, 47, 0.06);
  font-family: "Space Grotesk", sans-serif;
}

.flash-success {
  border-color: rgba(43, 122, 89, 0.18);
}

.flash-error {
  border-color: rgba(195, 80, 54, 0.18);
}

.page-hero {
  padding: 56px 0 34px;
}

.page-hero.compact {
  padding-bottom: 20px;
}

.home-hero {
  padding-bottom: 28px;
}

.home-hero-grid,
.detail-hero-grid,
.split-promo-grid,
.editorial-band-grid,
.promotion-detail-grid,
.backend-detail-grid,
.site-footer-grid {
  display: grid;
  gap: 24px;
}

.home-hero-grid,
.detail-hero-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #53716d;
  font-family: "Space Grotesk", sans-serif;
}

.hero-title {
  max-width: 14ch;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.hero-title.small {
  max-width: none;
  font-size: clamp(30px, 5vw, 48px);
}

.detail-title {
  max-width: 18ch;
}

.hero-copy {
  max-width: 62ch;
  font-size: 19px;
  color: #466460;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .btn {
  min-height: 48px;
}

.hero-stats-panel,
.promotion-sidebar-card,
.detail-content-card,
.editorial-band,
.empty-panel,
.promotion-card,
.backend-table-card,
.backend-detail-card,
.backend-login-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 49, 47, 0.08);
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(18, 49, 47, 0.09);
}

.hero-stats-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.hero-stat {
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(18, 49, 47, 0.04) 0%, rgba(255, 196, 61, 0.16) 100%);
}

.hero-stat span,
.section-summary,
.promotion-date,
.backend-page-subtitle {
  display: block;
  color: #53716d;
  font-size: 14px;
  font-family: "Space Grotesk", sans-serif;
}

.hero-stat strong {
  display: block;
  margin-top: 4px;
  font-size: 34px;
  line-height: 1;
}

.editorial-band {
  margin: 6px auto 28px;
  padding: 24px 0;
}

.editorial-band h2,
.section-heading-row h2 {
  line-height: 1.05;
}

.editorial-band-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.editorial-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.editorial-bullets span,
.promotion-highlight,
.backend-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(31, 106, 87, 0.08);
  color: #1f6a57;
  font-size: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.promotion-listing-section,
.split-promo-section,
.promotion-detail-section,
.backend-section {
  padding: 18px 0 28px;
}

.section-heading-row,
.section-toolbar,
.backend-section-head,
.backend-detail-head,
.backend-header-inner,
.backend-detail-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.section-toolbar {
  margin-bottom: 18px;
}

.promotion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.promotion-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.promotion-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}

.promotion-card-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promotion-card-topline,
.promotion-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.promotion-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Space Grotesk", sans-serif;
}

.promotion-pill.deal {
  background: rgba(31, 106, 87, 0.12);
  color: #1f6a57;
}

.promotion-pill.coupon {
  background: rgba(195, 133, 28, 0.16);
  color: #9b6200;
}

.promotion-merchant {
  color: #53716d;
  font-size: 13px;
  font-family: "Space Grotesk", sans-serif;
  overflow-wrap: anywhere;
}

.promotion-title {
  margin: 0;
  font-size: 26px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.promotion-title a {
  color: inherit;
}

.promotion-copy {
  margin: 0;
  color: #4f6966;
  font-size: 17px;
  overflow-wrap: anywhere;
}

.promotion-code {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 16px;
  background: #12312f;
  color: #fff8e8;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.promotion-code.large {
  font-size: 16px;
  padding: 12px 16px;
}

.promotion-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.promotion-date {
  overflow-wrap: anywhere;
}

.empty-panel {
  padding: 32px;
}

.empty-panel.small {
  padding: 20px;
}

.promotion-sidebar-card,
.detail-content-card,
.backend-detail-card {
  padding: 24px;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.detail-list li,
.backend-meta-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(18, 49, 47, 0.08);
}

.detail-list strong,
.backend-meta-list dt {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.detail-list span,
.backend-meta-list dd {
  margin: 0;
  text-align: right;
  overflow-wrap: anywhere;
}

.detail-cta,
.backend-login-submit {
  width: 100%;
}

.backend-richtext,
.backend-richtext p,
.backend-richtext li {
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 40px 0 30px;
  border-top: 1px solid rgba(18, 49, 47, 0.08);
  background: rgba(255, 252, 245, 0.72);
}

.site-footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: 22px;
}

.site-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
}

.site-footer-badge-link {
  display: inline-flex;
  align-items: center;
}

.site-footer-badge {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 48px;
  height: auto;
}

.site-footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(18, 49, 47, 0.08);
}

.backend-body {
  background: linear-gradient(180deg, #f5f3ea 0%, #eaf1f0 100%);
}

.backend-header {
  padding: 18px 0;
}

.backend-brand {
  font-weight: 700;
  font-size: 20px;
}

.backend-main {
  padding-bottom: 40px;
}

.backend-login-shell {
  min-height: calc(100vh - 180px);
  display: grid;
  place-items: center;
}

.backend-login-card {
  width: min(100%, 480px);
  padding: 32px;
}

.backend-login-title,
.backend-page-title {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.backend-login-copy {
  margin-bottom: 24px;
}

.backend-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.backend-stat {
  min-width: 140px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 49, 47, 0.08);
}

.backend-stat.active {
  background: #12312f;
  color: #fff8e8;
}

.backend-stat strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
}

.backend-table-scroll {
  overflow-x: auto;
}

.backend-table {
  width: 100%;
  border-collapse: collapse;
}

.backend-table th,
.backend-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(18, 49, 47, 0.08);
  vertical-align: top;
}

.backend-payload {
  overflow-x: auto;
  padding: 18px;
  border-radius: 18px;
  background: #153936;
  color: #f7f4ed;
  font-size: 13px;
}

.backend-richtext {
  color: #365754;
}

.btn {
  border-radius: 999px;
  padding: 11px 18px;
  font-family: "Space Grotesk", sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #12312f 0%, #1f6a57 100%);
  border-color: transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0f2927 0%, #184f42 100%);
}

.btn-secondary {
  background: rgba(18, 49, 47, 0.08);
  border-color: rgba(18, 49, 47, 0.1);
}

.btn-secondary:hover,
.btn-outline:hover {
  background: rgba(18, 49, 47, 0.12);
}

.btn-outline {
  border-color: rgba(18, 49, 47, 0.16);
}

@media (max-width: 991px) {
  .editorial-band-grid,
  .home-hero-grid,
  .detail-hero-grid,
  .split-promo-grid,
  .promotion-detail-grid,
  .site-footer-grid,
  .backend-detail-grid {
    grid-template-columns: 1fr;
  }

  .site-header-inner {
    min-height: auto;
    padding: 18px 0;
    align-items: center;
    justify-content: space-between;
  }

  .site-brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-menu-toggle {
    display: inline-flex;
  }

  .js-ready .site-nav-panel {
    display: none;
  }

  .js-ready .site-nav-panel.is-open {
    display: flex;
  }

  .site-nav-panel {
    order: 3;
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(18, 49, 47, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(18, 49, 47, 0.09);
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-nav a,
  .site-admin-link {
    width: 100%;
    justify-content: flex-start;
    min-height: 46px;
    padding: 12px 16px;
    border-radius: 18px;
  }

  .site-nav a {
    background: rgba(18, 49, 47, 0.04);
  }

  .site-admin-link {
    margin-left: 0;
    text-align: left;
  }

  .promotion-grid,
  .promotion-grid.compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 30px 0 18px;
  }

  .home-hero {
    padding-bottom: 16px;
  }

  .hero-title {
    font-size: 32px;
    max-width: none;
    margin-bottom: 14px;
  }

  .hero-copy,
  .promotion-copy {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats-panel {
    gap: 10px;
    padding: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stat {
    padding: 14px 10px;
    text-align: center;
    border-radius: 18px;
  }

  .hero-stat span {
    font-size: 11px;
    line-height: 1.3;
  }

  .hero-stat strong {
    font-size: 24px;
    margin-top: 6px;
  }

  .editorial-band {
    margin-bottom: 18px;
    padding: 18px 0;
  }

  .editorial-band-grid {
    gap: 14px;
  }

  .editorial-band h2,
  .section-heading-row h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .editorial-band p {
    font-size: 15px;
    line-height: 1.55;
  }

  .editorial-bullets {
    justify-content: flex-start;
    gap: 8px;
  }

  .editorial-bullets span {
    font-size: 11px;
    padding: 7px 10px;
  }

  .promotion-listing-section,
  .split-promo-section {
    padding-top: 10px;
  }

  .section-heading-row {
    gap: 10px;
  }

  .section-link {
    width: 100%;
    justify-content: center;
  }

  .site-header-inner {
    gap: 14px;
  }

  .site-brand {
    width: 100%;
  }

  .site-brand small {
    font-size: 11px;
    letter-spacing: 0.05em;
  }

  .site-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 20px;
  }

  .site-brand strong {
    font-size: 18px;
  }

  .section-toolbar {
    align-items: flex-start;
    margin-bottom: 14px;
  }

  .promotion-title {
    font-size: 20px;
    line-height: 1.16;
  }

  .promotion-card,
  .promotion-sidebar-card,
  .detail-content-card,
  .backend-login-card,
  .backend-detail-card,
  .empty-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .promotion-card-footer,
  .hero-actions,
  .backend-detail-actions,
  .section-heading-row,
  .section-toolbar,
  .backend-section-head,
  .backend-detail-head {
    flex-direction: column;
    align-items: stretch;
  }

  .promotion-card-topline,
  .promotion-meta-row,
  .detail-meta-row {
    gap: 8px;
  }

  .promotion-pill,
  .promotion-highlight,
  .promotion-code {
    width: 100%;
    justify-content: center;
  }

  .promotion-card-footer {
    gap: 10px;
  }

  .promotion-card-footer .btn,
  .detail-cta {
    width: 100%;
  }

  .site-footer-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer-badge-link {
    width: 100%;
    justify-content: flex-start;
  }

  .site-footer-badge {
    width: auto;
    max-width: 180px;
    max-height: 44px;
  }

  .catalog-pagination {
    gap: 6px;
  }

  .catalog-pagination .page-link {
    min-width: 34px;
    padding: 7px 10px;
    font-size: 13px;
  }

  .promotion-sidebar-card,
  .detail-content-card {
    padding: 18px;
  }

  .detail-list {
    gap: 10px;
  }

  .detail-list li,
  .backend-meta-list div {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-list span,
  .backend-meta-list dd {
    text-align: left;
  }

  .site-brand {
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(var(--max-width), calc(100% - 20px));
  }

  .site-main {
    padding-bottom: 44px;
  }

  .promotion-listing-section,
  .promotion-detail-section {
    padding: 12px 0 22px;
  }

  .empty-panel {
    padding: 18px;
  }

  .hero-title.small,
  .detail-title {
    font-size: 28px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-stats-panel {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    text-align: left;
    padding: 14px 14px;
  }

  .hero-stat span {
    font-size: 12px;
  }

  .hero-stat strong {
    font-size: 22px;
  }

  .editorial-band h2,
  .section-heading-row h2 {
    font-size: 22px;
  }

  .promotion-code.large {
    font-size: 14px;
    padding: 10px 12px;
  }
}
.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; }

.about-row-spacing {
  margin-bottom: 28px;
}

.about-content,
.about-highlight-card,
.about-feature-block,
.about-mission-box {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 49, 47, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 44px rgba(18, 49, 47, 0.08);
}

.about-content,
.about-highlight-card,
.about-mission-box {
  padding: 24px;
}

.about-section-title,
.about-mission-title,
.about-cta-title {
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.05;
  margin-bottom: 14px;
}

.about-body,
.about-highlight-text,
.about-feature-desc,
.about-mission-text,
.about-cta-text {
  font-size: 16px;
  line-height: 1.65;
  color: #4b6461;
}

.about-highlight-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(145deg, rgba(18, 49, 47, 0.96) 0%, rgba(31, 106, 87, 0.92) 100%);
  color: #fff8e8;
}

.about-highlight-title,
.about-highlight-text,
.about-highlight-icon {
  color: inherit;
}

.about-highlight-icon {
  font-size: 42px;
  margin-right: 0;
}

.about-feature-col {
  margin-bottom: 18px;
}

.about-feature-block {
  min-height: 100%;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 49, 47, 0.08);
  color: #1f6a57;
}

.about-feature-icon {
  margin-right: 0;
}

.about-feature-title {
  font-size: 20px;
  margin-bottom: 0;
}

.about-mission-row {
  margin: 8px 0 36px;
}

.about-mission-box {
  text-align: center;
}

.btn-cta-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #12312f 0%, #1f6a57 100%);
  color: #fff8e8;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(18, 49, 47, 0.18);
}

.btn-cta-red:hover {
  color: #fff8e8;
  transform: translateY(-1px);
}

.faq-item {
  margin-bottom: 14px;
  border: 0;
  border-radius: 16px;
  background: transparent;
}

.faq-question {
  border-radius: 16px;
  padding: 18px 20px;
}

.faq-question-title {
  padding-right: 12px;
  line-height: 1.35;
}

.faq-answer {
  padding: 14px 18px 4px;
}

.faq-answer-p {
  color: #4b6461;
}

.contact_area {
  padding: 70px 0;
}

.contact_form_area {
  border: 1px solid rgba(18, 49, 47, 0.08);
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(18, 49, 47, 0.08);
}

.contact_form_area .body-p {
  font-size: 15px;
  line-height: 1.6;
}

.alert {
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 14px 16px;
}

.promotion-description-stack {
  display: grid;
  gap: 12px;
}

.promotion-description-fact {
  display: grid;
  grid-template-columns: minmax(110px, 150px) minmax(0, 1fr);
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(18, 49, 47, 0.05);
}

.promotion-description-fact strong {
  font-family: "Space Grotesk", sans-serif;
}

.promotion-description-fact span {
  color: #365754;
  overflow-wrap: anywhere;
}

.promotion-description-paragraph {
  margin: 0;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.72);
  color: #365754;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.promotion-description-paragraph a,
.promotion-description-fact a {
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  .about_area,
  .faq_area,
  .contact_area {
    padding: 46px 0;
  }

  .about-content,
  .about-highlight-card,
  .about-feature-block,
  .about-mission-box,
  .contact_form_area {
    padding: 20px;
    border-radius: 20px;
  }

  .about-row-spacing,
  .about-mission-row {
    margin-bottom: 20px;
  }

  .about-section-title,
  .about-mission-title,
  .about-cta-title,
  .page-title {
    font-size: 26px;
  }

  .about-body,
  .about-highlight-text,
  .about-feature-desc,
  .about-mission-text,
  .about-cta-text,
  .lead-text,
  .faq-answer-p {
    font-size: 15px;
  }

  .faq-question {
    padding: 16px;
    align-items: flex-start;
  }

  .faq-question-title {
    font-size: 15px;
  }

  .contact_form_area h3 {
    font-size: 22px;
  }

  .promotion-description-fact {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 13px 14px;
  }

  .promotion-description-paragraph {
    padding: 14px 15px;
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .about-feature-title {
    font-size: 18px;
  }

  .btn-cta-red,
  .cta-btn {
    width: 100%;
  }

  .faq-question {
    padding: 14px;
  }

  .contact_form_area {
    padding: 18px;
  }
}

/* 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; }
}
