/* ============================================================
   Hadi Sepetle - Frontend Ana CSS
   Tema: Kırmızı / Koyu - Araç Aksesuar E-Ticaret
   ============================================================ */

:root {
  --primary:      #e53935;
  --primary-dark: #b71c1c;
  --primary-light:#ff6f6f;
  --dark:         #1a1a2e;
  --dark2:        #16213e;
  --dark3:        #0f3460;
  --text:         #2d2d2d;
  --text-muted:   #6b7280;
  --border:       #e8ecf0;
  --bg-light:     #f8f9fa;
  --success:      #22c55e;
  --danger:       #e53935;
  --radius:       10px;
  --shadow:       0 2px 16px rgba(0,0,0,.08);
  --transition:   .25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

/* ============================================================
   HEADER TOP STRIP
   ============================================================ */
.hs-top-strip {
  background: #1a1a2e;
  color: rgba(255,255,255,.85);
  font-size: 12.5px;
  height: 36px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.hs-top-strip a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: color .2s;
}

.hs-top-strip a:hover { color: var(--primary); }

.hs-top-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hs-top-left span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  font-size: 12px;
}

.hs-top-left i { color: var(--primary); font-size: 13px; }

.hs-top-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ============================================================
   MAIN HEADER
   ============================================================ */
.hs-header-main {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.hs-header-inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
}

.hs-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: var(--text);
  min-height: 90px;
  overflow: hidden;
}

.hs-logo img {
  display: block;
  width: auto !important;
  height: 90px !important;
  max-width: 100%;
  max-height: none !important;
  object-fit: contain;
}

.hs-logo-text {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
}

.hs-logo-text .name {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.hs-logo-text .name span {
  color: var(--primary);
}

.hs-logo-text .sub {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive */

@media (max-width: 768px) {

  .hs-logo {
    min-height: 70px;
  }

  .hs-logo img {
    height: 65px !important;
  }

  .hs-logo-text .name {
    font-size: 18px;
  }

  .hs-logo-text .sub {
    font-size: 9px;
  }
}

/* Search */
.hs-search-wrap { position: relative; }

.hs-search-form {
  height: 50px;
  display: grid;
  grid-template-columns: 1fr 170px 54px;
  border: 2px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s;
}

.hs-search-form:focus-within { border-color: var(--primary); }

.hs-search-form input {
  border: 0;
  padding: 0 18px;
  font-size: 14px;
  outline: none;
  min-width: 0;
}

.hs-search-form select {
  border: 0;
  border-left: 1px solid #eef1f5;
  padding: 0 12px;
  font-size: 13px;
  color: #374151;
  outline: none;
  background: #f8f9fa;
}

.hs-search-form button {
  border: 0;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  cursor: pointer;
}

.hs-search-form button:hover { background: var(--primary-dark); }

/* Header Actions */
.hs-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.hs-call-box {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.hs-call-icon {
  width: 42px;
  height: 42px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
}

.hs-call-box small {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.1;
}

.hs-call-box strong {
  display: block;
  font-size: 14px;
  color: var(--dark);
  font-weight: 800;
  line-height: 1.2;
}

.hs-login-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: color .2s;
}

.hs-login-link i { font-size: 22px; }
.hs-login-link:hover { color: var(--primary); }

.hs-icon-btn {
  border: 0;
  background: transparent;
  color: var(--dark);
  font-size: 24px;
  position: relative;
  padding: 0;
  line-height: 1;
  cursor: pointer;
  transition: color .2s;
}

.hs-icon-btn:hover { color: var(--primary); }

.hs-icon-btn .mini-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 17px;
  height: 17px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   MAIN NAV
   ============================================================ */
.hs-main-nav {
  background: var(--dark);
  position: relative;
  z-index: 50;
}

.hs-main-nav-inner {
  display: flex;
  align-items: center;
  min-height: 54px;
}

.hs-cat-toggle {
  width: 210px;
  height: 54px;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s;
}

.hs-cat-toggle:hover { background: var(--primary-dark); }

.hs-nav-links {
  list-style: none;
  margin: 0;
  padding: 0 0 0 28px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hs-nav-links a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 54px;
  padding: 0 14px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.hs-nav-links a:hover,
.hs-nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.hs-nav-phone {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 700;
  padding-right: 4px;
}

.hs-nav-phone i { color: var(--primary); font-size: 16px; }

/* Category Dropdown */
.hs-cat-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  width: 210px;
  z-index: 999;
  pointer-events: none;
}

.hs-cat-panel {
  background: #fff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: .18s ease;
  pointer-events: none;
}

.hs-cat-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hs-cat-panel ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.hs-cat-panel li a {
  min-height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid #f0f2f5;
  color: #27313d;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .15s, color .15s;
}

.hs-cat-panel li a:hover {
  color: var(--primary);
  background: #fef2f2;
}

.hs-cat-panel li a span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hs-cat-panel li a i { color: var(--primary); }

.hs-all-cats {
  padding: 8px;
}

.hs-all-cats a {
  background: #f6f7f9 !important;
  border-radius: 8px;
  border: 0 !important;
  font-weight: 800 !important;
  color: var(--dark) !important;
  justify-content: center !important;
}

/* Mobile Menu */
.hs-mobile-menu {
  display: none;
  background: var(--dark);
  padding: 12px 0;
}

.hs-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-mobile-menu a {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 14px;
  transition: color .2s;
}

.hs-mobile-menu a:hover { color: var(--primary); }

/* ============================================================
   TOP BAR (legacy - kept for compat)
   ============================================================ */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  font-size: 12.5px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.topbar a { color: rgba(255,255,255,.75); }
.topbar a:hover { color: var(--primary); }

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-right: 18px;
}

/* ============================================================
   HEADER (legacy)
   ============================================================ */
.site-header {
  background: #fff;
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  min-height: 90px;
}

/* Logo görseli */

.site-logo img {
  display: block;
  width: auto !important;
  height: 85px !important;
  max-width: 100%;
  max-height: none !important;
  object-fit: contain;
}

/* Eğer icon kullanılacaksa */

.logo-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-text .name {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.logo-text .sub {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* Search */

.header-search {
  flex: 1;
  max-width: 520px;
}

.search-form {
  display: flex;
  border: 2px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}

/* Responsive */

@media (max-width: 768px) {

  .site-logo {
    min-height: 70px;
    gap: 10px;
  }

  .site-logo img {
    height: 60px !important;
  }

  .logo-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .logo-text .name {
    font-size: 20px;
  }

  .logo-text .sub {
    font-size: 9px;
    letter-spacing: 1px;
  }
}

.search-form:focus-within { border-color: var(--primary); }

.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 16px;
  font-size: 14px;
  background: transparent;
}

.search-select {
  border: none;
  border-left: 1px solid var(--border);
  outline: none;
  padding: 0 12px;
  font-size: 13px;
  background: var(--bg-light);
  color: var(--text-muted);
  cursor: pointer;
}

.search-btn {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 0 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background var(--transition);
}

.search-btn:hover { background: var(--primary-dark); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text);
}

.header-phone strong { color: var(--dark); font-size: 15px; }

.header-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 11px;
  color: var(--text-muted);
  cursor: pointer;
  background: #fff;
  transition: all var(--transition);
  position: relative;
}

.header-btn:hover { border-color: var(--primary); color: var(--primary); }
.header-btn i { font-size: 20px; }

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--danger);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   NAVIGATION (legacy)
   ============================================================ */
.main-nav {
  background: var(--dark);
  position: relative;
  overflow: visible;
}

.nav-inner {
  display: flex;
  align-items: stretch;
  overflow: visible;
}

.cat-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  min-height: 48px;
  white-space: nowrap;
  transition: background var(--transition);
}

.cat-toggle:hover { background: var(--primary-dark); }

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 18px;
  height: 48px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--primary);
  background: rgba(255,255,255,.05);
}

.nav-links .dropdown { position: relative; }

.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0 0 10px 10px;
  min-width: 220px;
  max-height: 70vh;
  overflow-y: auto;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  display: none;
  z-index: 9997;
  padding: 6px 0;
  scrollbar-width: thin;
  scrollbar-color: #e0e4ea transparent;
}

.nav-links .dropdown-menu.dropup-menu {
  top: auto;
  bottom: 100%;
  border-radius: 10px 10px 0 0;
}

.nav-links .dropdown:hover .dropdown-menu { display: block; }

.nav-links .dropdown-menu a {
  display: block;
  padding: 9px 18px;
  color: var(--text);
  font-size: 13.5px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links .dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.store-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
}

.store-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}

.store-dot.closed { background: #f87171; animation: none; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* ============================================================
   HERO / SLIDER
   ============================================================ */
.hero-section {
  background: var(--dark);
  padding: 0;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: 420px;
}

.hero-slide {
  display: none;
  position: relative;
  min-height: 420px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active { display: flex; }

.hero-content {
  padding: 60px 0;
  color: #fff;
  z-index: 2;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title span { color: var(--primary); }

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

.hero-btn:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

.hero-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  object-fit: cover;
  opacity: .3;
}

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}

.slider-dot.active { background: var(--primary); }

/* ============================================================
   FEATURES BAR
   ============================================================ */
.features-bar {
  background: #1a1a2e;
  padding: 18px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(229,57,53,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-text .title { font-size: 13px; font-weight: 700; color: #fff; }
.feature-text .sub   { font-size: 12px; color: rgba(255,255,255,.55); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.section-header .section-title::after {
  left: 0;
  transform: none;
}

.section-link {
  font-size: 13.5px;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   PRODUCT TABS (Yeni Ürünler / Çok Satanlar / İndirimler)
   ============================================================ */
.hs-product-tabs {
  padding: 50px 0;
}

.hs-tabs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.hs-tabs-nav {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-tabs-nav li a {
  display: block;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}

.hs-tabs-nav li a:hover { color: var(--primary); }
.hs-tabs-nav li a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.hs-tab-pane { display: none; }
.hs-tab-pane.active { display: block; }

/* Product Carousel */
.hs-product-carousel {
  position: relative;
}

.hs-carousel-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  overflow: hidden;
  transition: transform .35s ease;
}

.hs-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--dark);
  cursor: pointer;
  z-index: 5;
  transition: all .2s;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

.hs-carousel-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.hs-carousel-btn.prev { left: -18px; }
.hs-carousel-btn.next { right: -18px; }

/* ============================================================
   WHY US SECTION
   ============================================================ */
.hs-why-section {
  padding: 60px 0;
  background: #fff;
}

.hs-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hs-why-content h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
}

.hs-why-content p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.hs-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.hs-why-icon {
  width: 46px;
  height: 46px;
  background: #fef2f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.hs-why-item h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 4px;
}

.hs-why-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.hs-why-image {
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
}

.hs-why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.hs-stats-bar {
  background: var(--dark);
  padding: 28px 0;
}

.hs-stat-item {
  text-align: center;
  color: #fff;
  padding: 10px 0;
}

.hs-stat-item i {
  font-size: 28px;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.hs-stat-item .num {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.hs-stat-item .label {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.hs-newsletter-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  padding: 50px 0;
  text-align: center;
}

.hs-newsletter-section h2 {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.hs-newsletter-section p {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  margin-bottom: 24px;
}

.hs-newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.15);
}

.hs-newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 0;
  padding: 14px 18px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.hs-newsletter-form input::placeholder { color: rgba(255,255,255,.4); }

.hs-newsletter-form button {
  background: var(--primary);
  border: 0;
  color: #fff;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}

.hs-newsletter-form button:hover { background: var(--primary-dark); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 8px 30px rgba(229,57,53,.12);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.badge-new      { background: var(--success); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.badge-campaign { background: var(--danger);  color: #fff; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.badge-featured { background: var(--primary); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  aspect-ratio: 1;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform var(--transition);
}

.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.action-btn {
  width: 34px;
  height: 34px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.action-btn:hover,
.action-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.product-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-brand {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}

.product-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-name:hover { color: var(--primary); }

/* Star rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.product-rating .stars { color: #f59e0b; font-size: 12px; }
.product-rating .count { font-size: 11px; color: var(--text-muted); }

.product-price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.price-current {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

.price-old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-discount {
  font-size: 11px;
  background: var(--danger);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.btn-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background var(--transition);
}

.btn-add-cart:hover { background: var(--primary-dark); }
.btn-add-cart:disabled { background: #ccc; cursor: not-allowed; }

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.cat-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  display: block;
  color: var(--text);
}

.cat-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(229,57,53,.12);
  transform: translateY(-3px);
  color: var(--primary);
}

.cat-card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.cat-card .cat-icon {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.cat-card .cat-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.cat-card:hover .cat-name { color: var(--primary); }

.cat-card .cat-count {
  font-size: 11px;
  color: var(--text-muted);
}

/* ============================================================
   BANNER / CTA
   ============================================================ */
.banner-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  border-radius: 14px;
  padding: 32px 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.banner-cta .title { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.banner-cta .sub   { font-size: 14px; color: rgba(255,255,255,.7); }

.btn-banner {
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: background var(--transition);
}

.btn-banner:hover { background: var(--primary-dark); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 50px 0 0;
  margin-top: 0;
}

.footer-logo .name { font-size: 20px; font-weight: 800; color: #fff; }
.footer-logo .sub  { font-size: 12px; color: rgba(255,255,255,.5); }

.footer-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin: 14px 0 20px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 16px;
  transition: all var(--transition);
}

.social-btn:hover { background: var(--primary); color: #fff; }

.footer-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--primary); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  outline: none;
}

.newsletter-input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-input:focus { border-color: var(--primary); }

.newsletter-btn {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.newsletter-btn:hover { background: var(--primary-dark); }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
}

.footer-copyright {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

.footer-copyright a {
  color: rgba(255,255,255,.75);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.footer-copyright a:hover { color: var(--primary); }

.payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-icon {
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 11px;
  color: rgba(255,255,255,.6);
  font-weight: 700;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.page-breadcrumb {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.breadcrumb { margin: 0; font-size: 13px; }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-muted); }

/* ============================================================
   STORE CLOSED BANNER
   ============================================================ */
.store-closed-banner {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 13.5px;
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .hs-carousel-track { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 991px) {
  .header-phone { display: none; }
  .hero-title   { font-size: 28px; }
  .hero-img     { display: none; }
  .banner-cta   { flex-direction: column; text-align: center; }
  .hs-header-inner { grid-template-columns: 1fr; gap: 14px; }
  .hs-logo { justify-content: center; }
  .hs-header-actions { justify-content: center; flex-wrap: wrap; }
  .hs-search-form { grid-template-columns: 1fr 50px; }
  .hs-search-form select { display: none; }
  .hs-why-grid { grid-template-columns: 1fr; gap: 30px; }
  .hs-why-image { height: 260px; }
  .hs-carousel-track { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .topbar       { display: none; }
  .hs-top-strip { display: none; }
  .header-inner { flex-wrap: wrap; gap: 10px; }
  .header-search { order: 3; max-width: 100%; width: 100%; }
  .hero-title   { font-size: 22px; }
  .hero-content { padding: 30px 0; }
  .section-title { font-size: 18px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .main-nav .nav-links { display: none; }
  .hs-nav-links { display: none; }
  .hs-cat-toggle { width: 100%; justify-content: center; }
  .hs-carousel-track { grid-template-columns: repeat(2, 1fr); }
  .hs-newsletter-form { flex-direction: column; border-radius: 10px; }
  .hs-newsletter-form input,
  .hs-newsletter-form button { border-radius: 8px; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.section-padding { padding: 50px 0; }
.section-padding-sm { padding: 30px 0; }
.bg-light-custom { background: var(--bg-light); }
.text-primary-custom { color: var(--primary) !important; }
.fw-800 { font-weight: 800; }

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 6px;
}

@keyframes skeleton-loading {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(229,57,53,.4);
  transition: all var(--transition);
  z-index: 999;
}

.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ============================================================
   SEARCH DROPDOWN
   ============================================================ */
.search-dropdown {
  position: absolute;
  background: #fff;
  border: 1px solid #e0e4ea;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  z-index: 1000;
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
  margin-top: 4px;
  display: none;
}

/* ============================================================
   STORE CLOSED BANNER
   ============================================================ */
.store-closed-banner {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 13.5px;
  font-weight: 600;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.page-breadcrumb {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.breadcrumb { margin: 0; font-size: 13px; }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-muted); }

/* ============================================================
   DROPDOWN FIXES
   ============================================================ */
.topbar .dropdown-menu {
  z-index: 9999 !important;
  background: #fff !important;
  border: 1px solid #e0e4ea !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.15) !important;
  padding: 6px 0 !important;
  margin-top: 8px !important;
}

.topbar .dropdown-menu .dropdown-item {
  color: #333 !important;
  font-size: 13.5px;
  padding: 9px 14px;
  transition: background .15s;
}

.topbar .dropdown-menu .dropdown-item:hover {
  background: #f8f9fa !important;
  color: #1a1a2e !important;
}

.topbar .dropdown-menu .dropdown-item.active,
.topbar .dropdown-menu .dropdown-item:active {
  background: #fef2f2 !important;
  color: var(--primary) !important;
  font-weight: 700;
}

.main-nav .dropdown-menu {
  z-index: 9997;
  background: #fff;
  border: 1px solid #e0e4ea;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding: 6px 0;
  min-width: 220px;
  max-height: 70vh;
  overflow-y: auto;
}

.main-nav .dropdown-menu a {
  color: #333 !important;
  font-size: 13.5px;
  padding: 9px 18px;
  display: block;
  transition: background .15s, color .15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-nav .dropdown-menu a:hover {
  background: #f8f9fa;
  color: var(--primary) !important;
}

.site-header { z-index: 1000; }
.topbar { z-index: 1001; position: relative; }

/* ============================================================
   ADMIN SIDEBAR COMPAT
   ============================================================ */
.sidebar-brand {
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.brand-logo { background: transparent !important; }

/* ============================================================
   CART ICON
   ============================================================ */
.cart-icon {
  color: var(--dark) !important;
  font-size: 24px;
  transition: 0.25s ease;
}

.cart-btn:hover .cart-icon { color: var(--primary) !important; transform: scale(1.1); }
.cart-btn .mini-badge { background: var(--primary); color: #fff; font-weight: 900; }

/* ============================================================
   NAV PHONE (header nav right side)
   ============================================================ */
.uy-nav-phone {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 700;
  padding-right: 4px;
}

.uy-nav-phone i { color: var(--primary); font-size: 16px; }
.uy-nav-phone a { color: rgba(255,255,255,.85); text-decoration: none; }
.uy-nav-phone a:hover { color: var(--primary); }
.hs-stats-bar{
    background:linear-gradient(135deg,#111827,#1f2937);
    border-top:1px solid rgba(255,255,255,.05);
    border-bottom:1px solid rgba(255,255,255,.05);
}

.hs-stat-item{
    padding:28px 20px;
    text-align:center;
    color:#fff;
}

.hs-stat-item i{
    font-size:34px;
    color:#fff;
    margin-bottom:12px;
    display:block;
}

.hs-stat-item .num{
    font-size:28px;
    font-weight:900;
    color:#fff;
    line-height:1;
    margin-bottom:8px;
}

.hs-stat-item .label{
    font-size:13px;
    color:rgba(255,255,255,.82);
    font-weight:600;
}
/* ============================================================
   LOGO FINAL FIX - Hadi Sepetle
   Bu blok CSS dosyasının EN ALTINDA durmalı
   ============================================================ */

.hs-header-main {
  padding: 12px 0 !important;
}

.hs-header-inner {
  display: grid !important;
  grid-template-columns: 260px 1fr auto !important;
  align-items: center !important;
  gap: 28px !important;
}

.hs-logo,
.site-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-height: 95px !important;
  height: 95px !important;
  text-decoration: none !important;
  overflow: visible !important;
  flex-shrink: 0 !important;
}

.hs-logo img,
.site-logo img {
  display: block !important;
  width: auto !important;
  height: 95px !important;
  max-height: none !important;
  max-width: 240px !important;
  object-fit: contain !important;
}

/* Logo yazısı varsa */
.hs-logo-text,
.logo-text {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  margin-left: 12px !important;
}

.hs-logo-text .name,
.logo-text .name {
  font-size: 24px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.hs-logo-text .sub,
.logo-text .sub {
  font-size: 10px !important;
  letter-spacing: 1px !important;
}

/* Mobil */
@media (max-width: 991px) {
  .hs-header-inner {
    grid-template-columns: 1fr !important;
  }

  .hs-logo,
  .site-logo {
    justify-content: center !important;
    min-height: 80px !important;
    height: 80px !important;
  }

  .hs-logo img,
  .site-logo img {
    height: 75px !important;
    max-width: 220px !important;
  }
}

@media (max-width: 576px) {
  .hs-logo,
  .site-logo {
    min-height: 65px !important;
    height: 65px !important;
  }

  .hs-logo img,
  .site-logo img {
    height: 60px !important;
    max-width: 180px !important;
  }
}
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  display: block;
  width: auto;
  height: 95px;
  object-fit: contain;
}
.pd-recommended-section{
    margin-top:28px;
    background:#fff;
    border:1px solid #eef1f5;
    border-radius:28px;
    box-shadow:0 18px 45px rgba(7,17,29,.07);
    padding:28px;
}

.pd-section-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    margin-bottom:20px;
}

.pd-section-head span{
    color:#f5a623;
    font-size:13px;
    font-weight:950;
    text-transform:uppercase;
    letter-spacing:.7px;
}

.pd-section-head h2{
    margin:4px 0 0;
    color:#07111d;
    font-size:27px;
    font-weight:950;
}

.pd-section-head a{
    background:#07111d;
    color:#fff;
    border-radius:999px;
    padding:10px 16px;
    font-size:13px;
    font-weight:900;
    text-decoration:none;
}

.pd-recommended-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.pd-rec-card{
    border:1px solid #eef1f5;
    border-radius:20px;
    overflow:hidden;
    background:#fbfcfe;
    transition:.2s;
}

.pd-rec-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 32px rgba(7,17,29,.08);
}

.pd-rec-img{
    position:relative;
    display:block;
    height:210px;
    background:#fff;
    padding:14px;
}

.pd-rec-img img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.pd-rec-discount{
    position:absolute;
    top:12px;
    left:12px;
    background:#07111d;
    color:#fff;
    border-radius:999px;
    padding:6px 10px;
    font-size:12px;
    font-weight:950;
}

.pd-rec-body{
    padding:15px;
}

.pd-rec-title{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    min-height:44px;
    color:#07111d;
    font-size:14px;
    font-weight:900;
    line-height:1.45;
    text-decoration:none;
}

.pd-rec-price-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:10px;
    margin-top:12px;
}

.pd-rec-price-row small{
    display:block;
    color:#9ca3af;
    text-decoration:line-through;
    font-weight:800;
}

.pd-rec-price-row strong{
    display:block;
    color:#f5a623;
    font-size:19px;
    font-weight:950;
}

.pd-rec-stock-ok,
.pd-rec-stock-no{
    border-radius:999px;
    padding:5px 9px;
    font-size:11px;
    font-weight:900;
    white-space:nowrap;
}

.pd-rec-stock-ok{
    background:#dcfce7;
    color:#166534;
}

.pd-rec-stock-no{
    background:#fee2e2;
    color:#991b1b;
}

.pd-rec-cart{
    width:100%;
    margin-top:13px;
    border:0;
    background:linear-gradient(135deg,#f5b21b,#ffca37);
    color:#07111d;
    border-radius:13px;
    padding:11px 12px;
    font-weight:950;
}

.pd-rec-cart:disabled{
    background:#d1d5db;
    color:#6b7280;
}
@media (max-width: 576px) {
  .products-grid,
  .product-grid,
  .home-products .row,
  .product-list .row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .products-grid > *,
  .product-grid > *,
  .home-products .row > *,
  .product-list .row > * {
    width: 100% !important;
    max-width: 100% !important;
    flex: unset !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .product-card,
  .product-item,
  .card-product {
    width: 100% !important;
    min-width: 0 !important;
  }

  .product-card img,
  .product-item img,
  .card-product img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
  }
}
/* MOBİL ÜRÜN LİSTESİ KESİLME FIX */
@media (max-width: 767px) {

  .hs-product-carousel {
    overflow: visible !important;
  }

  .hs-carousel-track {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    overflow: visible !important;
  }

  .hs-carousel-track > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .hs-carousel-btn {
    display: none !important;
  }

  .product-card {
    width: 100% !important;
    min-width: 0 !important;
  }

  .product-body {
    padding: 10px !important;
  }

  .product-name {
    font-size: 12px !important;
    min-height: 34px !important;
  }

  .price-current {
    font-size: 14px !important;
  }

  .btn-add-cart {
    font-size: 11px !important;
    padding: 8px 6px !important;
  }

  .pd-recommended-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .pd-recommended-section {
    padding: 14px !important;
    border-radius: 18px !important;
  }

  .pd-rec-img {
    height: 145px !important;
    padding: 8px !important;
  }

  .pd-rec-body {
    padding: 10px !important;
  }

  .pd-rec-title {
    font-size: 12px !important;
    min-height: 36px !important;
  }

  .pd-rec-price-row {
    display: block !important;
  }

  .pd-rec-price-row strong {
    font-size: 14px !important;
  }
}