/**
 * HV Premium Shop — yapısal vitrin teması v3
 */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Syne:wght@600;700;800&display=swap");

:root {
  --hv-ink: #0b0f17;
  --hv-ink-2: #151b28;
  --hv-muted: #5c6478;
  --hv-muted-2: #8b93a7;
  --hv-line: rgba(11, 15, 23, 0.08);
  --hv-line-strong: rgba(11, 15, 23, 0.14);
  --hv-bg: #e9edf4;
  --hv-bg-soft: #f3f5f9;
  --hv-surface: #ffffff;
  --hv-accent: #3b6ff6;
  --hv-accent-2: #22b8cf;
  --hv-accent-glow: rgba(59, 111, 246, 0.22);
  --hv-deal: #f97316;
  --hv-success: #16a34a;
  --hv-radius: 22px;
  --hv-radius-md: 16px;
  --hv-radius-sm: 12px;
  --hv-pill: 999px;
  --hv-shadow: 0 28px 70px rgba(11, 15, 23, 0.12);
  --hv-shadow-md: 0 16px 40px rgba(11, 15, 23, 0.09);
  --hv-shadow-sm: 0 8px 24px rgba(11, 15, 23, 0.06);
  --hv-font-display: "Syne", sans-serif;
  --hv-font-body: "Manrope", sans-serif;
  --hv-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --hv-container: min(1280px, calc(100% - 40px));
}

/* ── Base ── */
html { scroll-behavior: smooth; }

.hv-container {
  width: var(--hv-container);
  margin-inline: auto;
}

.hv-shop {
  font-family: var(--hv-font-body) !important;
  color: var(--hv-muted) !important;
  background-color: var(--hv-bg) !important;
  background-image:
    linear-gradient(rgba(11, 15, 23, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 15, 23, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-font-smoothing: antialiased;
}

.hv-shop h1, .hv-shop h2, .hv-shop h3, .hv-shop h4,
.hv-shop .font-heading, .hv-shop .display-1, .hv-shop .display-2 {
  font-family: var(--hv-font-display) !important;
  color: var(--hv-ink) !important;
  letter-spacing: -0.03em;
}

.hv-shop .text-brand { color: var(--hv-accent) !important; }

.hv-shop .main-content .page-content {
  background: transparent !important;
  padding-top: 0 !important;
}

.hv-main { overflow-x: clip; }

.hv-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--hv-ease), transform 0.7s var(--hv-ease);
}
.hv-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════
   ANNOUNCE BAR
   ═══════════════════════════════════════ */
.hv-announce {
  background: linear-gradient(90deg, var(--hv-ink), #1a2744);
  color: rgba(255, 255, 255, 0.85);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hv-announce__track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 10px 0;
  animation: hv-marquee 32s linear infinite;
}

.hv-announce__track span {
  white-space: nowrap;
  position: relative;
  padding-left: 20px;
}

.hv-announce__track span::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--hv-accent-2);
  font-size: 8px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes hv-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   SITE HEADER
   ═══════════════════════════════════════ */
.hv-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 15, 23, 0.88) !important;
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition: box-shadow 0.35s var(--hv-ease), background 0.35s;
}

.hv-site-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  background: rgba(11, 15, 23, 0.96) !important;
}

.hv-site-header__bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}

.hv-site-header__logo img {
  max-height: 48px !important;
  width: auto !important;
  filter: brightness(0) invert(1);
}

.hv-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--hv-pill);
  padding: 6px 8px 6px 20px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.hv-search:focus-within {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(59, 111, 246, 0.55);
  box-shadow: 0 0 0 4px var(--hv-accent-glow);
}

.hv-search__icon {
  color: rgba(255, 255, 255, 0.45);
  font-size: 16px;
}

.hv-search input.input-search {
  flex: 1;
  border: none !important;
  background: transparent !important;
  color: #fff !important;
  height: 42px !important;
  font-size: 15px !important;
  padding: 0 !important;
  min-width: 0;
}

.hv-search input.input-search::placeholder { color: rgba(255, 255, 255, 0.4); }

.hv-search__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hv-accent), #6366f1);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s var(--hv-ease), box-shadow 0.2s;
  box-shadow: 0 8px 20px rgba(59, 111, 246, 0.35);
}

.hv-search__btn i { color: #fff !important; font-size: 16px !important; }

.hv-search__btn:hover { transform: scale(1.06); }

.hv-site-header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hv-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: var(--hv-radius-sm);
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none !important;
  position: relative;
  transition: background 0.2s, color 0.2s;
  min-width: 56px;
}

.hv-action i { font-size: 20px; }

.hv-action span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hv-action:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
}

.hv-action__badge {
  position: absolute;
  top: 4px;
  right: 6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: var(--hv-pill);
  background: var(--hv-deal);
  color: #fff;
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
}

.hv-burger {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--hv-radius-sm);
  background: transparent;
  margin-left: 8px;
  position: relative;
  padding: 0;
}

.hv-burger .burger-icon-top,
.hv-burger .burger-icon-mid,
.hv-burger .burger-icon-bottom {
  background: #fff !important;
}

/* Nav row */
.hv-site-header__nav .hv-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 10px;
}

.hv-site-header__nav .main-menu > nav > ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  overflow-x: auto;
  margin: 0;
  padding: 2px 0;
  scrollbar-width: none;
}

.hv-site-header__nav .main-menu > nav > ul::-webkit-scrollbar { display: none; }

.hv-site-header__nav .main-menu > nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px !important;
  border-radius: var(--hv-pill) !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  white-space: nowrap;
  line-height: 1.2 !important;
  transition: background 0.22s, color 0.22s;
}

.hv-site-header__nav .main-menu > nav > ul > li > a:hover,
.hv-site-header__nav .main-menu > nav > ul > li:hover > a {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.hv-nav-item--deal > a {
  background: rgba(249, 115, 22, 0.15) !important;
  color: #fdba74 !important;
}

.hv-nav-item--has-child { position: relative; }

.hv-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s var(--hv-ease), visibility 0.25s;
  z-index: 50;
}

.hv-nav-item--has-child:hover .hv-mega {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.hv-mega__list {
  background: var(--hv-surface) !important;
  border-radius: var(--hv-radius-md) !important;
  box-shadow: var(--hv-shadow-md) !important;
  border: 1px solid var(--hv-line) !important;
  padding: 8px !important;
  margin: 0 !important;
}

.hv-mega__list li a {
  display: block;
  padding: 10px 14px !important;
  border-radius: 8px;
  color: var(--hv-ink) !important;
  font-weight: 600;
  font-size: 14px;
}

.hv-mega__list li a:hover {
  background: var(--hv-bg-soft);
  color: var(--hv-accent) !important;
}

.hv-site-header__support {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--hv-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff !important;
  text-decoration: none !important;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.hv-site-header__support:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.hv-site-header__support i {
  font-size: 22px;
  color: var(--hv-accent-2);
}

.hv-site-header__support span {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}

.hv-site-header__support strong {
  color: #fff;
  font-size: 14px;
}

/* Mobile drawer */
.hv-shop .mobile-header-wrapper-style {
  background: var(--hv-ink) !important;
}

.hv-shop .mobile-header-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hv-shop .mobile-menu a { color: rgba(255, 255, 255, 0.85) !important; }

/* ═══════════════════════════════════════
   HERO COMPLEX — bento layout
   ═══════════════════════════════════════ */
.hv-hero-complex {
  padding: 28px 0 12px;
}

.hv-hero-complex__grid {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}

.hv-hero-complex__main,
.hv-hero-complex__slider-wrap {
  min-height: 100%;
  border-radius: calc(var(--hv-radius) + 6px);
  overflow: hidden;
  position: relative;
}

.hv-hero-complex__slide {
  min-height: clamp(280px, 38vw, 520px) !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}

.hv-hero-complex__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(11, 15, 23, 0.55) 100%),
    linear-gradient(90deg, rgba(11, 15, 23, 0.35) 0%, transparent 60%);
}

.hv-hero-complex__main {
  box-shadow: var(--hv-shadow-md);
  border: 1px solid var(--hv-line);
}

.hv-hero-complex__aside {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 14px;
}

.hv-promo-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 24px;
  border-radius: var(--hv-radius);
  text-decoration: none !important;
  min-height: 140px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--hv-ease), box-shadow 0.35s;
  border: 1px solid var(--hv-line);
}

.hv-promo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.25), transparent 55%);
  pointer-events: none;
}

.hv-promo-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--hv-shadow-sm);
}

.hv-promo-tile--primary {
  background: linear-gradient(145deg, #dbeafe, #eff6ff);
  color: var(--hv-ink);
}

.hv-promo-tile--dark {
  background: linear-gradient(145deg, var(--hv-ink), #1e293b);
  color: #fff;
  border-color: transparent;
}

.hv-promo-tile__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
}

.hv-promo-tile__title {
  font-family: var(--hv-font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.2;
  max-width: 16ch;
}

.hv-promo-tile__cta {
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.hv-promo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: var(--hv-surface);
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-radius);
  padding: 16px;
  box-shadow: var(--hv-shadow-sm);
}

.hv-promo-stats__item {
  text-align: center;
  padding: 8px 4px;
  border-right: 1px solid var(--hv-line);
}

.hv-promo-stats__item:last-child { border-right: none; }

.hv-promo-stats__item strong {
  display: block;
  font-family: var(--hv-font-display);
  font-size: 1.1rem;
  color: var(--hv-accent);
}

.hv-promo-stats__item span {
  font-size: 11px;
  color: var(--hv-muted);
  line-height: 1.3;
}

/* ═══════════════════════════════════════
   CATEGORY RAIL
   ═══════════════════════════════════════ */
.hv-rail {
  padding: 8px 0 36px;
}

.hv-rail__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.hv-rail__title {
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 !important;
  white-space: nowrap;
  color: var(--hv-muted) !important;
}

.hv-rail__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--hv-line-strong), transparent);
}

.hv-rail__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.hv-rail__track::-webkit-scrollbar { display: none; }

.hv-rail__chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--hv-surface);
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-radius-md);
  text-decoration: none !important;
  color: var(--hv-ink) !important;
  white-space: nowrap;
  box-shadow: var(--hv-shadow-sm);
  transition: transform 0.25s var(--hv-ease), border-color 0.25s, box-shadow 0.25s;
}

.hv-rail__chip:hover {
  transform: translateY(-3px);
  border-color: var(--hv-accent);
  box-shadow: var(--hv-shadow-md);
}

.hv-rail__chip-index {
  font-family: var(--hv-font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--hv-accent);
  opacity: 0.85;
}

.hv-rail__chip-label {
  font-weight: 700;
  font-size: 14px;
}

.hv-rail__chip > i:last-child {
  font-size: 12px;
  opacity: 0.35;
  transition: transform 0.2s, opacity 0.2s;
}

.hv-rail__chip:hover > i:last-child {
  transform: translateX(3px);
  opacity: 1;
  color: var(--hv-accent);
}

.hv-rail__chip--deal {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border-color: rgba(249, 115, 22, 0.25);
}

.hv-rail__chip--deal .hv-rail__chip-index { color: var(--hv-deal); }

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
.hv-section {
  padding: clamp(48px, 7vw, 88px) 0;
  position: relative;
}

.hv-section--alt {
  background: var(--hv-bg-soft);
  border-block: 1px solid var(--hv-line);
}

.hv-section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(59, 111, 246, 0.06), transparent);
  pointer-events: none;
}

.hv-section__head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.hv-section__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hv-accent);
  margin-bottom: 8px;
}

.hv-section__title {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem) !important;
  line-height: 1.05 !important;
  margin: 0 0 8px !important;
}

.hv-section__desc {
  margin: 0;
  font-size: 16px;
  color: var(--hv-muted);
  max-width: 42ch;
}

.hv-section__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--hv-pill);
  background: var(--hv-ink);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  transition: background 0.22s, transform 0.22s var(--hv-ease);
  flex-shrink: 0;
}

.hv-section__link:hover {
  background: var(--hv-accent);
  transform: translateY(-2px);
}

.hv-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  border: none !important;
  padding: 0 !important;
}

.hv-pill {
  border: 1px solid var(--hv-line) !important;
  border-radius: var(--hv-pill) !important;
  padding: 9px 18px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--hv-muted) !important;
  background: var(--hv-surface) !important;
  transition: all 0.22s var(--hv-ease);
}

.hv-pill.active, .hv-pill:hover {
  background: var(--hv-ink) !important;
  color: #fff !important;
  border-color: var(--hv-ink) !important;
}

.hv-shop .product-tabs .section-title { display: none !important; }

/* ═══════════════════════════════════════
   PRODUCT GRID + CARD
   ═══════════════════════════════════════ */
.hv-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 248px), 1fr));
  gap: clamp(16px, 2.5vw, 22px);
}

.hv-card {
  display: flex;
  flex-direction: column;
  background: var(--hv-surface);
  border-radius: var(--hv-radius);
  overflow: hidden;
  border: 1px solid var(--hv-line);
  box-shadow: var(--hv-shadow-sm);
  transition: transform 0.4s var(--hv-ease), box-shadow 0.4s var(--hv-ease), border-color 0.3s;
}

.hv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hv-shadow);
  border-color: rgba(59, 111, 246, 0.2);
}

.hv-card__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, #e8ecf4, #f8f9fc);
}

.hv-card__media {
  display: block;
  width: 100%;
  height: 100%;
}

.hv-card__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.75s var(--hv-ease);
}

.hv-card:hover .hv-card__img { transform: scale(1.08); }

.hv-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 15, 23, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.hv-card:hover .hv-card__scrim { opacity: 1; }

.hv-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 7px 12px;
  border-radius: var(--hv-pill);
  background: var(--hv-deal);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}

.hv-card__float {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 4;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  transition: opacity 0.3s, transform 0.35s var(--hv-ease);
}

.hv-card:hover .hv-card__float {
  opacity: 1;
  transform: none;
}

.hv-card__add {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--hv-ink);
  box-shadow: var(--hv-shadow-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.hv-card__add:hover {
  background: var(--hv-accent);
  color: #fff;
  transform: scale(1.08);
}

.hv-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.hv-card__meta { min-height: 18px; }

.hv-card__stock {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hv-success);
}

.hv-card__stock--out { color: var(--hv-muted-2); }

.hv-card__title {
  margin: 0 !important;
  font-family: var(--hv-font-body) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hv-card__title a {
  color: var(--hv-ink) !important;
  text-decoration: none;
}

.hv-card__title a:hover { color: var(--hv-accent) !important; }

.hv-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--hv-line);
}

.hv-card__price-current {
  font-family: var(--hv-font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--hv-ink);
  letter-spacing: -0.02em;
}

.hv-card__price-old {
  font-size: 13px;
  color: var(--hv-muted-2);
  text-decoration: line-through;
}

.hv-card__detail {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hv-accent) !important;
  text-decoration: none !important;
  padding: 6px 0;
}

.hv-card__detail:hover { color: var(--hv-ink) !important; }

.hv-product-grid .product-cart-wrap,
.hv-product-grid > [class*="col-"] { display: none !important; }

/* Legacy list grid */
.hv-product-grid--legacy { margin: 0; }

.hv-card--more {
  border: 2px dashed var(--hv-line-strong);
  background: transparent;
  box-shadow: none;
  min-height: 320px;
}

.hv-card--more:hover {
  transform: none;
  border-color: var(--hv-accent);
  box-shadow: none;
}

.hv-card__more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  padding: 32px;
  color: var(--hv-ink) !important;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none !important;
}

.hv-card__more i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--hv-ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.hv-footer-cta {
  background: linear-gradient(135deg, var(--hv-ink) 0%, #1a2744 100%);
  padding: clamp(40px, 6vw, 64px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hv-footer-cta__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.hv-footer-cta__copy .hv-section__label { color: var(--hv-accent-2); }

.hv-footer-cta__title {
  font-family: var(--hv-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff !important;
  margin: 0 0 10px;
  line-height: 1.15;
}

.hv-footer-cta__copy p {
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.hv-footer-cta__form {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--hv-pill);
  padding: 6px;
}

.hv-footer-cta__form input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  color: #fff !important;
  padding: 12px 18px !important;
  font-size: 15px !important;
  min-width: 0;
}

.hv-footer-cta__form input::placeholder { color: rgba(255, 255, 255, 0.4); }

.hv-footer-cta__form button {
  border: none;
  border-radius: var(--hv-pill);
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--hv-accent), #6366f1);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(59, 111, 246, 0.35);
}

.hv-footer-cta__form button:hover { transform: scale(1.03); }

.hv-trust {
  background: var(--hv-surface) !important;
  padding: clamp(32px, 5vw, 48px) 0 !important;
}

.hv-trust__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.hv-trust__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px;
  border-radius: var(--hv-radius-md);
  background: var(--hv-bg-soft);
  border: 1px solid var(--hv-line);
  transition: transform 0.3s var(--hv-ease), box-shadow 0.3s;
}

.hv-trust__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--hv-shadow-sm);
}

.hv-trust__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--hv-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--hv-shadow-sm);
}

.hv-trust__icon img { width: 26px; }

.hv-trust__text strong {
  display: block;
  font-size: 14px;
  color: var(--hv-ink);
  margin-bottom: 4px;
}

.hv-trust__text span { font-size: 12px; color: var(--hv-muted); }

.hv-footer {
  background: var(--hv-ink) !important;
  color: rgba(255, 255, 255, 0.6);
}

.hv-footer-mid {
  background: var(--hv-ink) !important;
}

.hv-footer-mid .widget-title {
  color: #fff !important;
  font-family: var(--hv-font-display) !important;
  font-size: 15px !important;
}

.hv-footer-mid .footer-list a {
  color: rgba(255, 255, 255, 0.55) !important;
  transition: color 0.2s;
}

.hv-footer-mid .footer-list a:hover { color: #fff !important; }

.hv-footer-mid .text-heading,
.hv-footer-mid .contact-infor li {
  color: rgba(255, 255, 255, 0.5) !important;
}

.hv-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.hv-footer-bottom .font-sm { color: rgba(255, 255, 255, 0.4) !important; }

.hv-footer-bottom .text-brand { color: #fff !important; }

/* ═══════════════════════════════════════
   LIST / CHECKOUT / MISC
   ═══════════════════════════════════════ */
.hv-shop .page-header {
  background: var(--hv-surface);
  border-bottom: 1px solid var(--hv-line);
  margin-bottom: 32px !important;
  padding: 36px 0 !important;
}

.hv-shop .shop-product-fillter {
  background: var(--hv-surface);
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.hv-shop .btn, .hv-shop .button {
  border-radius: var(--hv-radius-sm) !important;
  font-weight: 700 !important;
  font-family: var(--hv-font-body) !important;
}

.hv-shop .btn-brand {
  background: var(--hv-ink) !important;
  border-color: var(--hv-ink) !important;
}

.hv-shop .btn-brand:hover {
  background: var(--hv-accent) !important;
  border-color: var(--hv-accent) !important;
}

.hv-shop .btn-success, .hv-shop .cart-summary .btn-success, .hv-shop #payment_address {
  background: var(--hv-success) !important;
  border-color: var(--hv-success) !important;
}

.hv-shop input, .hv-shop textarea, .hv-shop select, .hv-shop .form-control {
  border-radius: var(--hv-radius-sm) !important;
  border-color: var(--hv-line) !important;
}

.hv-shop input:focus, .hv-shop select:focus {
  border-color: var(--hv-accent) !important;
  box-shadow: 0 0 0 4px var(--hv-accent-glow) !important;
}

.hv-shop .alert { border-radius: var(--hv-radius-sm) !important; border: none !important; }

.hv-shop .alert.alert-success {
  background: #dcfce7 !important;
  color: #166534 !important;
}

.hv-shop .alert.alert-error {
  background: #fee2e2 !important;
  color: #991b1b !important;
}

.hv-shop .cart-total {
  border-radius: var(--hv-radius-md) !important;
  border: 1px solid var(--hv-line) !important;
  overflow: hidden;
}

.hv-shop .filter-sidebar .filter-group,
.hv-shop .primary-sidebar .sidebar-widget {
  border-radius: var(--hv-radius-md) !important;
  border: 1px solid var(--hv-line) !important;
}

.hv-shop .scrollup {
  background: var(--hv-ink) !important;
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  box-shadow: var(--hv-shadow-md);
}

.hv-shop .banners img, .hv-shop .banner-img img {
  border-radius: var(--hv-radius) !important;
  width: 100%;
}

.hv-shop .sf-sea .sf-nav li.sf-active,
.hv-shop .sf-sea .sf-nav li.sf-nav-link:hover {
  background: var(--hv-accent) !important;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1199px) {
  .hv-hero-complex__grid { grid-template-columns: 1fr; }
  .hv-hero-complex__aside {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .hv-promo-stats { grid-column: 1 / -1; }
  .hv-trust__grid { grid-template-columns: repeat(3, 1fr); }
  .hv-footer-cta__grid { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
  .hv-site-header__bar {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  .hv-site-header__search { display: none !important; }
  .hv-action span { display: none; }
  .hv-action { min-width: auto; padding: 10px; }
  .hv-card__float { opacity: 1; transform: none; }
  .hv-trust__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .hv-hero-complex__aside { grid-template-columns: 1fr; }
  .hv-promo-stats { grid-template-columns: 1fr; }
  .hv-promo-stats__item { border-right: none; border-bottom: 1px solid var(--hv-line); }
  .hv-promo-stats__item:last-child { border-bottom: none; }
  .hv-section__head--split { flex-direction: column; align-items: flex-start; }
  .hv-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hv-card__body { padding: 12px; }
  .hv-card__title { font-size: 13px !important; }
  .hv-card__price-current { font-size: 1rem; }
  .hv-footer-cta__form { flex-direction: column; border-radius: var(--hv-radius-md); }
  .hv-trust__grid { grid-template-columns: 1fr; }
}

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

/* Pazaryeri: satıcı kartı, detay tablosu, sepet grupları */
.hv-card__seller {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--hv-muted);
  letter-spacing: 0.02em;
}

.hv-product-seller {
  margin: 8px 0 0;
  font-size: 0.92rem;
  color: var(--hv-muted);
}

.hv-sellers__title {
  font-family: var(--hv-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 14px;
}

.hv-sellers__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hv-sellers__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-radius-md);
  background: var(--hv-surface);
}

.hv-sellers__seller {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.hv-sellers__logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--hv-line);
}

.hv-sellers__logo--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hv-bg-soft);
  color: var(--hv-muted);
}

.hv-sellers__name {
  display: block;
  font-size: 0.95rem;
}

.hv-sellers__stock {
  display: block;
  font-size: 0.78rem;
  margin-top: 2px;
}

.hv-sellers__stock--in { color: #0f766e; }
.hv-sellers__stock--out { color: #b45309; }

.hv-sellers__price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--hv-accent);
  white-space: nowrap;
}

.hv-sellers__action .button-small {
  padding: 8px 14px;
  font-size: 0.82rem;
}

.hv-sellers__unavailable {
  font-size: 0.82rem;
  color: var(--hv-muted);
}

.hv-cart-seller-row td {
  background: var(--hv-bg-soft);
  border-bottom: none !important;
  padding-top: 18px !important;
}

.hv-cart-seller {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hv-cart-seller__logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.hv-cart-seller__logo--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--hv-line);
  color: var(--hv-muted);
}

.hv-cart-seller__name {
  display: block;
  font-size: 0.95rem;
}

.hv-cart-seller__meta {
  display: block;
  font-size: 0.78rem;
  color: var(--hv-muted);
}

.hv-cart-seller__subtotal {
  margin-left: auto;
  font-weight: 700;
  font-size: 0.9rem;
}

.hv-mobil-cart__group {
  list-style: none;
  margin-bottom: 18px;
  padding: 0;
}

.hv-cart-seller--mobile {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hv-line);
}

@media (max-width: 767px) {
  .hv-sellers__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hv-sellers__action { justify-self: start; }
  .hv-cart-seller { flex-wrap: wrap; }
  .hv-cart-seller__subtotal { margin-left: 0; width: 100%; }
}
