/* ==========================================================
   zupaqupa – temayeni main.css
   ========================================================== */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* ---------- ROOT VARIABLES ---------- */
:root {
  --zp-primary:      #e63946;
  --zp-primary-dark: #c0303b;
  --zp-dark:         #1a1a2e;
  --zp-light:        #f8f9fa;
  --zp-accent:       #ff6b35;
  --zp-gold:         #f4a261;
  --zp-gray:         #6c757d;
  --zp-border:       #ececec;
  --zp-radius:       14px;
  --zp-shadow:       0 4px 20px rgba(0,0,0,.08);
  --zp-shadow-hover: 0 8px 32px rgba(0,0,0,.12);
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #2a2a2a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; }
img { max-width: 100%; height: auto; }
/* ---------- TOP BAR ---------- */
.top-bar {
  background: #1a1a2e;
  color: #fff;
  font-size: 0.8rem;
  padding: 9px 0;
  text-align: center;
  overflow: hidden;
  letter-spacing: 0.3px;
}
.top-bar-marquee {
  display: inline-flex;
  gap: 4rem;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}
.top-bar-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- HEADER ---------- */
.site-header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: box-shadow 0.25s;
}
.site-header.header-scrolled {
  box-shadow: 0 4px 22px rgba(0,0,0,.11);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
  transition: padding 0.25s;
}
.site-header.header-scrolled .header-inner {
  padding: 0.4rem 0;
}
.header-logo img {
  height: 46px;
  transition: height 0.25s;
}
.site-header.header-scrolled .header-logo img {
  height: 38px;
}
.btn-categories {
  background: var(--zp-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.btn-categories:hover {
  background: var(--zp-primary-dark);
  color: #fff;
  transform: translateY(-1px);
}
.header-search {
  flex: 1; 
  /* max-width: 580px; */
}
.header-search .input-group {
  border: 2px solid var(--zp-border);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.header-search .input-group:focus-within {
  border-color: var(--zp-primary);
  box-shadow: 0 0 0 3px rgba(230,57,70,.1);
}
.header-search input {
  border: none;
  box-shadow: none !important;
  font-size: 0.9rem;
  padding: 0.55rem 0.8rem;
}
.header-search .btn-search {
  background: var(--zp-primary);
  color: #fff;
  border: none;
  padding: 0 1.2rem;
  transition: background 0.2s;
}
.header-search .btn-search:hover { background: var(--zp-primary-dark); }
.header-icons {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.header-icons .btn {
  position: relative;
  background: transparent;
  border: none;
  font-size: 1.15rem;
  color: #333;
  padding: 0.5rem 0.65rem;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.header-icons .btn:hover {
  background: #f5f5f5;
  color: var(--zp-primary);
}
.header-icons .badge {
  position: absolute;
  top: 2px;
  right: 2px;
  font-size: 0.6rem;
  padding: 2px 5px;
  border-radius: 50%;
  background: var(--zp-primary);
  color: #fff;
  min-width: 18px;
  text-align: center;
}

/* ---------- MINI CART ---------- */
.mini-cart-dropdown {
  width: 360px;
  padding: 0;
  border: none;
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
  border-radius: var(--zp-radius);
  overflow: hidden;
}
.mini-cart-header {
  background: #f8f9fa;
  padding: 0.8rem 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--zp-border);
}
.mini-cart-body {
  max-height: 300px;
  overflow-y: auto;
  padding: 0.75rem 1rem;
}
.mini-cart-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #f5f5f5;
}
.mini-cart-item:last-child { border-bottom: none; }
.mini-cart-item img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
}
.mini-cart-item-info { flex: 1; min-width: 0; }
.mini-cart-item-info .name {
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-cart-item-info .price {
  font-size: 0.78rem;
  color: var(--zp-primary);
  font-weight: 700;
}
.mini-cart-qty { display: flex; align-items: center; gap: 0.2rem; }
.mini-cart-qty button {
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s;
}
.mini-cart-qty button:hover { background: #f0f0f0; }
.mini-cart-qty span { font-size: 0.8rem; min-width: 20px; text-align: center; font-weight: 600; }
.mini-cart-remove { color: #bbb; cursor: pointer; font-size: 0.85rem; padding: 0.25rem; transition: color 0.2s; }
.mini-cart-remove:hover { color: var(--zp-primary); }
.mini-cart-footer { padding: 0.75rem 1rem; border-top: 1px solid var(--zp-border); background: #f8f9fa; }
.mini-cart-total { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 0.75rem; font-size: 0.92rem; }
.mini-cart-empty { text-align: center; padding: 2rem 1rem; color: #aaa; font-size: 0.9rem; }

/* ---------- DESKTOP NAV ---------- */
.main-nav {
  background: #fff;
  border-top: 1px solid var(--zp-border);
  border-bottom: 2px solid var(--zp-border);
}
.main-nav .nav-link {
  color: #333;
  font-weight: 600;
  font-size: 0.87rem;
  padding: 0.7rem 1rem;
  position: relative;
  transition: color 0.2s;
}
.main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--zp-primary);
  transition: left 0.25s ease, right 0.25s ease;
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after { left: 0.75rem; right: 0.75rem; }
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--zp-primary); }
.main-nav .dropdown-menu {
  border: none;
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  border-radius: var(--zp-radius);
}
.mega-dropdown { width: 480px; padding: 1.2rem !important; }
.mega-dropdown .mega-col h6 {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--zp-primary);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mega-dropdown .mega-col a {
  display: block;
  font-size: 0.84rem;
  color: #555;
  padding: 3px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.mega-dropdown .mega-col a:hover { color: var(--zp-primary); padding-left: 6px; }

/* ---------- OFFCANVAS ---------- */
.offcanvas-categories .offcanvas-header { background: var(--zp-primary); color: #fff; }
.offcanvas-categories .btn-close { filter: invert(1); }
.offcanvas-categories .list-group-item {
  border: none;
  padding: 0.7rem 1.1rem;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.offcanvas-categories .list-group-item:hover { background: #fff5f5; color: var(--zp-primary); }
.offcanvas-search { padding: 1rem; background: #f8f9fa; }
.offcanvas-search .input-group { border-radius: 50px; overflow: hidden; }

/* ---------- HERO SLIDER ---------- */
.hero-slider { overflow: hidden; position: relative; }
.hero-slide { overflow: hidden; }
.hero-slide .row { min-height: 520px; }
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem 5rem;
  flex: 1;
  width: 100%;
}

/* Per-element fade-up animation */
.hero-anim {
  opacity: 0;
  animation: fadeSlideUp 0.65s ease forwards;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  width: fit-content;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  box-shadow: 0 3px 12px rgba(0,0,0,.2);
}
.hero-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.16;
  color: var(--zp-dark);
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
}
.hero-divider {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: var(--zp-primary);
  margin-bottom: 1rem;
}
.hero-text p {
  font-size: 1rem;
  color: #5a5a5a;
  margin-bottom: 1.8rem;
  line-height: 1.75;
  max-width: 400px;
}
.btn-hero {
  padding: 0.65rem 1.9rem;
  font-weight: 700;
  border-radius: 50px;
  font-size: 0.88rem;
  letter-spacing: 0.2px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}
.hero-img-col {
  padding: 0 !important;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-item.active .hero-img-col img {
  animation: heroImgZoom 6s ease forwards;
}
@keyframes heroImgZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}
.hero-slide-1 { background: linear-gradient(135deg, #fff5f5 0%, #ffe0e3 100%); }
.hero-slide-2 { background: linear-gradient(135deg, #f0f7ff 0%, #dbeafe 100%); }
.hero-slide-3 { background: linear-gradient(135deg, #fff8e1 0%, #fce4d6 100%); }

/* Slide counter */
.hero-counter {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(0,0,0,.35);
  z-index: 10;
  pointer-events: none;
}
.hero-counter .current { color: var(--zp-primary); font-size: 1.1rem; }

/* Carousel indicators */
.hero-slider .carousel-indicators { bottom: 20px; margin: 0; }
.hero-slider .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,.2);
  border: none;
  opacity: 1;
  margin: 0 4px;
  transition: all 0.3s;
}
.hero-slider .carousel-indicators .active {
  background: var(--zp-primary);
  width: 28px;
  border-radius: 4px;
}

/* Custom prev/next controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.08);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  bottom: auto;
  transition: opacity 0.2s, background 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next { opacity: 1; }
.hero-slider .carousel-control-prev { left: 1rem; }
.hero-slider .carousel-control-next { right: 1rem; }
.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover { background: var(--zp-primary); }
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon { width: 16px; height: 16px; }
.hero-slider .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-slider .carousel-control-next:hover .carousel-control-next-icon { filter: brightness(10); }

/* ---------- QUICK CATEGORIES (fotoğraf arka planlı) ---------- */
.quick-categories { padding: 2.5rem 0 3rem; }

.zp-fullscreen-open {
  overflow: hidden;
}

.zp-image-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(11, 13, 23, .92);
  padding: 2rem;
}

.zp-image-fullscreen.show {
  display: flex;
}

.zp-image-fullscreen-frame {
  width: min(100%, 980px);
  max-height: 92vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.zp-image-fullscreen-frame img {
  max-width: 100%;
  max-height: calc(92vh - 3rem);
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.zp-image-fullscreen-frame figcaption {
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.zp-image-fullscreen-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--zp-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.qcat-section-head { margin-bottom: 1.5rem; }
.qcat-section-head .section-title { font-size: 1.35rem; }

.qcat-card {
  position: relative;
  display: block;
  border-radius: var(--zp-radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  text-decoration: none;
}
.qcat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,.72) 100%);
  z-index: 1;
  transition: background 0.35s;
}
.qcat-card:hover::before {
  background: linear-gradient(to bottom, rgba(0,0,0,.08) 5%, rgba(0,0,0,.82) 100%);
}
.qcat-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.qcat-card:hover .qcat-bg { transform: scale(1.07); }
.qcat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 0.9rem 0.85rem;
  z-index: 2;
  color: #fff;
}
.qcat-info h6 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  line-height: 1.2;
}
.qcat-info p { font-size: 0.72rem; opacity: 0.85; margin: 0; }
.qcat-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: 0.7rem;
  margin-top: 0.45rem;
  transition: background 0.2s, transform 0.2s;
}
.qcat-card:hover .qcat-arrow {
  background: var(--zp-primary);
  transform: translateX(3px);
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  padding: 1.75rem 0;
  background: #f8f9fa;
  border-top: 1px solid var(--zp-border);
  border-bottom: 1px solid var(--zp-border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.35rem 0;
}
.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--zp-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  flex-shrink: 0;
}
.trust-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--zp-dark);
  margin-bottom: 1px;
}
.trust-text span { font-size: 0.74rem; color: #999; }

/* ---------- SECTION TITLES ---------- */
.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--zp-dark);
  position: relative;
  display: inline-block;
  margin-bottom: 0.25rem;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 44px;
  height: 3px;
  background: var(--zp-primary);
  border-radius: 2px;
}
.section-subtitle { font-size: 0.86rem; color: #aaa; margin-top: 0.6rem; }

/* ---------- PRODUCT CARDS ---------- */
.product-card {
  border: 1px solid var(--zp-border);
  border-radius: var(--zp-radius);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.25s, transform 0.25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--zp-shadow-hover); transform: translateY(-3px); }
.product-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f8f9fa;
}
.product-card .card-img-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.product-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .card-img-wrap img { transform: scale(1.05); }
.product-card .quick-view-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  background: rgba(0,0,0,.82);
  color: #fff;
  border: none;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 600;
  transition: all 0.25s;
  white-space: nowrap;
}
.product-card:hover .quick-view-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.product-card .category-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--zp-primary);
  color: #fff;
  font-size: 0.67rem;
  padding: 2px 10px;
  border-radius: 50px;
  font-weight: 600;
}
.product-card .card-body { padding: 0.85rem; flex: 1; display: flex; flex-direction: column; }
.product-card .product-name {
  color: var(--zp-dark);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.product-card .product-name:hover {
  color: var(--zp-primary);
}
.product-card .product-rating { color: var(--zp-gold); font-size: 0.7rem; margin-bottom: 0.4rem; }
.product-card .product-price { font-size: 1.08rem; font-weight: 800; color: var(--zp-primary); margin-bottom: 0.55rem; }
.product-card .card-actions { margin-top: auto; display: flex; gap: 0.4rem; align-items: center; }
.product-card .btn-add-cart {
  flex: 1;
  background: var(--zp-primary);
  color: #fff;
  border: none;
  padding: 0.45rem;
  border-radius: 50px;
  font-size: 0.77rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}
.product-card .btn-add-cart:hover { background: var(--zp-primary-dark); transform: translateY(-1px); }
.product-card .btn-quick,
.product-card .btn-detail {
  background: #f4f4f4;
  color: #555;
  border: none;
  padding: 0.45rem 0.7rem;
  border-radius: 50px;
  font-size: 0.77rem;
  transition: all 0.2s;
  line-height: 1;
  text-decoration: none;
}
.product-card .btn-quick:hover,
.product-card .btn-detail:hover { background: var(--zp-dark); color: #fff; }

/* ---------- CAMPAIGN BANNERS ---------- */
.campaign-banners { padding: 2.5rem 0; }
.campaign-banner {
  border-radius: var(--zp-radius);
  overflow: hidden;
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.25s;
}
.campaign-banner:hover { transform: translateY(-3px); }
.campaign-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 100%);
  z-index: 1;
}
.campaign-banner > * { position: relative; z-index: 2; }
.campaign-banner h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 0.4rem; }
.campaign-banner p { font-size: 0.85rem; opacity: 0.9; margin-bottom: 0.9rem; }
.campaign-left  { background: url('assets/urun/03.jpg') center / cover; }
.campaign-right { background: url('assets/urun/07.jpg') center / cover; }

/* ---------- BEST SELLERS ---------- */
.bestsellers { padding: 3rem 0; background: #fafafa; }
.bs-track-wrapper { position: relative; padding: 0 0.5rem; }
.bs-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.bs-track::-webkit-scrollbar { display: none; }
.zp-product-slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.zp-product-slider::-webkit-scrollbar { display: none; }
.zp-product-slider > .col-6,
.zp-product-slider > .col-md-4,
.zp-product-slider > .col-lg-3 {
  flex: 0 0 280px;
  width: 280px;
  max-width: 280px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 575.98px) {
  .zp-product-slider > .col-6,
  .zp-product-slider > .col-md-4,
  .zp-product-slider > .col-lg-3 {
    flex-basis: 230px;
    width: 230px;
    max-width: 230px;
  }
}
.bs-card {
  min-width: 200px;
  max-width: 200px;
  border: 1px solid var(--zp-border);
  border-radius: var(--zp-radius);
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
  transition: box-shadow 0.25s, transform 0.25s;
}
.bs-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.09); transform: translateY(-2px); }
.bs-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.bs-info { padding: 0.7rem; }
.bs-name { font-size: 0.82rem; font-weight: 700; margin-bottom: 0.3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bs-name,
.bs-name:hover {
  color: var(--zp-dark);
}
.bs-price { font-size: 0.95rem; font-weight: 800; color: var(--zp-primary); margin-bottom: 0.5rem; }
.btn-add-cart-sm {
  width: 100%;
  background: var(--zp-primary);
  color: #fff;
  border: none;
  padding: 0.38rem;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 700;
  transition: background 0.2s;
}
.btn-add-cart-sm:hover { background: var(--zp-primary-dark); }
.btn-detail-sm {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  color: var(--zp-primary);
  border: 1px solid rgba(220,53,69,.35);
  padding: 0.36rem;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-detail-sm:hover {
  background: var(--zp-primary);
  color: #fff;
  border-color: var(--zp-primary);
}
.bs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--zp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: all 0.2s;
  font-size: 0.88rem;
  color: #333;
}
.bs-nav:hover { background: var(--zp-primary); color: #fff; border-color: var(--zp-primary); }
.bs-prev { left: -6px; }
.bs-next { right: -6px; }

/* ---------- COLLECTIONS ---------- */
.collections { padding: 3rem 0; }
.coll-box {
  position: relative;
  border-radius: var(--zp-radius);
  overflow: hidden;
  cursor: pointer;
  display: block;
  transition: box-shadow 0.3s;
}
.coll-box:hover { box-shadow: 0 12px 36px rgba(0,0,0,.14); }
.coll-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.coll-box:hover img { transform: scale(1.05); }
.coll-box .coll-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.coll-row-1 .coll-box { height: 260px; }
.coll-row-2 .coll-box { height: 300px; }

/* ---------- ROZETLER ---------- */
.rozetler { padding: 3rem 0; background: #f8f9fa; }
.rozet-wrapper { position: relative; padding: 0 0.5rem; }
.rozet-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.rozet-track::-webkit-scrollbar { display: none; }
.rozet-track.zp-product-slider {
  display: flex;
}
.rozet-card {
  min-width: 155px;
  max-width: 155px;
  flex-shrink: 0;
  border-radius: var(--zp-radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--zp-border);
  transition: box-shadow 0.25s, transform 0.25s;
  text-align: center;
  color: var(--zp-dark);
  text-decoration: none;
}
.rozet-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); transform: translateY(-2px); color: var(--zp-primary); }
.rozet-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.rozet-card .rozet-name { padding: 0.6rem; font-size: 0.8rem; font-weight: 700; }
.rozet-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--zp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: all 0.2s;
  font-size: 0.85rem;
  color: #333;
}
.rozet-nav:hover { background: var(--zp-primary); color: #fff; border-color: var(--zp-primary); }
.rozet-prev { left: -6px; }
.rozet-next { right: -6px; }

/* ---------- SON GÖRÜNTÜLENENLER ---------- */
.recently-viewed { padding: 3rem 0; }
.rv-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.rv-track::-webkit-scrollbar { display: none; }
.rv-card {
  min-width: 155px;
  max-width: 155px;
  flex-shrink: 0;
  border-radius: var(--zp-radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--zp-border);
  transition: box-shadow 0.25s;
  cursor: pointer;
}
.rv-card:hover { box-shadow: 0 6px 16px rgba(0,0,0,.08); }
.rv-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.rv-card .rv-info { padding: 0.5rem; }
.rv-card .rv-name { font-size: 0.78rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rv-card .rv-price { font-size: 0.82rem; font-weight: 800; color: var(--zp-primary); }

/* ---------- NEWSLETTER ---------- */
.newsletter {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #2c2c54 100%);
  color: #fff;
  text-align: center;
}
.newsletter h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.newsletter p { opacity: 0.8; margin-bottom: 1.75rem; font-size: 0.92rem; }
.newsletter .input-group {
  max-width: 460px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.newsletter input { border: none; padding: 0.8rem 1.3rem; font-size: 0.9rem; }
.newsletter .btn-subscribe {
  background: var(--zp-primary);
  color: #fff;
  border: none;
  padding: 0.8rem 1.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.newsletter .btn-subscribe:hover { background: var(--zp-primary-dark); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #12121e;
  color: #aaa;
  padding: 3.5rem 0 0;
  font-size: 0.87rem;
}
.site-footer h5 { color: #fff; font-weight: 700; font-size: 0.95rem; margin-bottom: 1rem; }
.site-footer a { color: #888; text-decoration: none; transition: color 0.2s; }
.site-footer a:hover { color: var(--zp-primary); }
.site-footer .footer-logo img { height: 40px; margin-bottom: 0.75rem; }
.site-footer .footer-desc { font-size: 0.82rem; color: #777; line-height: 1.65; }
.site-footer .footer-links li { margin-bottom: 0.45rem; }
.site-footer .footer-contact i { color: var(--zp-primary); width: 20px; }
.footer-socials a {
  color: #777;
  font-size: 1.1rem;
  margin: 0 0.4rem;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.footer-socials a:hover { color: var(--zp-primary); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.1rem 0;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.79rem;
  color: #555;
}

/* ---------- TOAST ---------- */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.custom-toast {
  background: #fff;
  border-radius: var(--zp-radius);
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
  padding: 0.75rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: slideInToast 0.3s ease;
  min-width: 260px;
}
.custom-toast.hide-toast { animation: slideOutToast 0.3s ease forwards; }
.custom-toast .toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.custom-toast .toast-icon.success { background: #d4edda; color: #155724; }
.custom-toast .toast-icon.info    { background: #d1ecf1; color: #0c5460; }
.custom-toast .toast-msg { font-size: 0.85rem; font-weight: 600; color: #333; }
@keyframes slideInToast {
  from { transform: translateX(100px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutToast {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(100px); opacity: 0; }
}

/* ---------- QUICK VIEW MODAL ---------- */
.qv-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--zp-radius) 0 0 var(--zp-radius); }
.qv-category { font-size: 0.74rem; color: var(--zp-primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.qv-title { font-size: 1.3rem; font-weight: 800; }
.qv-price { font-size: 1.45rem; font-weight: 800; color: var(--zp-primary); }
.qv-desc { font-size: 0.88rem; color: #666; line-height: 1.65; }
.qv-qty { display: flex; align-items: center; gap: 0.4rem; }
.qv-qty button {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.qv-qty button:hover { background: #f0f0f0; }
.qv-qty span { font-size: 1rem; min-width: 30px; text-align: center; font-weight: 700; }
.qv-features { list-style: none; padding: 0; margin: 0; }
.qv-features li { font-size: 0.82rem; color: #666; padding: 0.3rem 0; border-bottom: 1px solid #f5f5f5; }
.qv-features li i { color: var(--zp-primary); width: 22px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  .header-search { max-width: 100%; order: 4; flex-basis: 100%; }
  .header-inner  { flex-wrap: wrap; }
  .main-nav      { display: none !important; }
  .hero-slide .row { min-height: 380px; }
  .hero-text       { padding: 2.5rem 2rem 3.5rem; }
  .hero-text h2    { font-size: 2rem; }
  .hero-img-col    { min-height: 260px; }
  .trust-strip .col-md-3 { width: 50%; }
}
@media (max-width: 767px) {
  .qv-img { border-radius: var(--zp-radius) var(--zp-radius) 0 0; }
}
@media (max-width: 575px) {
  .mini-cart-dropdown { width: 300px; }
  .hero-text    { padding: 2rem 1.25rem 3rem; }
  .hero-text h2 { font-size: 1.5rem; }
  .hero-text p  { font-size: 0.88rem; }
  .coll-row-1 .coll-box,
  .coll-row-2 .coll-box { height: 200px; }
  .trust-strip .col-md-3 { width: 100%; }
}

/* ═══════════════════════════════════════════════════════
   KATEGORİLER DROPDOWN PANEL
═══════════════════════════════════════════════════════ */
.cat-drop-panel {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1045;
  background: #fff;
  border-top: 3px solid var(--zp-primary);
  box-shadow: 0 12px 40px rgba(0,0,0,.13);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
  opacity: 0;
  pointer-events: none;
}
.cat-drop-panel.show {
  max-height: 420px;
  opacity: 1;
  pointer-events: auto;
}
.cat-panel-inner {
  padding: 1.5rem 0;
}
.cat-panel-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-radius: var(--zp-radius);
  transition: background 0.18s, transform 0.18s, border-color 0.18s;
  text-decoration: none;
  color: var(--zp-dark);
  border: 1px solid transparent;
  height: 100%;
}
.cat-panel-item:hover {
  background: #fff5f5;
  border-color: #fde8ea;
  transform: translateY(-2px);
  color: var(--zp-primary);
}
.cat-panel-icon {
  font-size: 1.5rem;
  color: var(--zp-primary);
  margin-bottom: 0.45rem;
}
.cat-panel-name {
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.2;
}
.cat-panel-sub {
  font-size: 0.72rem;
  color: #999;
  margin-top: 0.2rem;
  line-height: 1.35;
}
.cat-panel-item--sale .cat-panel-icon { color: #e63946; }
.cat-panel-item--sale:hover { background: #fff5f5; color: #e63946; }
.btn-categories.active {
  background: var(--zp-primary-dark);
}
@media (max-width: 767px) {
  .cat-panel-item { padding: 0.65rem 0.75rem; }
  .cat-panel-icon { font-size: 1.2rem; }
}

/* ═══════════════════════════════════════════════════════
   SHARED PRODUCT CARD — zp-product-* (kategori + ilgili ürünler)
═══════════════════════════════════════════════════════ */
.zp-product-card {
  background: #fff;
  border-radius: var(--zp-radius);
  box-shadow: var(--zp-shadow);
  overflow: hidden;
  transition: var(--zp-transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.zp-product-card:hover {
  box-shadow: var(--zp-shadow-hover);
  transform: translateY(-3px);
}

/* Görsel wrapper (anchor tag) */
.zp-product-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--zp-light);
  flex-shrink: 0;
}
.zp-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.zp-product-card:hover .zp-product-img {
  transform: scale(1.05);
}

/* Rozet (Yeni / İndirim) */
.zp-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: .67rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50rem;
  color: #fff;
  z-index: 1;
}
.zp-product-badge.badge-yeni    { background: #2a9d8f; }
.zp-product-badge.badge-indirim { background: var(--zp-accent); }

/* Kart gövdesi */
.zp-product-body {
  padding: .85rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.zp-product-cat {
  font-size: .7rem;
  font-weight: 600;
  color: var(--zp-primary);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: .2rem;
}
.zp-product-name {
  font-size: .87rem;
  font-weight: 700;
  margin-bottom: .3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.zp-product-name a,
.zp-product-name a:visited,
.zp-product-name a:active,
.zp-product-card a,
.zp-product-card a:visited,
.zp-product-card a:active {
  color: var(--zp-dark) !important;
  text-decoration: none;
  transition: color .2s;
}
.zp-product-name a:hover,
.zp-product-card a:hover { color: var(--zp-primary) !important; }
.zp-product-rating {
  font-size: .75rem;
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.zp-product-rating .stars { color: var(--zp-gold); }
.zp-product-rating .count { color: var(--zp-gray); }

/* Alt kısım: fiyat + sepet butonu */
.zp-product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .4rem;
  padding-top: .5rem;
}
.zp-product-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .45rem;
  flex-shrink: 0;
}
.zp-product-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--zp-primary);
  line-height: 1.2;
}
.zp-btn-cart {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--zp-primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--zp-transition);
  font-size: .9rem;
}
.zp-product-card .zp-btn-cart,
.zp-product-card .zp-btn-cart:visited,
.zp-product-card .zp-btn-cart:active {
  color: #fff !important;
}
.zp-product-card .zp-btn-cart:hover {
  color: #fff !important;
}
.zp-btn-cart:hover {
  background: var(--zp-primary-dark);
  transform: scale(1.1);
  color: #fff !important;
}

/* ═══════════════════════════════════════════════════════
   SHARED BREADCRUMB — .zp-breadcrumb (tüm sayfalarda)
═══════════════════════════════════════════════════════ */
.zp-breadcrumb {
  padding: .75rem 0;
  margin-bottom: 1.25rem;
}
.zp-breadcrumb ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .25rem;
}
.zp-breadcrumb ol li {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .82rem;
  color: var(--zp-gray);
}
.zp-breadcrumb ol li a {
  color: var(--zp-gray);
  text-decoration: none;
  transition: color .2s;
}
.zp-breadcrumb ol li a:hover { color: var(--zp-primary); }
.zp-breadcrumb ol li.active   { color: var(--zp-dark); font-weight: 600; }
