/**
 * Aytech Theme v6.1 — pages.css
 * Blog, Arama, 404, Hakkımızda, İletişim, Mobil Menü
 * Mevcut style.css'teki :root değişkenlerini kullanır
 */

/* ══════════════════════════════════════
   GLOBAL — v6.1 Sayfalar için ortak
   ══════════════════════════════════════ */

/* .container alias — v6.1 şablonları bu class'ı kullanır */
.container {
  width: 100%;
  max-width: var(--ay-container, 1280px);
  margin: 0 auto;
  padding: 0 20px;
}

/* Breadcrumb wrap — v6.1 şablonları */
.breadcrumb-wrap {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border, #E5E5E3);
  padding: 10px 0;
  font-size: 13px;
  color: var(--gray-muted);
}
.breadcrumb-wrap a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb-wrap a:hover {
  color: var(--gold-hover);
}
.breadcrumb-wrap .sep {
  margin: 0 6px;
  color: var(--gray-muted);
}
.breadcrumb-wrap strong {
  color: var(--black);
  font-weight: 500;
}

/* ══════════════════════════════════════
   MOBİL MENÜ
   ══════════════════════════════════════ */

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1002;
  background: none;
  border: none;
  padding: 0;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--white);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mobile-drawer.active { transform: translateX(0); }

.drawer-header {
  background: var(--black);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-header .logo img { height: 32px; width: auto; }
.drawer-close {
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.drawer-close:hover { background: rgba(255,255,255,.2); }
.drawer-close svg { stroke: var(--white); }

/* Drawer search */
.drawer-search {
  padding: 12px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid #e8e8e8;
}
.drawer-search-inner {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s;
}
.drawer-search-inner:focus-within { border-color: var(--gold); }
.drawer-search-inner input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--black);
  background: transparent;
}
.drawer-search-inner input::placeholder { color: var(--gray-muted); }
.drawer-search-inner button {
  background: var(--gold);
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background .2s;
}
.drawer-search-inner button:hover { background: var(--gold-hover); }
.drawer-search-inner button svg { stroke: var(--black); width: 18px; height: 18px; }

/* Drawer user */
.drawer-user {
  background: var(--gold-light);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #eee;
}
.drawer-user-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.drawer-user-icon svg { stroke: var(--black); }
.drawer-user-text { font-size: 13px; color: var(--gray); }
.drawer-user-text a { color: var(--black); font-weight: 600; text-decoration: none; }

/* Drawer nav */
.drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
  -webkit-overflow-scrolling: touch;
}
.drawer-nav ul { list-style: none; }

.drawer-nav-item > a,
.drawer-nav-item > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s, color .15s;
  font-family: inherit;
}
.drawer-nav-item > a:hover,
.drawer-nav-item > button:hover { background: var(--bg-alt); }

/* Active state */
.drawer-nav-item.active > a,
.drawer-nav-item.active > button {
  background: var(--gold-light);
  color: var(--gold-hover);
  border-left: 3px solid var(--gold);
}
.drawer-nav-item.active .cat-icon svg { stroke: var(--gold-hover); }

.cat-icon {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cat-icon svg { stroke: var(--gray); width: 20px; height: 20px; }

.arrow { transition: transform .3s ease; flex-shrink: 0; }
.arrow svg { stroke: var(--gray-muted); width: 16px; height: 16px; }
.drawer-nav-item.open .arrow { transform: rotate(180deg); }

/* Sub-menu */
.drawer-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  background: var(--bg-alt);
}
.drawer-sub a {
  display: block;
  padding: 11px 16px 11px 48px;
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  border-bottom: 1px solid #eaeaea;
  transition: color .15s, background .15s;
}
.drawer-sub a:hover { color: var(--gold-hover); background: #ededeb; }
.drawer-sub a.active-sub { color: var(--gold-hover); font-weight: 600; }

/* Cart badge in drawer */
.drawer-cart-badge {
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

/* Drawer footer */
.drawer-footer {
  border-top: 1px solid #eee;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
}
.drawer-cta:hover { opacity: .9; }
.drawer-cta.whatsapp { background: #25D366; color: #fff; }
.drawer-cta.phone { background: var(--black); color: var(--white); }
.drawer-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
}
@media (min-width: 769px) {
  .hamburger,
  .mobile-overlay,
  .mobile-drawer { display: none !important; }
}


/* ══════════════════════════════════════
   BLOG — LİSTE + TEK YAZI
   ══════════════════════════════════════ */

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  padding-bottom: 40px;
}
.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Post card */
.post-card {
  background: var(--white);
  border-radius: var(--radius, 10px);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  display: grid;
  grid-template-columns: 280px 1fr;
  transition: box-shadow .25s;
}
.post-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.post-card-img {
  position: relative;
  overflow: hidden;
  background: #e8e8e8;
}
.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.post-card:hover .post-card-img img { transform: scale(1.04); }
.post-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-decoration: none;
}
.post-card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-card-meta {
  font-size: 12px;
  color: var(--gray-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.post-card-meta svg { width: 14px; height: 14px; stroke: var(--gray-muted); flex-shrink: 0; }
.post-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color .2s;
}
.post-card-title a { color: inherit; text-decoration: none; }
.post-card:hover .post-card-title { color: var(--gold-hover); }
.post-card-excerpt {
  font-size: 14px;
  color: var(--gray-light, #6B6B6B);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card-readmore {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-hover);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
  text-decoration: none;
}
.post-card:hover .post-card-readmore { gap: 8px; }
.post-card-readmore svg { width: 14px; height: 14px; stroke: currentColor; }

/* Blog sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 901px) {
  .blog-sidebar { position: sticky; top: 76px; align-self: start; }
}
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius, 10px);
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.sidebar-widget h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-light);
}
.sidebar-widget h3 span { color: var(--gold); }
.widget-cats { list-style: none; }
.widget-cats li { border-bottom: 1px solid #f0f0f0; }
.widget-cats li:last-child { border: none; }
.widget-cats a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: var(--gray);
  transition: color .15s;
  text-decoration: none;
}
.widget-cats a:hover { color: var(--gold-hover); }
.widget-cats .count {
  background: var(--bg-alt);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 10px;
  color: var(--gray-muted);
}
.widget-popular-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: inherit;
}
.widget-popular-item:last-child { border: none; }
.widget-popular-thumb {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e8e8e8;
}
.widget-popular-thumb img { width: 100%; height: 100%; object-fit: cover; }
.widget-popular-text h4 { font-size: 13px; font-weight: 600; color: var(--black); line-height: 1.4; margin-bottom: 4px; }
.widget-popular-text span { font-size: 11px; color: var(--gray-muted); }
.widget-cta {
  background: var(--black) !important;
  color: var(--white);
  text-align: center;
}
.widget-cta h3 { color: var(--gold) !important; border-color: rgba(255,255,255,.1) !important; }
.widget-cta p { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; margin-bottom: 14px; }
.widget-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s;
  text-decoration: none;
}
.widget-cta a:hover { background: var(--gold-hover); }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 32px 0; }
.pagination a,
.pagination span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  text-decoration: none;
}
.pagination a { background: var(--white); color: var(--gray); box-shadow: 0 2px 12px rgba(0,0,0,.07); }
.pagination a:hover { background: var(--gold-light); color: var(--gold-hover); }
.pagination .current,
.pagination span.current { background: var(--gold); color: var(--black); font-weight: 700; }

/* ── Single post ── */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  padding-bottom: 40px;
}
.single-article {
  background: var(--white);
  border-radius: var(--radius, 10px);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.single-hero-img {
  width: 100%;
  height: 340px;
  overflow: hidden;
  background: #e8e8e8;
  position: relative;
}
.single-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.single-hero-cat {
  position: absolute;
  bottom: 16px;
  left: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  text-decoration: none;
}
.single-content { padding: 28px 32px 36px; }
.single-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--gray-muted);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.single-meta svg { width: 14px; height: 14px; stroke: currentColor; }
.single-meta .meta-item { display: inline-flex; align-items: center; gap: 4px; }
.single-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 20px;
}

/* TOC */
.toc {
  background: var(--bg-alt);
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius, 10px);
  padding: 18px 22px;
  margin-bottom: 24px;
}
.toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.toc-header h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toc-header h4 svg { width: 16px; height: 16px; stroke: var(--gold); }
.toc-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.toc-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--gray-muted);
  transition: transform .3s;
}
.toc.collapsed .toc-toggle svg { transform: rotate(-90deg); }
.toc-list {
  list-style: none;
  margin-top: 12px;
  padding-left: 4px;
}
.toc.collapsed .toc-list { display: none; }
.toc-list li { margin-bottom: 8px; }
.toc-list a {
  font-size: 14px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .15s;
  text-decoration: none;
}
.toc-list a:hover { color: var(--gold-hover); }
.toc-list a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: .5;
}
.toc-list a:hover::before { opacity: 1; }

/* Article body */
.article-body { font-size: 15px; line-height: 1.8; color: var(--gray); }
.article-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin: 28px 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--gold);
  scroll-margin-top: 80px;
}
.article-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--black-soft, #2C2C34);
  margin: 22px 0 10px;
  scroll-margin-top: 80px;
}
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 16px 20px; }
.article-body li { margin-bottom: 6px; }
.article-body a { color: var(--gold-hover); text-decoration: underline; text-underline-offset: 2px; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  background: var(--gold-light);
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 0 6px 6px 0;
  font-style: italic;
}
.article-body .info-box {
  background: var(--bg-alt);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
}
.article-body .info-box strong { color: var(--black); }
.article-body img { border-radius: 8px; margin: 20px 0; }

/* Product CTA in article */
.article-product-cta {
  background: var(--gold-light);
  border: 1.5px solid var(--gold);
  border-radius: 10px;
  padding: 20px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.article-product-cta .cta-text h4 { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.article-product-cta .cta-text p { font-size: 13px; color: var(--gray); margin-bottom: 8px; }
.article-product-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--black);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s;
  text-decoration: none;
}
.article-product-cta .cta-btn:hover { background: var(--gold-hover); }

/* Tags & Share */
.single-tags {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.single-tags > span { font-size: 13px; color: var(--gray-muted); }
.tag-link {
  background: var(--bg-alt);
  color: var(--gray);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  transition: all .2s;
  text-decoration: none;
}
.tag-link:hover { background: var(--gold-light); color: var(--gold-hover); }

.single-share {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}
.single-share > span { font-size: 13px; color: var(--gray-muted); margin-right: 4px; }
.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
  color: var(--white);
}
.share-btn:hover { opacity: .85; }
.share-btn.fb { background: #1877F2; }
.share-btn.tw { background: #1DA1F2; }
.share-btn.wa { background: #25D366; }
.share-btn.li { background: #0A66C2; }
.share-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* Author */
.author-box {
  background: var(--white);
  border-radius: var(--radius, 10px);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  margin-top: 24px;
  display: flex;
  gap: 16px;
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
}
.author-info h4 { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.author-info p { font-size: 13px; color: var(--gray-light, #6B6B6B); line-height: 1.5; }

/* Related posts */
.related-posts { margin-top: 32px; }
.related-posts h3 { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 16px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
  background: var(--white);
  border-radius: var(--radius, 10px);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: box-shadow .25s;
  text-decoration: none;
  color: inherit;
}
.related-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.related-card-img { height: 140px; overflow: hidden; background: #e8e8e8; }
.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.related-card:hover .related-card-img img { transform: scale(1.05); }
.related-card-body { padding: 14px 16px; }
.related-card-body h4 { font-size: 14px; font-weight: 600; color: var(--black); line-height: 1.4; margin-bottom: 6px; }
.related-card-body span { font-size: 12px; color: var(--gray-muted); }


/* ══════════════════════════════════════
   ARAMA SONUÇLARI
   ══════════════════════════════════════ */

.search-hero { max-width: 1100px; margin: 0 auto; padding: 0 20px 8px; }
.search-hero h1 { font-size: 24px; color: var(--black); font-weight: 700; margin-bottom: 4px; }
.search-hero .search-term { color: var(--gold); }
.search-hero .result-count { font-size: 14px; color: var(--gray-muted); }

.search-bar-wrap { max-width: 560px; padding-bottom: 24px; }
.search-bar {
  display: flex;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: border-color .2s;
}
.search-bar:focus-within { border-color: var(--gold); }
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--black);
  background: transparent;
}
.search-bar input::placeholder { color: var(--gray-muted); }
.search-bar button {
  background: var(--gold);
  border: none;
  padding: 13px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background .2s;
}
.search-bar button:hover { background: var(--gold-hover); }
.search-bar button svg { stroke: var(--black); width: 20px; height: 20px; }

.search-layout { padding-bottom: 40px; }

/* Product grid */
.search-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.search-product-card {
  background: var(--white);
  border-radius: var(--radius, 10px);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: box-shadow .25s, transform .25s;
  text-decoration: none;
  color: inherit;
}
.search-product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.12); transform: translateY(-2px); }
.search-product-card .card-img { height: 160px; overflow: hidden; background: #e8e8e8; position: relative; }
.search-product-card .card-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform .4s; }
.search-product-card:hover .card-img img { transform: scale(1.05); }
.search-product-card .card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.badge-green { background: var(--badge-green, #1D9E75); color: #fff; }
.badge-red { background: var(--badge-red, #E24B4A); color: #fff; }
.search-product-card .card-body { padding: 14px; }
.search-product-card .card-brand { font-size: 11px; color: var(--gray-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .5px; }
.search-product-card .card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
}
.search-product-card .card-price { font-size: 16px; font-weight: 700; color: var(--gold-hover); margin-bottom: 10px; }
.search-product-card .card-price .old-price { font-size: 12px; color: var(--gray-muted); text-decoration: line-through; margin-left: 6px; font-weight: 400; }
.search-product-card .card-actions { display: flex; gap: 6px; }
.card-btn {
  flex: 1;
  padding: 9px 6px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: opacity .2s;
}
.card-btn:hover { opacity: .9; }
.card-btn.primary { background: var(--gold); color: var(--black); }
.card-btn.secondary { background: var(--black); color: var(--white); }

/* Blog results in search */
.search-blog-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-light);
}
.search-blog-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}
.search-blog-item:last-child { border: none; }
.search-blog-thumb { width: 120px; height: 80px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #e8e8e8; }
.search-blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.search-blog-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.search-blog-info .blog-cat { font-size: 11px; color: var(--gold-hover); font-weight: 600; text-transform: uppercase; margin-bottom: 4px; }
.search-blog-info h4 { font-size: 15px; font-weight: 600; color: var(--black); line-height: 1.4; margin-bottom: 4px; transition: color .2s; }
.search-blog-item:hover h4 { color: var(--gold-hover); }
.search-blog-info p {
  font-size: 13px;
  color: var(--gray-light, #6B6B6B);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-blog-info .blog-date { font-size: 12px; color: var(--gray-muted); margin-top: 4px; }

/* Highlight */
.highlight {
  background: var(--gold-light);
  padding: 1px 3px;
  border-radius: 2px;
  color: var(--black);
  font-weight: 600;
}

/* No results */
.search-empty { text-align: center; padding: 60px 20px; }
.search-empty .empty-icon {
  width: 64px; height: 64px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.search-empty .empty-icon svg { width: 28px; height: 28px; stroke: var(--gold-hover); }
.search-empty h2 { font-size: 20px; color: var(--black); margin-bottom: 8px; }
.search-empty p { font-size: 14px; color: var(--gray-light, #6B6B6B); margin-bottom: 20px; max-width: 400px; margin-left: auto; margin-right: auto; }
.search-empty .suggestions { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.search-empty .suggestions a {
  background: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--gray);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: all .2s;
  text-decoration: none;
}
.search-empty .suggestions a:hover { background: var(--gold-light); color: var(--gold-hover); }


/* ══════════════════════════════════════
   404 SAYFASI
   ══════════════════════════════════════ */

.page-404 { max-width: 700px; margin: 0 auto; padding: 60px 20px 80px; text-align: center; }
.error-code {
  font-size: 120px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -4px;
  position: relative;
}
.error-code::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}
.error-icon {
  margin: 28px auto 20px;
  width: 64px;
  height: 64px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-icon svg { width: 32px; height: 32px; stroke: var(--gold-hover); }
.page-404 h1 { font-size: 24px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.page-404 p { font-size: 15px; color: var(--gray-light, #6B6B6B); line-height: 1.6; margin-bottom: 28px; max-width: 460px; margin-left: auto; margin-right: auto; }

.error-search {
  max-width: 420px;
  margin: 0 auto 32px;
  display: flex;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: border-color .2s;
}
.error-search:focus-within { border-color: var(--gold); }
.error-search input { flex: 1; border: none; outline: none; padding: 14px 16px; font-size: 15px; color: var(--black); background: transparent; }
.error-search input::placeholder { color: var(--gray-muted); }
.error-search button { background: var(--gold); border: none; padding: 14px 20px; cursor: pointer; display: flex; align-items: center; transition: background .2s; }
.error-search button:hover { background: var(--gold-hover); }
.error-search button svg { stroke: var(--black); width: 20px; height: 20px; }

.error-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 520px; margin: 0 auto 36px; }
.error-link-card {
  background: var(--white);
  border-radius: var(--radius, 10px);
  padding: 20px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: all .25s;
  text-align: center;
  text-decoration: none;
  color: inherit;
}
.error-link-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.12); transform: translateY(-2px); }
.error-link-card .link-icon { width: 44px; height: 44px; margin: 0 auto 10px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.error-link-card .link-icon svg { width: 22px; height: 22px; }
.error-link-card .link-icon.gold { background: var(--gold-light); }
.error-link-card .link-icon.gold svg { stroke: var(--gold-hover); }
.error-link-card .link-icon.dark { background: var(--black); }
.error-link-card .link-icon.dark svg { stroke: var(--gold); }
.error-link-card .link-icon.green { background: #e6f7f0; }
.error-link-card .link-icon.green svg { stroke: var(--badge-green, #1D9E75); }
.error-link-card h3 { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.error-link-card p { font-size: 12px; color: var(--gray-muted); line-height: 1.4; }

.error-products { max-width: 600px; margin: 0 auto; }
.error-products h3 { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 14px; }
.error-product-list { display: flex; flex-direction: column; gap: 10px; }
.error-product-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: box-shadow .2s;
  text-decoration: none;
  color: inherit;
}
.error-product-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.error-product-thumb { width: 50px; height: 50px; background: #e8e8e8; border-radius: 6px; flex-shrink: 0; overflow: hidden; }
.error-product-thumb img { width: 100%; height: 100%; object-fit: contain; }
.error-product-info { flex: 1; }
.error-product-info h4 { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.error-product-info span { font-size: 12px; color: var(--gray-muted); }
.error-product-price { font-size: 15px; font-weight: 700; color: var(--gold-hover); white-space: nowrap; }


/* ══════════════════════════════════════
   HAKKIMIZDA
   ══════════════════════════════════════ */

.about-hero { margin-bottom: 32px; }
.about-hero-inner {
  background: var(--black);
  border-radius: var(--radius, 10px);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.about-hero-inner::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: var(--gold);
  opacity: .08;
  border-radius: 50%;
}
.about-hero-inner::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: 80px;
  width: 300px;
  height: 300px;
  background: var(--gold);
  opacity: .04;
  border-radius: 50%;
}
.about-hero h1 { font-size: 32px; color: var(--white); font-weight: 700; margin-bottom: 8px; position: relative; }
.about-hero h1 em { font-style: normal; color: var(--gold); }
.about-hero p { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.6; max-width: 560px; position: relative; }

/* Stats */
.stats-bar { margin: -16px auto 32px; position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card {
  background: var(--white);
  border-radius: var(--radius, 10px);
  padding: 22px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  text-align: center;
  transition: transform .2s;
}
.stat-card:hover { transform: translateY(-2px); }
.stat-number { font-size: 28px; font-weight: 800; color: var(--gold); margin-bottom: 2px; }
.stat-label { font-size: 13px; color: var(--gray-light, #6B6B6B); }

.about-layout { padding-bottom: 40px; }
.about-section {
  background: var(--white);
  border-radius: var(--radius, 10px);
  padding: 36px 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  margin-bottom: 24px;
}
.about-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}
.about-section p { font-size: 15px; line-height: 1.8; color: var(--gray); margin-bottom: 14px; }
.about-section p:last-child { margin-bottom: 0; }

/* Partners */
.partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
.partner-card {
  border: 1.5px solid #e8e8e8;
  border-radius: var(--radius, 10px);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: border-color .2s;
}
.partner-card:hover { border-color: var(--gold); }
.partner-logo {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.partner-info h4 { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.partner-info p { font-size: 13px; color: var(--gray-light, #6B6B6B); line-height: 1.5; margin: 0; }
.partner-badge { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 4px; margin-top: 6px; }
.badge-schneider { background: #3DCD58; color: #fff; }
.badge-tuncmatik { background: #1a3a6b; color: #fff; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.value-card { text-align: center; padding: 24px 16px; }
.value-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.value-icon svg { width: 24px; height: 24px; stroke: var(--gold-hover); }
.value-card h4 { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.value-card p { font-size: 13px; color: var(--gray-light, #6B6B6B); line-height: 1.5; }

/* Trust bar */
.trust-section {
  background: var(--black);
  border-radius: var(--radius, 10px);
  padding: 32px 40px;
  margin-bottom: 24px;
}
.trust-section h2 { color: var(--white); border-color: var(--gold); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 20px; }
.trust-item { text-align: center; padding: 16px; }
.trust-item .trust-score { font-size: 28px; font-weight: 800; color: var(--gold); margin-bottom: 2px; }
.trust-item .trust-platform { font-size: 13px; color: rgba(255,255,255,.7); }
.trust-item .trust-detail { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; }

/* CTA */
.about-cta {
  background: var(--gold-light);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius, 10px);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.about-cta h3 { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.about-cta p { font-size: 14px; color: var(--gray); margin: 0; }
.about-cta-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-hover); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--black-soft, #2C2C34); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { opacity: .9; }

/* Ecosystem chips */
.ecosystem-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.ecosystem-chip {
  background: var(--bg-alt);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--gray);
  transition: all .2s;
  text-decoration: none;
}
.ecosystem-chip:hover { background: var(--gold-light); color: var(--gold-hover); }


/* ══════════════════════════════════════
   İLETİŞİM
   ══════════════════════════════════════ */

.contact-hero { margin-bottom: 24px; }
.contact-hero-inner {
  background: var(--black);
  border-radius: var(--radius, 10px);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.contact-hero-inner::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: var(--gold);
  opacity: .08;
  border-radius: 50%;
}
.contact-hero h1 { font-size: 28px; color: var(--white); font-weight: 700; margin-bottom: 6px; position: relative; }
.contact-hero h1 em { font-style: normal; color: var(--gold); }
.contact-hero p { font-size: 15px; color: rgba(255,255,255,.6); position: relative; }

/* Contact cards */
.contact-cards { margin: -12px auto 28px; position: relative; z-index: 2; }
.contact-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius, 10px);
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all .25s;
  text-decoration: none;
  color: inherit;
}
.contact-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.12); transform: translateY(-2px); }
.contact-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card-icon.gold { background: var(--gold-light); }
.contact-card-icon.gold svg { stroke: var(--gold-hover); }
.contact-card-icon.dark { background: var(--black); }
.contact-card-icon.dark svg { stroke: var(--gold); }
.contact-card-icon.green { background: #e6f7f0; }
.contact-card-icon.green svg { stroke: var(--badge-green, #1D9E75); }
.contact-card-icon.blue { background: #e8f0fe; }
.contact-card-icon.blue svg { stroke: #3b82f6; }
.contact-card-text h4 { font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.contact-card-text p { font-size: 12px; color: var(--gray-light, #6B6B6B); line-height: 1.4; margin: 0; }

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  padding-bottom: 40px;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius, 10px);
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.contact-form-wrap h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}
.form-success {
  background: #e6f7f0;
  border: 1px solid var(--badge-green, #1D9E75);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--badge-green, #1D9E75);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  transition: border-color .2s;
  font-family: inherit;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { outline: none; border-color: var(--gold); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-muted); }
.form-textarea { height: 130px; resize: vertical; }
.form-hint { font-size: 11px; color: var(--gray-muted); margin-top: 4px; }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .2s;
  font-family: inherit;
}
.form-submit:hover { background: var(--gold-hover); }
.form-submit svg { width: 18px; height: 18px; stroke: currentColor; }

/* Contact sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 901px) { .contact-sidebar { position: sticky; top: 76px; align-self: start; } }

/* Map */
.map-widget {
  background: var(--white);
  border-radius: var(--radius, 10px);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.map-embed { width: 100%; height: 220px; background: #e8e8e8; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.map-address { padding: 16px; font-size: 13px; color: var(--gray); line-height: 1.6; }
.map-address strong { color: var(--black); }
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gold-hover);
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
  text-decoration: none;
}
.map-link svg { width: 14px; height: 14px; stroke: currentColor; }

/* Info widget */
.info-widget {
  background: var(--white);
  border-radius: var(--radius, 10px);
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.info-widget h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-light);
}
.hours-list { font-size: 13px; color: var(--gray); }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #f5f5f5;
}
.hours-row:last-child { border: none; }
.hours-row .day { color: var(--black); font-weight: 500; }
.hours-row .time { color: var(--gray-light, #6B6B6B); }
.hours-row.today {
  background: var(--gold-light);
  margin: 0 -8px;
  padding: 6px 8px;
  border-radius: 4px;
}
.hours-row.today .day { color: var(--gold-hover); font-weight: 600; }

/* WhatsApp widget */
.wa-widget {
  background: var(--black);
  border-radius: var(--radius, 10px);
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.wa-widget h3 { font-size: 15px; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.wa-widget p { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.wa-widget .btn-whatsapp { width: 100%; justify-content: center; }


/* ══════════════════════════════════════
   PAGE HERO (global)
   ══════════════════════════════════════ */

.page-hero { padding: 0 0 24px; }
.page-hero h1 { font-size: 28px; color: var(--black); font-weight: 700; margin-bottom: 6px; }
.page-hero p { font-size: 15px; color: var(--gray-light, #6B6B6B); line-height: 1.5; }

.no-posts { text-align: center; padding: 60px 20px; color: var(--gray-muted); }


/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 900px) {
  .blog-layout,
  .single-layout { grid-template-columns: 1fr; gap: 24px; }
  .contact-layout { grid-template-columns: 1fr; }
  .post-card { grid-template-columns: 1fr; }
  .post-card-img { height: 200px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .single-hero-img { height: 220px; }
  .single-content { padding: 20px 18px 28px; }
  .single-title { font-size: 22px; }
  .search-product-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid,
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero-inner,
  .contact-hero-inner { padding: 32px 24px; }
  .about-hero h1 { font-size: 26px; }
  .about-section { padding: 28px 24px; }
  .about-cta { flex-direction: column; text-align: center; }
  .about-cta-btns { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .trust-section { padding: 24px; }
}

@media (max-width: 600px) {
  .related-grid { grid-template-columns: 1fr; }
  .page-hero h1,
  .search-hero h1 { font-size: 22px; }
  .article-product-cta { flex-direction: column; text-align: center; }
  .search-product-grid { grid-template-columns: 1fr 1fr; }
  .error-code { font-size: 80px; }
  .error-links { grid-template-columns: 1fr; }
  .page-404 { padding: 40px 16px 60px; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .search-product-grid { grid-template-columns: 1fr; }
}
