/* ==========================================================================
   Biondan Bibundan — Home V2
   Premium minimalist concrete decor homepage
   Scoped: .home-v2 body wrapper + .hv2-* components
   ========================================================================== */

/* --------------------------------------------------------------------------
   Inner pages (kategori, ürün, sepet vb.)
   -------------------------------------------------------------------------- */
.hv2-main {
  width: 100%;
  min-height: 40vh;
}

.hv2-main > .content,
.hv2-main > .content.kategoriler_urunler,
.hv2-main > .sepet_content {
  max-width: var(--hv2-container);
  margin: 0 auto;
  padding: 32px var(--hv2-gutter) 64px;
}

.hv2-main > .hv2-cat {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.hv2-main > .hv2-pdp {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.hv2-main > .hv2-cart {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.hv2-main > .hv2-account {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.hv2-main > .hv2-search {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

body.home-v2 {
  background-color: var(--hv2-bg);
}

body.home-v2 .back-to-top {
  z-index: 999;
}

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
.home-v2 {
  --hv2-bg: #f7f5f2;
  --hv2-dark: #1a1a1a;
  --hv2-text: #2d2d2d;
  --hv2-muted: #6b6b6b;
  --hv2-border: #e8e4df;
  --hv2-accent: #8b7355;
  --hv2-white: #ffffff;
  --hv2-cream: #f7f5f2;
  --hv2-shadow: 0 4px 24px rgba(26, 26, 26, 0.06);
  --hv2-shadow-hover: 0 8px 32px rgba(26, 26, 26, 0.12);
  --hv2-transition: 0.3s ease;
  --hv2-font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --hv2-font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --hv2-container: 1280px;
  --hv2-gutter: 24px;
}

/* --------------------------------------------------------------------------
   Base reset (scoped)
   -------------------------------------------------------------------------- */
.home-v2 {
  font-family: var(--hv2-font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--hv2-text);
  background-color: var(--hv2-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.home-v2 *,
.home-v2 *::before,
.home-v2 *::after {
  box-sizing: border-box;
}

.home-v2 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.home-v2 a {
  color: inherit;
  text-decoration: none;
  transition: color var(--hv2-transition), opacity var(--hv2-transition);
}

.home-v2 button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.home-v2 h1,
.home-v2 h2,
.home-v2 h3,
.home-v2 h4,
.home-v2 .hv2-heading {
  font-family: var(--hv2-font-serif);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  color: var(--hv2-dark);
}

.home-v2 .hv2-container {
  width: 100%;
  max-width: var(--hv2-container);
  margin: 0 auto;
  padding-left: var(--hv2-gutter);
  padding-right: var(--hv2-gutter);
}

/* --------------------------------------------------------------------------
   Shared utilities
   -------------------------------------------------------------------------- */
.home-v2 .hv2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--hv2-font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid transparent;
  transition: background var(--hv2-transition), color var(--hv2-transition),
    border-color var(--hv2-transition), transform var(--hv2-transition);
}

.home-v2 .hv2-btn:hover {
  transform: translateY(-1px);
}

.home-v2 .hv2-btn--dark {
  background-color: var(--hv2-dark);
  color: var(--hv2-white);
  border-color: var(--hv2-dark);
}

.home-v2 .hv2-btn--dark:hover {
  background-color: #333;
  border-color: #333;
}

.home-v2 .hv2-btn--outline {
  background-color: transparent;
  color: var(--hv2-dark);
  border-color: var(--hv2-dark);
}

.home-v2 .hv2-btn--outline:hover {
  background-color: var(--hv2-dark);
  color: var(--hv2-white);
}

.home-v2 .hv2-btn--outline-light {
  background-color: transparent;
  color: var(--hv2-white);
  border-color: var(--hv2-white);
}

.home-v2 .hv2-btn--outline-light:hover {
  background-color: var(--hv2-white);
  color: var(--hv2-dark);
}

.home-v2 .hv2-btn--accent {
  background-color: var(--hv2-accent);
  color: var(--hv2-white);
  border-color: var(--hv2-accent);
}

.home-v2 .hv2-btn--accent:hover {
  background-color: #7a6549;
  border-color: #7a6549;
}

.home-v2 .hv2-btn--sm {
  padding: 10px 20px;
  font-size: 11px;
}

.home-v2 .hv2-section-title {
  text-align: center;
  margin-bottom: 48px;
}

.home-v2 .hv2-section-title__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.home-v2 .hv2-section-title__line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background-color: var(--hv2-border);
}

.home-v2 .hv2-section-title h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.home-v2 .hv2-section-title p {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--hv2-muted);
}

/* --------------------------------------------------------------------------
   1. Topbar
   -------------------------------------------------------------------------- */
.hv2-topbar {
  background-color: var(--hv2-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.hv2-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  max-width: var(--hv2-container);
  margin: 0 auto;
  padding: 6px var(--hv2-gutter);
}

.hv2-topbar__message {
  flex: 1;
}

.hv2-topbar__links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.hv2-topbar__links a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--hv2-transition);
}

.hv2-topbar__links a:hover {
  color: var(--hv2-white);
}

.hv2-topbar__links a + a {
  position: relative;
}

.hv2-topbar__links a + a::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.25);
}

/* --------------------------------------------------------------------------
   2. Header
   -------------------------------------------------------------------------- */
.hv2-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--hv2-white);
  transition: box-shadow var(--hv2-transition);
}

.hv2-header.is-scrolled {
  box-shadow: var(--hv2-shadow);
}

.hv2-header__inner {
  display: grid;
  grid-template-columns: auto minmax(320px, 1fr) auto;
  align-items: center;
  gap: 20px 32px;
  min-height: 64px;
  max-width: var(--hv2-container);
  margin: 0 auto;
  padding: 10px var(--hv2-gutter);
  border-bottom: 1px solid var(--hv2-border);
}

.hv2-header__logo {
  grid-column: 1;
  justify-self: start;
}

.home-v2 .hv2-header__search,
.hv2-header__search {
  grid-column: 2;
  position: relative;
  display: block;
  width: 100%;
  max-width: 460px;
  min-width: 0;
  margin: 0 auto;
  justify-self: center;
}

.hv2-header__actions {
  grid-column: 3;
  justify-self: end;
}

.hv2-header__search-form {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 8px;
  width: 100% !important;
  min-height: 44px;
  margin: 0 !important;
  padding: 0 8px 0 18px !important;
  border: 1px solid var(--hv2-border) !important;
  border-radius: 0 !important;
  background: var(--hv2-bg) !important;
  box-shadow: none !important;
  transition: border-color var(--hv2-transition), background var(--hv2-transition);
}

.hv2-header__search-form:focus-within {
  border-color: var(--hv2-dark) !important;
  background: var(--hv2-white) !important;
}

.hv2-header__search-input {
  flex: 1 1 0 !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 42px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  -webkit-appearance: none;
  appearance: none;
  font-family: var(--hv2-font-sans) !important;
  font-size: 14px !important;
  line-height: 42px !important;
  color: var(--hv2-text) !important;
}

.hv2-header__search-input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.hv2-header__search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.hv2-header__search-input::placeholder {
  color: var(--hv2-muted);
  opacity: 1;
}

.hv2-header__search-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 36px !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: var(--hv2-dark) !important;
  cursor: pointer;
  transition: background var(--hv2-transition), color var(--hv2-transition);
}

.hv2-header__search-btn:hover {
  background: var(--hv2-white) !important;
  color: var(--hv2-accent) !important;
}

.hv2-header__search-btn svg {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hv2-header__search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 1002;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
  box-shadow: var(--hv2-shadow-hover);
  overflow: hidden;
}

.hv2-header__search-suggest[hidden] {
  display: none !important;
}

.hv2-header__search-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 360px;
  overflow-y: auto;
}

.hv2-header__search-item {
  border-bottom: 1px solid var(--hv2-border);
}

.hv2-header__search-item:last-child {
  border-bottom: none;
}

.hv2-header__search-item-link {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  text-decoration: none !important;
  color: var(--hv2-dark) !important;
  transition: background var(--hv2-transition);
}

.hv2-header__search-item-link:hover {
  background: var(--hv2-bg);
}

.hv2-header__search-item-img {
  display: block;
  width: 52px;
  height: 52px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
  overflow: hidden;
}

.hv2-header__search-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hv2-header__search-item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hv2-header__search-item-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--hv2-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hv2-header__search-item-brand {
  font-size: 11px;
  color: var(--hv2-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hv2-header__search-all {
  display: block;
  padding: 12px 14px;
  border-top: 1px solid var(--hv2-border);
  background: var(--hv2-bg);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none !important;
  color: var(--hv2-accent) !important;
  transition: background var(--hv2-transition), color var(--hv2-transition);
}

.hv2-header__search-all:hover {
  background: var(--hv2-white);
  color: var(--hv2-dark) !important;
}

.hv2-header__search-all[hidden] {
  display: none !important;
}

.hv2-header__action--search-mobile {
  display: none !important;
}

@media (min-width: 993px) {
  .home-v2 .hv2-header__action--search-mobile,
  .hv2-header__action--search-mobile {
    display: none !important;
  }
}

.hv2-header__logo {
  flex-shrink: 0;
}

.hv2-header__logo img {
  height: 40px;
  width: auto;
}

.hv2-header__logo-text {
  font-family: var(--hv2-font-serif);
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--hv2-dark);
}

.hv2-header__menu-bar {
  border-top: 1px solid var(--hv2-dark);
  border-bottom: 1px solid var(--hv2-border);
  background-color: var(--hv2-white);
}

.hv2-header__nav {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hv2-header__nav-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.hv2-nav-item {
  position: relative;
  min-width: 0;
  border-right: 1px solid var(--hv2-border);
}

.hv2-nav-item:last-child {
  border-right: none;
}

.hv2-nav-item__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 58px;
  height: 100%;
  padding: 10px 8px;
  font-family: var(--hv2-font-sans);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--hv2-dark);
  transition: color var(--hv2-transition), background var(--hv2-transition);
}

.hv2-nav-item__label {
  display: block;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.hv2-nav-item__caret {
  display: none;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.45;
  flex-shrink: 0;
}

.hv2-nav-item--has-sub .hv2-nav-item__caret {
  display: block;
}

.hv2-nav-item__link:hover,
.hv2-nav-item:hover > .hv2-nav-item__link,
.hv2-nav-item.is-open > .hv2-nav-item__link {
  color: var(--hv2-accent);
  background-color: rgba(247, 245, 242, 0.85);
}

.hv2-nav-item__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 220px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background-color: var(--hv2-white);
  border: 1px solid var(--hv2-border);
  border-top: none;
  box-shadow: var(--hv2-shadow-hover);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity var(--hv2-transition), transform var(--hv2-transition), visibility var(--hv2-transition);
  z-index: 1100;
}

.hv2-nav-item__dropdown li {
  margin: 0;
}

.hv2-nav-item__dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--hv2-text);
  white-space: normal;
  transition: background var(--hv2-transition), color var(--hv2-transition);
}

.hv2-nav-item__dropdown a:hover {
  background-color: var(--hv2-bg);
  color: var(--hv2-accent);
}

.hv2-nav-item--has-sub:hover > .hv2-nav-item__dropdown,
.hv2-nav-item--has-sub.is-open > .hv2-nav-item__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.hv2-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-shrink: 0;
}

.hv2-header__action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--hv2-dark);
  border-radius: 50%;
  transition: background var(--hv2-transition), color var(--hv2-transition);
}

.hv2-header__action:hover {
  background-color: var(--hv2-bg);
  color: var(--hv2-accent);
}

.hv2-header__action svg {
  width: 20px;
  height: 20px;
}

.hv2-header__cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  background-color: var(--hv2-accent);
  color: var(--hv2-white);
  border-radius: 50%;
}

.hv2-header__action--cart {
  position: relative;
}

/* Hamburger */
.hv2-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.hv2-header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--hv2-dark);
  transition: transform var(--hv2-transition), opacity var(--hv2-transition);
}

.hv2-header.is-open .hv2-header__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hv2-header.is-open .hv2-header__toggle span:nth-child(2) {
  opacity: 0;
}

.hv2-header.is-open .hv2-header__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.hv2-header__mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--hv2-white);
  z-index: 999;
  padding: 100px var(--hv2-gutter) 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--hv2-transition);
}

.hv2-header.is-open .hv2-header__mobile-nav {
  transform: translateX(0);
}

.hv2-header__mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hv2-header__mobile-nav-list li {
  border-bottom: 1px solid var(--hv2-border);
}

.hv2-header__mobile-nav-list a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-family: var(--hv2-font-serif);
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   3. Hero
   -------------------------------------------------------------------------- */
.hv2-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 85vh;
  background-color: var(--hv2-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hv2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 26, 26, 0.72) 0%,
    rgba(26, 26, 26, 0.45) 45%,
    rgba(26, 26, 26, 0.1) 100%
  );
  z-index: 1;
}

.hv2-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--hv2-container);
  margin: 0 auto;
  padding: 80px var(--hv2-gutter);
  width: 100%;
}

.hv2-hero__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hv2-accent);
}

.home-v2 .hv2-hero .hv2-hero__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.02em;
  max-width: 640px;
  margin-bottom: 20px;
}

.hv2-hero__subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin: 0 0 36px;
  line-height: 1.7;
}

.hv2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hv2-hero .hv2-btn--outline {
  color: var(--hv2-white);
  border-color: var(--hv2-white);
}

.hv2-hero .hv2-btn--outline:hover {
  background-color: var(--hv2-white);
  color: var(--hv2-dark);
}

/* --------------------------------------------------------------------------
   4. Features bar
   -------------------------------------------------------------------------- */
.hv2-features {
  background-color: #f9f7f4;
  border-top: 1px solid var(--hv2-border);
  border-bottom: 1px solid var(--hv2-border);
}

.hv2-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 32px 0;
}

.hv2-features__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 20px;
  text-align: left;
  border-right: 1px solid rgba(139, 115, 85, 0.15);
}

.hv2-features__item:last-child {
  border-right: none;
}

.hv2-features__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  color: #8b7355;
}

.hv2-features__icon svg {
  width: 26px;
  height: 26px;
}

.hv2-features__text {
  min-width: 0;
}

.hv2-features__text h4 {
  font-family: var(--hv2-font-serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #5c4a38;
  margin: 0 0 3px;
  line-height: 1.25;
}

.hv2-features__text p {
  margin: 0;
  font-family: var(--hv2-font-sans);
  font-size: 12px;
  font-weight: 400;
  color: #8a8178;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   5. Bestsellers
   -------------------------------------------------------------------------- */
.hv2-bestsellers {
  padding: 80px 0;
  background-color: var(--hv2-white);
}

.hv2-bestsellers__slider {
  position: relative;
  padding: 0 52px;
}

.hv2-bestsellers__viewport {
  overflow: hidden;
}

.hv2-bestsellers__track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hv2-bestsellers__track .hv2-product-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: auto;
  align-self: stretch;
}

.hv2-bestsellers__track .hv2-product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.hv2-bestsellers__track .hv2-product-card__name {
  min-height: 2.7em;
}

.hv2-bestsellers__track .hv2-product-card__btn {
  margin-top: auto;
}

.hv2-bestsellers__arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hv2-border);
  border-radius: 50%;
  background: var(--hv2-white);
  color: var(--hv2-dark);
  cursor: pointer;
  transition: border-color var(--hv2-transition), color var(--hv2-transition), box-shadow var(--hv2-transition);
}

.hv2-bestsellers__arrow:hover {
  border-color: var(--hv2-dark);
  box-shadow: var(--hv2-shadow);
}

.hv2-bestsellers__arrow:disabled {
  opacity: 0.35;
  cursor: default;
  box-shadow: none;
}

.hv2-bestsellers__arrow svg {
  width: 20px;
  height: 20px;
}

.hv2-bestsellers__arrow--prev {
  left: 0;
}

.hv2-bestsellers__arrow--next {
  right: 0;
}

.hv2-bestsellers__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.hv2-bestsellers__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--hv2-border);
  cursor: pointer;
  transition: background var(--hv2-transition), transform var(--hv2-transition);
}

.hv2-bestsellers__dot.is-active {
  background: var(--hv2-dark);
  transform: scale(1.15);
}

.hv2-bestsellers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--hv2-container);
  margin: 0 auto;
  padding: 0 var(--hv2-gutter);
}

.hv2-product-card {
  position: relative;
  background-color: var(--hv2-white);
  border: none;
  transition: box-shadow var(--hv2-transition), transform var(--hv2-transition);
}

.hv2-product-card:hover {
  box-shadow: var(--hv2-shadow-hover);
  transform: translateY(-4px);
}

.hv2-product-card__image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: var(--hv2-bg);
}

.hv2-product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hv2-product-card:hover .hv2-product-card__image-wrap img {
  transform: scale(1.05);
}

.hv2-product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--hv2-white);
  border-radius: 50%;
  color: var(--hv2-muted);
  box-shadow: var(--hv2-shadow);
  transition: color var(--hv2-transition), background var(--hv2-transition);
  z-index: 2;
}

.hv2-product-card__wishlist:hover,
.hv2-product-card__wishlist.is-active {
  color: #c0392b;
}

.hv2-product-card__wishlist svg {
  width: 18px;
  height: 18px;
}

.hv2-product-card__body {
  padding: 20px;
  text-align: center;
}

.hv2-product-card__name {
  font-family: var(--hv2-font-serif);
  font-size: 18px;
  color: var(--hv2-dark);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hv2-product-card__name a:hover {
  color: var(--hv2-accent);
}

.hv2-product-card__price {
  font-family: var(--hv2-font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--hv2-dark);
  margin-bottom: 16px;
}

.hv2-product-card__price del {
  color: var(--hv2-muted);
  font-weight: 400;
  margin-right: 8px;
}

.hv2-product-card__btn {
  width: 100%;
}

/* --------------------------------------------------------------------------
   6. Combo section
   -------------------------------------------------------------------------- */
.hv2-combo {
  padding: 80px 0;
  background-color: var(--hv2-dark);
  color: var(--hv2-white);
}

.hv2-combo .hv2-section-title h2 {
  color: var(--hv2-white);
}

.hv2-combo .hv2-section-title p {
  color: rgba(255, 255, 255, 0.6);
}

.hv2-combo .hv2-section-title__line {
  background-color: rgba(255, 255, 255, 0.2);
}

.hv2-combo__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: var(--hv2-container);
  margin: 0 auto;
  padding: 0 var(--hv2-gutter);
}

.hv2-combo__item {
  text-decoration: none;
  color: inherit;
  display: block;
  text-align: center;
}
.hv2-combo__item--static {
  cursor: default;
  pointer-events: none;
}

.hv2-combo__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-family: var(--hv2-font-serif);
  font-size: 28px;
  color: var(--hv2-accent);
  transition: border-color var(--hv2-transition), background var(--hv2-transition);
}

.hv2-combo__item:hover .hv2-combo__circle {
  border-color: var(--hv2-accent);
  background-color: rgba(139, 115, 85, 0.15);
}

.hv2-combo__item h4 {
  font-family: var(--hv2-font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hv2-white);
  margin-bottom: 6px;
}

.hv2-combo__item p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   7. Categories
   -------------------------------------------------------------------------- */
.hv2-categories {
  padding: 80px 0;
  background-color: var(--hv2-bg);
}

.hv2-categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--hv2-container);
  margin: 0 auto;
  padding: 0 var(--hv2-gutter);
}

.hv2-category-card {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--hv2-dark);
}

.hv2-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hv2-category-card:hover img {
  transform: scale(1.06);
}

.hv2-category-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.65) 0%,
    rgba(26, 26, 26, 0.2) 100%
  );
  padding: 32px;
  text-align: center;
}

.hv2-category-card__title {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--hv2-white);
  margin-bottom: 20px;
}

.hv2-category-card:hover .hv2-category-card__overlay {
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.75) 0%,
    rgba(26, 26, 26, 0.35) 100%
  );
}

/* --------------------------------------------------------------------------
   8. Story
   -------------------------------------------------------------------------- */
.hv2-story {
  padding: 96px 0;
  background-color: var(--hv2-white);
  overflow: hidden;
}

.hv2-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 72px;
  align-items: center;
}

.hv2-story__media {
  position: relative;
}

.hv2-story__image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--hv2-bg);
}

.hv2-story__image img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.hv2-story__media:hover .hv2-story__image img {
  transform: scale(1.03);
}

.hv2-story__accent {
  position: absolute;
  top: 32px;
  left: -32px;
  right: 32px;
  bottom: -32px;
  background: #f3efe9;
  z-index: 0;
}

.hv2-story__content {
  padding: 8px 0;
}

.hv2-story__eyebrow {
  margin: 0 0 16px;
  font-family: var(--hv2-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hv2-accent);
}

.hv2-story__content h2 {
  font-family: var(--hv2-font-serif);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--hv2-dark);
  margin: 0 0 24px;
  max-width: 14ch;
}

.hv2-story__lead {
  font-size: 16px;
  color: #6f6a63;
  line-height: 1.85;
  margin: 0 0 40px;
  max-width: 46ch;
}

.hv2-story__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 40px;
  padding-top: 32px;
  border-top: 1px solid var(--hv2-border);
}

.hv2-story__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hv2-story__feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  color: #8b7355;
}

.hv2-story__feature-icon svg {
  width: 22px;
  height: 22px;
}

.hv2-story__feature-text h4 {
  font-family: var(--hv2-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hv2-dark);
  margin: 0 0 4px;
}

.hv2-story__feature-text p {
  margin: 0;
  font-size: 13px;
  color: var(--hv2-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. Gallery
   -------------------------------------------------------------------------- */
.hv2-gallery {
  padding: 60px 0;
  background-color: var(--hv2-bg);
  overflow: hidden;
}

.hv2-gallery__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 var(--hv2-gutter);
}

.hv2-gallery__track::-webkit-scrollbar {
  display: none;
}

.hv2-gallery__item {
  flex: 0 0 auto;
  width: clamp(240px, 25vw, 360px);
  scroll-snap-align: start;
  overflow: hidden;
}

.hv2-gallery__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hv2-gallery__item:hover img {
  transform: scale(1.04);
}

/* --------------------------------------------------------------------------
   10. Reviews
   -------------------------------------------------------------------------- */
.hv2-reviews {
  padding: 80px 0;
  background-color: var(--hv2-white);
}

.hv2-reviews__wrapper {
  position: relative;
  max-width: var(--hv2-container);
  margin: 0 auto;
  padding: 0 var(--hv2-gutter);
}

.hv2-reviews__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hv2-review-card {
  padding: 32px;
  background-color: var(--hv2-bg);
  border: 1px solid var(--hv2-border);
  text-align: center;
  transition: box-shadow var(--hv2-transition);
}

.hv2-review-card:hover {
  box-shadow: var(--hv2-shadow);
}

.hv2-review-card__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--hv2-accent);
}

.hv2-review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hv2-review-card__text {
  font-family: var(--hv2-font-serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: var(--hv2-text);
  margin-bottom: 20px;
}

.hv2-review-card__author {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hv2-dark);
}

.hv2-review-card__meta {
  font-size: 12px;
  color: var(--hv2-muted);
  margin-top: 4px;
}

.hv2-reviews__arrow--side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: var(--hv2-white);
}

.hv2-reviews__arrow--prev {
  left: 0;
}

.hv2-reviews__arrow--next {
  right: 0;
}

@media (max-width: 768px) {
  .hv2-reviews__arrow--side {
    display: none;
  }
}

.hv2-reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.hv2-reviews__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--hv2-border);
  border-radius: 50%;
  color: var(--hv2-dark);
  transition: background var(--hv2-transition), border-color var(--hv2-transition),
    color var(--hv2-transition);
}

.hv2-reviews__arrow:hover {
  background-color: var(--hv2-dark);
  border-color: var(--hv2-dark);
  color: var(--hv2-white);
}

.hv2-reviews__arrow svg {
  width: 18px;
  height: 18px;
}

.hv2-reviews__dots {
  display: flex;
  gap: 8px;
}

.hv2-reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--hv2-border);
  transition: background var(--hv2-transition), transform var(--hv2-transition);
}

.hv2-reviews__dot.is-active {
  background-color: var(--hv2-accent);
  transform: scale(1.25);
}

/* --------------------------------------------------------------------------
   11. Instagram
   -------------------------------------------------------------------------- */
.hv2-instagram {
  padding: 80px 0;
  background-color: var(--hv2-bg);
}

.hv2-instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 960px;
  margin: 0 auto;
}

.hv2-instagram__item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--hv2-dark);
}

.hv2-instagram__item img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease, opacity var(--hv2-transition);
}

.hv2-instagram__item:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}

.hv2-instagram__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background-color: var(--hv2-dark);
  color: var(--hv2-white);
  text-align: center;
  padding: 20px;
  transition: background var(--hv2-transition);
}

.hv2-instagram__cta:hover {
  background-color: var(--hv2-accent);
}

.hv2-instagram__cta-icon {
  margin-bottom: 12px;
}

.hv2-instagram__cta-icon svg {
  width: 32px;
  height: 32px;
}

.hv2-instagram__cta h3 {
  font-size: 20px;
  color: var(--hv2-white);
  margin-bottom: 8px;
}

.hv2-instagram__cta p {
  margin: 0 0 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   12. CTA Banner
   -------------------------------------------------------------------------- */
.hv2-cta-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background-color: var(--hv2-dark);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hv2-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
  z-index: 1;
}

.hv2-cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px var(--hv2-gutter);
  max-width: 640px;
}

.hv2-cta-banner__content h2 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--hv2-white);
  margin-bottom: 16px;
}

.hv2-cta-banner__content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hv2-cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.hv2-footer {
  background-color: var(--hv2-white);
  border-top: 1px solid var(--hv2-border);
}

/* Trust bar */
.hv2-footer__trust {
  background: var(--hv2-white);
  border-top: 1px solid var(--hv2-border);
  border-bottom: 1px solid var(--hv2-border);
}

.hv2-footer__trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hv2-footer__trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 20px;
  text-align: left;
  border-right: 1px solid var(--hv2-border);
  transition: background var(--hv2-transition);
}

.hv2-footer__trust-item:last-child {
  border-right: none;
}

.hv2-footer__trust-item:hover {
  background: rgba(139, 115, 85, 0.04);
}

.hv2-footer__trust-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(139, 115, 85, 0.22);
  background: rgba(139, 115, 85, 0.06);
  color: var(--hv2-accent);
}

.hv2-footer__trust-icon svg {
  width: 22px;
  height: 22px;
}

.hv2-footer__trust-text {
  min-width: 0;
}

.hv2-footer__trust-text h4,
.hv2-footer__trust-item h4 {
  font-family: var(--hv2-font-serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--hv2-dark);
  margin: 0 0 4px;
  line-height: 1.25;
}

.hv2-footer__trust-text p,
.hv2-footer__trust-item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--hv2-muted);
}

/* Newsletter */
.hv2-footer__newsletter {
  padding: 48px 0;
  border-bottom: 1px solid var(--hv2-border);
}

.hv2-footer__newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--hv2-container);
  margin: 0 auto;
  padding: 0 var(--hv2-gutter);
}

.hv2-footer__newsletter-text h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.hv2-footer__newsletter-text p {
  margin: 0;
  font-size: 14px;
  color: var(--hv2-muted);
}

.hv2-footer__newsletter-form {
  display: flex;
  flex: 1;
  max-width: 480px;
  gap: 0;
}

.hv2-footer__newsletter-form input[type='email'] {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--hv2-font-sans);
  font-size: 14px;
  border: 1px solid var(--hv2-border);
  border-right: none;
  background-color: var(--hv2-bg);
  color: var(--hv2-text);
  outline: none;
  transition: border-color var(--hv2-transition);
}

.hv2-footer__newsletter-form input[type='email']:focus {
  border-color: var(--hv2-accent);
}

.hv2-footer__newsletter-form input[type='email']::placeholder {
  color: var(--hv2-muted);
}

.hv2-footer__newsletter-form .hv2-btn {
  flex-shrink: 0;
}

/* Link columns */
.hv2-footer__main {
  padding: 48px 0;
}

.hv2-footer__columns {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  max-width: var(--hv2-container);
  margin: 0 auto;
  padding: 0 var(--hv2-gutter);
}

.hv2-footer__brand p {
  font-size: 14px;
  color: var(--hv2-muted);
  line-height: 1.7;
  margin: 16px 0 0;
  max-width: 280px;
}

.hv2-footer__brand-logo {
  font-family: var(--hv2-font-serif);
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--hv2-dark);
}

.hv2-footer__col h4 {
  font-family: var(--hv2-font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hv2-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hv2-footer__col li {
  margin-bottom: 10px;
}

.hv2-footer__col a {
  font-size: 14px;
  color: var(--hv2-muted);
  transition: color var(--hv2-transition);
}

.hv2-footer__col a:hover {
  color: var(--hv2-accent);
}

.hv2-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.hv2-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--hv2-border);
  border-radius: 50%;
  color: var(--hv2-muted);
  transition: background var(--hv2-transition), border-color var(--hv2-transition),
    color var(--hv2-transition);
}

.hv2-footer__social a:hover {
  background-color: var(--hv2-dark);
  border-color: var(--hv2-dark);
  color: var(--hv2-white);
}

.hv2-footer__social svg {
  width: 16px;
  height: 16px;
}

/* Bottom bar */
.hv2-footer__bottom {
  border-top: 1px solid var(--hv2-border);
  background-color: var(--hv2-bg);
}

.hv2-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  max-width: var(--hv2-container);
  margin: 0 auto;
  padding: 12px var(--hv2-gutter);
  font-size: 12px;
  color: var(--hv2-muted);
}

.hv2-footer__bottom-links {
  display: flex;
  gap: 20px;
}

.hv2-footer__bottom-links a {
  color: var(--hv2-muted);
}

.hv2-footer__bottom-links a:hover {
  color: var(--hv2-accent);
}

.hv2-footer__payments {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hv2-footer__payments img {
  height: 24px;
  width: auto;
  opacity: 0.6;
}

/* --------------------------------------------------------------------------
   Responsive — Tablet (≤992px)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .home-v2 {
    --hv2-gutter: 20px;
  }

  .hv2-header__menu-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 88px var(--hv2-gutter) 40px;
    border: none;
    background-color: var(--hv2-white);
    overflow-y: auto;
    z-index: 998;
  }

  .hv2-header__menu-bar.is-open {
    display: block;
  }

  body.hv2-menu-open {
    overflow: hidden;
  }

  .hv2-header__nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }

  .hv2-nav-item {
    border-right: none;
    border-bottom: 1px solid var(--hv2-border);
  }

  .hv2-nav-item__link {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: auto;
    padding: 16px 0;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-align: left;
  }

  .hv2-nav-item__label {
    text-align: left;
  }

  .hv2-nav-item--has-sub .hv2-nav-item__caret {
    display: block;
    margin-left: 12px;
  }

  .hv2-nav-item__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    min-width: 0;
    padding: 0 0 8px 12px;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .hv2-nav-item--has-sub.is-open > .hv2-nav-item__dropdown {
    display: block;
  }

  .hv2-nav-item__dropdown a {
    padding: 10px 0;
    font-size: 13px;
  }

  .hv2-header__toggle {
    display: flex;
    order: -1;
  }

  .hv2-header__inner {
    min-height: 56px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .hv2-header__search {
    display: none;
  }

  .hv2-header__action--search-mobile {
    display: flex;
  }

  .hv2-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 28px 0;
  }

  .hv2-features__item {
    padding: 16px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(139, 115, 85, 0.12);
  }

  .hv2-features__item:nth-child(odd) {
    border-right: 1px solid rgba(139, 115, 85, 0.12);
  }

  .hv2-features__item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .hv2-bestsellers__slider {
    padding: 0 40px;
  }

  .hv2-bestsellers__track .hv2-product-card {
    flex: 0 0 calc(50% - 12px);
  }

  .hv2-bestsellers__arrow {
    width: 38px;
    height: 38px;
  }

  .hv2-combo__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 20px;
  }

  .hv2-story__grid {
    gap: 48px;
  }

  .hv2-story__accent {
    top: 20px;
    left: -16px;
    right: 16px;
    bottom: -20px;
  }

  .hv2-reviews__track {
    grid-template-columns: repeat(2, 1fr);
  }

  .hv2-instagram__grid {
    max-width: 720px;
  }

  .hv2-footer__trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hv2-footer__trust-item {
    border-right: none;
    border-bottom: 1px solid var(--hv2-border);
    padding: 22px 16px;
  }

  .hv2-footer__trust-item:nth-child(odd) {
    border-right: 1px solid var(--hv2-border);
  }

  .hv2-footer__trust-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .hv2-footer__columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .hv2-footer__brand {
    grid-column: 1 / -1;
  }

  .hv2-footer__newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .hv2-footer__newsletter-form {
    max-width: 100%;
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Responsive — Mobile (≤768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .home-v2 {
    --hv2-gutter: 16px;
  }

  .hv2-topbar__message {
    display: none;
  }

  .hv2-topbar__inner {
    justify-content: center;
  }

  .hv2-topbar__links {
    margin-left: 0;
    gap: 16px;
  }

  .hv2-header__inner {
    min-height: 60px;
  }

  .hv2-header__logo img {
    height: 32px;
  }

  .hv2-header__actions {
    gap: 8px;
  }

  .hv2-header__action {
    width: 36px;
    height: 36px;
  }

  .hv2-hero {
    min-height: 70vh;
  }

  .hv2-hero__content {
    padding: 60px var(--hv2-gutter);
  }

  .hv2-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hv2-hero__actions .hv2-btn {
    width: 100%;
    max-width: 280px;
  }

  .hv2-features__grid {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }

  .hv2-features__item {
    justify-content: flex-start;
    padding: 14px var(--hv2-gutter);
    border-right: none;
    border-bottom: 1px solid rgba(139, 115, 85, 0.12);
  }

  .hv2-features__item:nth-child(odd) {
    border-right: none;
  }

  .hv2-features__item:last-child {
    border-bottom: none;
  }

  .hv2-bestsellers,
  .hv2-combo,
  .hv2-categories,
  .hv2-story,
  .hv2-reviews,
  .hv2-instagram {
    padding: 56px 0;
  }

  .home-v2 .hv2-section-title {
    margin-bottom: 32px;
  }

  .hv2-bestsellers__slider {
    padding: 0 36px;
  }

  .hv2-bestsellers__track .hv2-product-card {
    flex: 0 0 calc(100% - 0px);
  }

  .hv2-bestsellers__arrow {
    width: 34px;
    height: 34px;
    top: 32%;
  }

  .hv2-combo__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .hv2-combo__circle {
    width: 64px;
    height: 64px;
    font-size: 22px;
  }

  .hv2-categories__grid {
    grid-template-columns: 1fr;
  }

  .hv2-category-card {
    aspect-ratio: 16 / 9;
  }

  .hv2-story {
    padding: 64px 0;
  }

  .hv2-story__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hv2-story__accent {
    top: 16px;
    left: -12px;
    right: 12px;
    bottom: -16px;
  }

  .hv2-story__content h2 {
    max-width: none;
  }

  .hv2-story__lead {
    max-width: none;
    margin-bottom: 32px;
  }

  .hv2-story__features {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 24px;
  }

  .hv2-reviews__track {
    grid-template-columns: 1fr;
  }

  .hv2-instagram__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    max-width: none;
  }

  .hv2-cta-banner {
    min-height: 320px;
  }

  .hv2-footer__trust-grid {
    grid-template-columns: 1fr;
  }

  .hv2-footer__trust-item {
    justify-content: flex-start;
    border-right: none !important;
    border-bottom: 1px solid var(--hv2-border);
    padding: 18px 0;
  }

  .hv2-footer__trust-item:last-child {
    border-bottom: none;
  }

  .hv2-footer__columns {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .hv2-footer__brand p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hv2-footer__social {
    justify-content: center;
  }

  .hv2-footer__newsletter-form {
    flex-direction: column;
  }

  .hv2-footer__newsletter-form input[type='email'] {
    border-right: 1px solid var(--hv2-border);
  }

  .hv2-footer__newsletter-form .hv2-btn {
    width: 100%;
  }

  .hv2-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    padding: 16px var(--hv2-gutter);
  }

  .hv2-footer__bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   Search results
   -------------------------------------------------------------------------- */
.hv2-search-hero {
  padding: 28px 0 32px;
}

.hv2-search-hero .hv2-cat-hero__overlay {
  display: none;
}

.hv2-search-hero .hv2-cat-hero__content {
  position: relative;
  padding-top: 8px;
  padding-bottom: 0;
}

.hv2-cat-breadcrumb__current {
  color: var(--hv2-dark);
  font-weight: 500;
}

.hv2-search-refine {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 520px;
  margin-top: 20px;
}

.hv2-search-refine__input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  height: 44px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid var(--hv2-border);
  border-radius: 0;
  background: var(--hv2-white);
  font-family: var(--hv2-font-sans);
  font-size: 14px;
  color: var(--hv2-text);
  box-shadow: none;
}

.hv2-search-refine__input:focus {
  outline: none;
  border-color: var(--hv2-dark);
}

.hv2-search-refine__btn {
  flex-shrink: 0;
  min-width: 96px;
}

.hv2-search-body {
  padding: 28px var(--hv2-gutter) 64px;
}

.hv2-search-main {
  width: 100%;
}

.hv2-search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 56px 24px;
  margin-bottom: 24px;
  border: 1px dashed var(--hv2-border);
  background: var(--hv2-white);
  text-align: center;
}

.hv2-search-empty__icon svg {
  width: 40px;
  height: 40px;
  color: var(--hv2-muted);
}

.hv2-search-empty__title {
  margin: 0;
  font-family: var(--hv2-font-serif);
  font-size: 1.5rem;
  color: var(--hv2-dark);
}

.hv2-search-empty__text {
  margin: 0 0 8px;
  max-width: 420px;
  font-size: 14px;
  color: var(--hv2-muted);
}

.hv2-search .hv2-cat-grid {
  margin-top: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 18px;
}

.hv2-search .hv2-cat-card .hv2-product-card__image-wrap {
  aspect-ratio: 1 / 1;
}

.hv2-search .hv2-cat-card .hv2-product-card__body {
  padding: 10px 10px 12px;
}

.hv2-search .hv2-cat-card .hv2-product-card__name,
.hv2-search .hv2-cat-card .ad {
  font-size: 13px;
  line-height: 1.35;
}

.hv2-search .hv2-cat-card .hv2-product-card__price {
  font-size: 14px;
  margin-top: 6px;
}

.hv2-search .hv2-cat-card .hv2-product-card__price del {
  font-size: 11px;
  margin-bottom: 2px;
}

.hv2-search .hv2-cat-card .discountPrice {
  font-size: 14px !important;
}

.hv2-search .hv2-cat-card__discount {
  bottom: 8px;
  left: 8px;
}

.hv2-search .hv2-cat-card__discount-badge {
  padding: 3px 6px;
  font-size: 10px;
}

.hv2-search .hv2-cat-card__badges {
  top: 8px;
  left: 8px;
}

.hv2-search .hv2-cat-card__badges img {
  max-height: 32px;
}

.hv2-search .hv2-cat-card .hizli_favoriler_btn svg {
  width: 16px;
  height: 16px;
}

.hv2-search .hv2-cat-card__actions {
  margin-top: 10px;
  gap: 4px;
}

.hv2-search .hv2-cat-card__qty-btn {
  min-width: 28px !important;
  width: 28px !important;
  padding: 0 !important;
  font-size: 12px !important;
}

.hv2-search .hv2-cat-card__qty-input {
  width: 36px !important;
  min-width: 36px !important;
  font-size: 12px !important;
  padding: 0 4px !important;
}

.hv2-search .hv2-cat-card__add,
.hv2-search .hv2-cat-card__view {
  padding: 8px 6px !important;
  font-size: 10px !important;
  letter-spacing: 0.06em !important;
}

@media (max-width: 1200px) {
  .hv2-search .hv2-cat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .hv2-search .hv2-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 576px) {
  .hv2-search .hv2-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin: 0;
    gap: 12px;
  }

  .hv2-search .hv2-cat-card__actions {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hv2-search-refine {
    flex-direction: column;
    align-items: stretch;
  }

  .hv2-search-refine__btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Category page
   -------------------------------------------------------------------------- */
.hv2-cat-hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  background: linear-gradient(135deg, #ebe6df 0%, #f7f5f2 100%);
  overflow: hidden;
}

.hv2-cat-hero.has-image {
  min-height: 280px;
  align-items: flex-end;
}

.hv2-cat-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hv2-cat-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.72) 0%, rgba(26, 26, 26, 0.25) 55%, rgba(26, 26, 26, 0.08) 100%);
}

.hv2-cat-hero:not(.has-image) .hv2-cat-hero__overlay {
  background: transparent;
}

.hv2-cat-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px var(--hv2-gutter) 24px;
}

.hv2-cat-hero.has-image .hv2-cat-hero__content {
  padding: 40px var(--hv2-gutter) 36px;
}

.hv2-cat-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.hv2-cat-breadcrumb__link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color var(--hv2-transition);
}

.hv2-cat-breadcrumb__link:hover {
  color: #fff;
}

.hv2-cat-breadcrumb__sep {
  color: rgba(255, 255, 255, 0.45);
}

.hv2-cat-hero:not(.has-image) .hv2-cat-breadcrumb__link {
  color: var(--hv2-muted);
}

.hv2-cat-hero:not(.has-image) .hv2-cat-breadcrumb__link:hover {
  color: var(--hv2-dark);
}

.hv2-cat-hero:not(.has-image) .hv2-cat-breadcrumb__sep {
  color: var(--hv2-border);
}

.hv2-cat-hero__title {
  font-family: var(--hv2-font-serif);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 500;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.1;
}

.hv2-cat-hero:not(.has-image) .hv2-cat-hero__title {
  color: var(--hv2-dark);
}

.hv2-cat-hero__meta {
  margin: 0;
}

.hv2-cat-hero__count {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hv2-cat-hero:not(.has-image) .hv2-cat-hero__count {
  color: var(--hv2-muted);
}

.hv2-cat-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  padding-top: 28px;
  padding-bottom: 64px;
  align-items: start;
}

.hv2-cat-filter-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 20px;
  padding: 12px 16px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
  color: var(--hv2-dark);
  font-family: var(--hv2-font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.hv2-cat-filter-toggle svg {
  width: 18px;
  height: 18px;
}

.hv2-cat-sidebar {
  position: sticky;
  top: 100px;
  background: var(--hv2-white);
  border: 1px solid var(--hv2-border);
  padding: 24px 20px;
}

.hv2-cat-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hv2-border);
}

.hv2-cat-sidebar__head h2 {
  font-family: var(--hv2-font-serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
}

.hv2-cat-sidebar__close {
  display: none;
  border: none;
  background: none;
  font-size: 28px;
  line-height: 1;
  color: var(--hv2-muted);
  cursor: pointer;
}

.hv2-cat-filter {
  border-bottom: 1px solid var(--hv2-border);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.hv2-cat-filter:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hv2-cat-filter__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
  border: none;
  background: none;
  font-family: var(--hv2-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hv2-dark);
  cursor: pointer;
  text-align: left;
}

.hv2-cat-filter__toggle::after {
  content: '+';
  font-size: 16px;
  font-weight: 400;
  color: var(--hv2-muted);
  transition: transform var(--hv2-transition);
}

.hv2-cat-filter__toggle.is-open::after {
  content: '−';
}

.hv2-cat-filter__list,
.hv2-cat-filter__options {
  display: none;
  padding: 4px 0 8px;
}

.hv2-cat-filter__list.is-open,
.hv2-cat-filter__options.is-open {
  display: block;
}

.hv2-cat-filter__list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.hv2-cat-filter__list li {
  margin: 0;
  padding: 0;
}

.hv2-cat-filter__list a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  color: var(--hv2-muted);
  text-decoration: none;
  transition: color var(--hv2-transition);
}

.hv2-cat-filter__list .kategori_secenekler a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  color: var(--hv2-muted);
  text-decoration: none;
}

.hv2-cat-filter__list a:hover {
  color: var(--hv2-accent);
}

.hv2-cat-checklist label,
.hv2-cat-sidebar .markalar label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px !important;
  color: var(--hv2-text) !important;
  font-weight: 400 !important;
  cursor: pointer;
}

.hv2-cat-checklist input,
.hv2-cat-sidebar .markalar input {
  accent-color: var(--hv2-dark);
}

.hv2-cat-main {
  min-width: 0;
}

.hv2-cat-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  margin-bottom: 28px;
  padding: 12px 18px;
  background: var(--hv2-white);
  border: 1px solid var(--hv2-border);
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.04);
}

.hv2-cat-toolbar__left,
.hv2-cat-toolbar__right {
  display: flex;
  align-items: center;
  min-height: 40px;
}

.hv2-cat-toolbar__right {
  justify-content: flex-end;
}

.hv2-cat-toolbar__group {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
}

.hv2-cat-toolbar__chips {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hv2-cat-toolbar__label {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding-right: 12px;
  border-right: 1px solid var(--hv2-border);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hv2-muted);
  flex-shrink: 0;
  line-height: 1;
}

.hv2-cat-sort,
.hv2-cat-toolbar select {
  min-width: 220px;
  height: 40px;
  margin: 0 !important;
  padding: 0 36px 0 14px;
  border: 1px solid var(--hv2-border);
  border-radius: 0;
  background-color: var(--hv2-bg);
  font-family: var(--hv2-font-sans);
  font-size: 13px;
  font-weight: 500;
  line-height: 40px;
  color: var(--hv2-text);
  cursor: pointer;
  appearance: none;
  float: none !important;
  vertical-align: middle;
  outline: none;
  transition: border-color var(--hv2-transition), background var(--hv2-transition);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.hv2-cat-sort:hover,
.hv2-cat-sort:focus {
  border-color: var(--hv2-dark);
  background-color: var(--hv2-white);
}

.hv2-cat-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  min-height: 40px;
  padding: 0 16px;
  margin: 0 !important;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-bg);
  font-size: 12px;
  font-weight: 500;
  color: var(--hv2-text);
  line-height: 1 !important;
  float: none !important;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: border-color var(--hv2-transition), background var(--hv2-transition), color var(--hv2-transition), box-shadow var(--hv2-transition);
}

.hv2-cat-chip:hover {
  border-color: var(--hv2-dark);
  background: var(--hv2-white);
}

.hv2-cat-chip:has(input:checked) {
  border-color: var(--hv2-dark);
  background: var(--hv2-dark);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.12);
}

.hv2-cat-chip > span:first-child {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  float: none !important;
  color: inherit !important;
  vertical-align: middle !important;
}

.hv2-cat-chip input[type='checkbox'] {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--hv2-dark);
  cursor: pointer;
  vertical-align: middle;
}

.hv2-cat-chip:has(input:checked) input[type='checkbox'] {
  accent-color: #fff;
}

.hv2-cat-chip > span:last-child {
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.04em;
  line-height: 1;
}

.hv2-cat-subcats {
  display: none;
}

.hv2-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.hv2-cat-card.urunler_kutucuk {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hv2-cat-card .hv2-product-card__image-wrap {
  aspect-ratio: 3 / 4;
}

.hv2-cat-card__oos {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 6px 10px;
  background: rgba(26, 26, 26, 0.85);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hv2-cat-card .hv2-product-card__image-wrap .resim,
.hv2-cat-card.urunler_kutucuk .resim {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  display: block;
}

.hv2-cat-card__discount {
  position: absolute;
  top: auto;
  bottom: 12px;
  left: 12px;
  z-index: 2;
}

.hv2-cat-card__discount-badge {
  display: inline-block;
  padding: 5px 8px;
  background: var(--hv2-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.hv2-cat-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  bottom: auto;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: calc(100% - 56px);
  pointer-events: none;
}

.hv2-cat-card__badges img {
  max-height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.hv2-cat-card .markas,
.hv2-cat-card .kodu,
.hv2-cat-card .kategori_sepet_iskonto {
  display: none !important;
}

.hv2-cat-card .hizli_favoriler_btn {
  border: none;
  padding: 0;
}

.hv2-cat-card .hizli_favoriler_btn svg {
  width: 18px;
  height: 18px;
}

.hv2-cat-card .hv2-product-card__price {
  font-family: var(--hv2-font-serif);
  font-size: 17px;
  color: var(--hv2-dark);
}

.hv2-cat-card .hv2-product-card__price del {
  display: block;
  font-size: 13px;
  color: var(--hv2-muted);
  margin-bottom: 4px;
  text-decoration: line-through;
}

.hv2-cat-card .discountPrice {
  color: var(--hv2-dark) !important;
  font-size: 17px !important;
  font-weight: 500 !important;
}

.hv2-cat-card__actions {
  display: flex;
  align-items: stretch;
  gap: 6px;
  margin-top: 14px;
}

.hv2-cat-card__cart {
  flex: 1;
  min-width: 0;
  margin: 0;
}

.hv2-cat-card__qty {
  display: flex;
  align-items: stretch;
  gap: 0;
  float: none !important;
  clear: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

.hv2-cat-card__qty-btn,
.hv2-cat-card__qty-input {
  display: none !important;
}

.hv2-cat-card__add {
  flex: 1;
  width: 100% !important;
  min-width: 0;
  position: static !important;
  margin: 0 !important;
  padding: 12px 10px !important;
  background-color: var(--hv2-dark) !important;
  border-color: var(--hv2-dark) !important;
  color: var(--hv2-white) !important;
  font-family: var(--hv2-font-sans) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
}

.hv2-cat-card__add:hover {
  background-color: var(--hv2-accent) !important;
  border-color: var(--hv2-accent) !important;
}

.hv2-cat-card__view {
  flex: 1;
  min-width: 0;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 12px 10px !important;
  text-decoration: none !important;
  white-space: nowrap;
}

.hv2-cat-card .hizli_urune_git {
  display: inline-flex !important;
  text-decoration: none !important;
}

.hv2-cat-pagination {
  margin-top: 48px;
  text-align: center;
}

.hv2-cat-pagination a,
.hv2-cat-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  margin: 0 3px;
  padding: 0 10px;
  border: 1px solid var(--hv2-border);
  font-size: 13px;
  color: var(--hv2-text);
  text-decoration: none;
  transition: background var(--hv2-transition), border-color var(--hv2-transition), color var(--hv2-transition);
}

.hv2-cat-pagination a:hover {
  border-color: var(--hv2-dark);
  color: var(--hv2-dark);
}

.hv2-cat-desc {
  padding: 56px 0 72px;
  background: var(--hv2-white);
  border-top: 1px solid var(--hv2-border);
}

.hv2-cat-desc .hv2-container {
  max-width: 820px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--hv2-muted);
}

.hv2-cat-desc h1,
.hv2-cat-desc h2,
.hv2-cat-desc h3 {
  font-family: var(--hv2-font-serif);
  color: var(--hv2-dark);
  margin-top: 0;
}

@media (max-width: 992px) {
  .hv2-cat-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hv2-cat-filter-toggle {
    display: flex;
  }

  .hv2-cat-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 10001;
    width: min(320px, 88vw);
    transform: translateX(-105%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    box-shadow: var(--hv2-shadow-hover);
  }

  .hv2-cat-sidebar.is-open {
    transform: translateX(0);
  }

  .hv2-cat-sidebar__close {
    display: block;
  }

  body.hv2-cat-filter-open::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(26, 26, 26, 0.45);
  }

  .hv2-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .hv2-cat-hero__content {
    padding: 16px var(--hv2-gutter) 20px;
  }

  .hv2-cat-hero.has-image .hv2-cat-hero__content {
    padding: 32px var(--hv2-gutter) 28px;
  }

  .hv2-cat-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-height: 0;
    padding: 14px;
  }

  .hv2-cat-toolbar__left,
  .hv2-cat-toolbar__right {
    width: 100%;
    justify-content: stretch;
  }

  .hv2-cat-toolbar__group {
    width: 100%;
    flex-wrap: wrap;
  }

  .hv2-cat-toolbar__label {
    height: auto;
    padding-right: 0;
    border-right: none;
    width: 100%;
    margin-bottom: 2px;
  }

  .hv2-cat-sort,
  .hv2-cat-toolbar select {
    flex: 1;
    min-width: 0;
    width: 100%;
  }

  .hv2-cat-toolbar__chips {
    width: 100%;
  }

  .hv2-cat-chip {
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
    min-width: 0;
  }

  .hv2-cat-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .hv2-cat-card__actions {
    gap: 5px;
  }
}

/* --------------------------------------------------------------------------
   Product detail page
   -------------------------------------------------------------------------- */
.hv2-pdp {
  padding: 8px 0 80px;
  background: var(--hv2-bg);
}

.hv2-pdp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  padding: 14px 0 28px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hv2-pdp-breadcrumb__link {
  color: var(--hv2-muted);
  text-decoration: none;
  transition: color var(--hv2-transition);
}

.hv2-pdp-breadcrumb__link:hover {
  color: var(--hv2-dark);
}

.hv2-pdp-breadcrumb__sep {
  color: var(--hv2-muted);
  opacity: 0.45;
  font-weight: 300;
}

.hv2-pdp-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 72px;
}

.hv2-pdp-gallery,
.hv2-pdp-info {
  width: 100%;
  min-width: 0;
}

.hv2-pdp-gallery__frame {
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
  overflow: hidden;
  box-shadow: var(--hv2-shadow);
  transition: box-shadow var(--hv2-transition);
}

.hv2-pdp-gallery__frame:hover {
  box-shadow: var(--hv2-shadow-hover);
}

.hv2-pdp-gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  background: var(--hv2-white);
  border: none;
  overflow: hidden;
  display: block;
}

.hv2-pdp-gallery__main .hv2-pdp-gallery__hero,
.hv2-pdp-gallery__main .detay_resim {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: var(--hv2-white);
}

.hv2-pdp-gallery__widgets {
  display: flex !important;
  flex-wrap: nowrap;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--hv2-bg);
  border-top: 1px solid var(--hv2-border);
}

.hv2-pdp-gallery__widgets .widget {
  flex: 1 1 0;
  float: none !important;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  margin: 0 !important;
  padding: 10px 12px !important;
  border: none !important;
  border-right: 1px solid var(--hv2-border) !important;
  border-radius: 0 !important;
  background: transparent !important;
  text-align: left;
}

.hv2-pdp-gallery__widgets .widget:last-child {
  border-right: none !important;
}

.hv2-pdp-gallery__widgets .widget_baslik {
  font-size: 11px;
  line-height: 1.35;
  color: var(--hv2-text);
  letter-spacing: 0.02em;
}

.hv2-pdp-gallery__widgets .widget img {
  flex-shrink: 0;
  width: auto !important;
  height: 22px !important;
  max-width: 24px !important;
  object-fit: contain;
  display: block;
}

.hv2-pdp-gallery__hero {
  width: 100%;
  height: 100%;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: var(--hv2-white);
}

.hv2-pdp-gallery__thumbs {
  margin-top: 20px;
}

.hv2-pdp-gallery__thumb-track {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--hv2-border) transparent;
}

.hv2-pdp-gallery__thumb-track::-webkit-scrollbar {
  height: 4px;
}

.hv2-pdp-gallery__thumb-track::-webkit-scrollbar-thumb {
  background: var(--hv2-border);
  border-radius: 2px;
}

.hv2-pdp-gallery__thumb {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  border: 1px solid var(--hv2-border);
  overflow: hidden;
  background: var(--hv2-white);
  transition: border-color var(--hv2-transition), box-shadow var(--hv2-transition);
}

.hv2-pdp-gallery__thumb.active,
.hv2-pdp-gallery__thumb:hover {
  border-color: var(--hv2-dark);
  box-shadow: 0 0 0 1px var(--hv2-dark);
}

.hv2-pdp-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hv2-pdp-info__card {
  background: var(--hv2-white);
  border: 1px solid var(--hv2-border);
  padding: 36px 36px 32px;
  box-shadow: var(--hv2-shadow);
}

@media (min-width: 993px) {
  .hv2-pdp-info__card {
    position: sticky;
    top: 96px;
  }
}

.hv2-pdp-info__brand {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hv2-accent);
}

.home-v2 .hv2-pdp .hv2-pdp-info__title h1,
.hv2-pdp-info__title h1 {
  font-family: var(--hv2-font-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 500;
  line-height: 1.18;
  color: var(--hv2-dark);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.hv2-pdp-info__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 0;
  border-bottom: none;
}

.hv2-pdp-info__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-bg);
  font-size: 12px;
  color: var(--hv2-text);
}

.hv2-pdp-info__meta-item span:first-child {
  color: var(--hv2-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hv2-pdp-info__meta-item span:first-child::after {
  content: '·';
  margin-left: 8px;
  color: var(--hv2-border);
}

.hv2-pdp-price {
  margin-bottom: 0;
  padding: 20px 22px;
  background: linear-gradient(135deg, #f3efe9 0%, #faf8f5 100%);
  border: 1px solid var(--hv2-border);
}

.hv2-pdp-price__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  background: var(--hv2-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hv2-pdp-price__values {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}

.hv2-pdp-price .ud_eski_fiyat {
  font-size: 15px;
  color: var(--hv2-muted);
  text-decoration: line-through;
}

.hv2-pdp-price__current,
.hv2-pdp-price .ud_yeni_fiyat {
  font-family: var(--hv2-font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--hv2-dark);
}

.hv2-pdp-promo {
  margin: 16px 0 0;
  padding: 12px 16px;
  background: #fff;
  border: 1px dashed var(--hv2-accent);
  font-size: 13px;
  color: var(--hv2-text);
  line-height: 1.5;
}

.hv2-pdp-buy {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hv2-border);
}

.hv2-pdp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hv2-pdp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-bg);
  font-size: 12px;
  color: var(--hv2-text);
}

.hv2-pdp-badge img {
  flex-shrink: 0;
}

.hv2-pdp-buy__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.hv2-pdp-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
}

.hv2-pdp-qty__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--hv2-dark);
  text-decoration: none;
  transition: background var(--hv2-transition);
}

.hv2-pdp-qty__btn:hover {
  background: var(--hv2-bg);
}

.hv2-pdp-qty input {
  width: 48px !important;
  height: 40px;
  border: none !important;
  border-left: 1px solid var(--hv2-border) !important;
  border-right: 1px solid var(--hv2-border) !important;
  text-align: center;
  font-size: 14px;
  background: transparent;
}

.hv2-pdp-buy__icons {
  display: flex;
  gap: 8px;
}

.hv2-pdp-icon-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--hv2-border) !important;
  background: var(--hv2-white) !important;
  color: var(--hv2-dark) !important;
  text-decoration: none !important;
  transition: border-color var(--hv2-transition), color var(--hv2-transition);
}

.hv2-pdp-icon-btn:hover {
  border-color: var(--hv2-dark) !important;
  color: var(--hv2-accent) !important;
}

.hv2-pdp-buy__actions {
  display: flex;
  gap: 10px;
}

.hv2-pdp-buy__actions .sepete_ekle_btn,
.hv2-pdp-buy__actions .hemen_al_btn {
  flex: 1;
  width: auto !important;
  min-height: 50px !important;
  height: auto !important;
  position: static !important;
  margin: 0 !important;
  padding: 16px 24px !important;
  font-family: var(--hv2-font-sans) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  line-height: 1 !important;
  border-radius: 0 !important;
  background: var(--hv2-dark) !important;
  border: 1px solid var(--hv2-dark) !important;
  color: #fff !important;
  transition: background var(--hv2-transition), border-color var(--hv2-transition), transform var(--hv2-transition);
}

.hv2-pdp-buy__actions .sepete_ekle_btn:hover {
  background: var(--hv2-accent) !important;
  border-color: var(--hv2-accent) !important;
}

.hv2-pdp-buy__actions .hemen_al_btn {
  background: transparent !important;
  color: var(--hv2-dark) !important;
}

.hv2-pdp-buy__actions .hemen_al_btn:hover {
  background: var(--hv2-dark) !important;
  color: #fff !important;
}

/* Legacy StyleSheet overrides (scoped) */
.hv2-pdp .urun_bilgiler_kismi,
.hv2-pdp .urun_detay_aciklama_tab,
.hv2-pdp .ud_adi,
.hv2-pdp .ud_kod,
.hv2-pdp .ud_stok,
.hv2-pdp .ud_fiyat,
.hv2-pdp .ud_sepete_ekle_div,
.hv2-pdp .sepet_adet,
.hv2-pdp .sepet_btn {
  float: none !important;
  clear: none !important;
  width: auto !important;
  position: static !important;
}

.hv2-pdp .urun_detay_aciklama_tab {
  display: block !important;
  float: none !important;
  width: 100% !important;
  max-width: none !important;
}

.hv2-pdp .ud_sepete_ekle_div {
  margin-top: 24px !important;
  padding-top: 24px !important;
  border-top: 1px solid var(--hv2-border) !important;
}

.hv2-pdp .ud_markas {
  font-family: var(--hv2-font-sans) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: var(--hv2-accent) !important;
}

.hv2-pdp .ud_adi h1 {
  font-size: inherit !important;
  font-weight: inherit !important;
  color: inherit !important;
}

.hv2-pdp .ud_kod span,
.hv2-pdp .ud_stok span {
  float: none !important;
  display: inline !important;
  font-weight: 600 !important;
  color: var(--hv2-muted) !important;
  font-size: 10px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.hv2-pdp .hv2-pdp-info__meta-item span:first-child::after {
  content: '·' !important;
  margin-left: 8px;
  color: var(--hv2-border);
}

.hv2-pdp .ud_kod span:after,
.hv2-pdp .ud_stok span:after {
  content: '·' !important;
  margin-left: 8px;
  color: var(--hv2-border);
}

.hv2-pdp .ud_fiyat_indirim_yuzde {
  float: none !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  background: var(--hv2-dark) !important;
  padding: 5px 10px !important;
  margin: 0 0 10px !important;
}

.hv2-pdp .buyuk_resim > .hv2-pdp-gallery__hero,
.hv2-pdp .buyuk_resim > img.detay_resim {
  position: absolute;
  inset: 0;
  margin: 0 !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center;
}

.hv2-pdp .detay_resim {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.hv2-pdp .buyuk_resim {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  min-height: 0 !important;
  padding: 0 !important;
}

.hv2-pdp .buyuk_resim img:not(.hv2-pdp-gallery__hero):not(.detay_resim) {
  width: auto !important;
  max-width: 24px !important;
  height: 22px !important;
}

.hv2-pdp .widget_cerceve {
  clear: none !important;
}

.hv2-pdp-gallery__widgets.widget_cerceve,
.hv2-pdp .hv2-pdp-gallery__widgets .widget {
  float: none !important;
  margin-left: 0 !important;
  margin-top: 0 !important;
}

.hv2-pdp .sepet_adet {
  display: inline-flex !important;
  align-items: stretch !important;
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
}

.hv2-pdp .sepet_adet input[type='text'] {
  width: 48px !important;
  min-width: 48px !important;
  max-width: 48px !important;
  position: static !important;
  margin: 0 !important;
  border-radius: 0 !important;
  line-height: 40px !important;
  flex: 0 0 48px !important;
}

.hv2-pdp .sepet_arttir,
.hv2-pdp .sepet_dusur {
  position: static !important;
  float: none !important;
  margin: 0 !important;
  width: 40px !important;
  flex: 0 0 40px !important;
  border: none !important;
}

.hv2-pdp .sepet_btn {
  display: flex !important;
  width: 100% !important;
  margin-top: 0 !important;
  padding: 0 !important;
}

.hv2-pdp .sepete_ekle_btn,
.hv2-pdp .hemen_al_btn {
  width: auto !important;
  display: block !important;
}

.hv2-pdp .ud_detay_ekozellikler_pnl {
  display: flex !important;
  gap: 8px !important;
}

.hv2-pdp .ud_detay_ekozellikler_pnl i {
  margin: 0 !important;
  font-size: 16px !important;
  color: inherit !important;
}

.hv2-pdp-oos {
  margin-top: 16px;
  padding: 14px 16px;
  background: #fdf0ef;
  color: #9b2c2c;
  font-size: 14px;
}

.hv2-pdp-video {
  margin-top: 20px;
}

.hv2-pdp-video a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--hv2-accent);
  text-decoration: none;
}

.hv2-pdp-tabs {
  margin-bottom: 0;
  border: 1px solid var(--hv2-border);
  border-bottom: none;
  background: var(--hv2-white);
  box-shadow: var(--hv2-shadow);
}

.hv2-pdp .hv2-pdp-tabs.urun_detay_tabs_cerceve {
  width: 100% !important;
  height: auto !important;
  float: none !important;
  background: var(--hv2-white) !important;
  border: 1px solid var(--hv2-border) !important;
  border-bottom: none !important;
}

.hv2-pdp-tabs__nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.hv2-pdp-tabs__nav::-webkit-scrollbar {
  display: none;
}

.hv2-pdp-tabs__btn {
  float: none !important;
  width: auto !important;
  flex: 0 0 auto;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

.hv2-pdp .hv2-pdp-tabs__btn.urun_detay_tabs {
  width: auto !important;
}

.hv2-pdp .hv2-pdp-tabs__btn.urun_detay_tabs_aktif,
.hv2-pdp .hv2-pdp-tabs__btn.urun_detay_tabs_pasif {
  top: 0 !important;
  height: auto !important;
  background: transparent !important;
  border: none !important;
  border-right: none !important;
  border-left: none !important;
  border-top: none !important;
}

.hv2-pdp-tabs__btn a {
  display: block;
  padding: 18px 24px;
  font-family: var(--hv2-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hv2-muted) !important;
  text-decoration: none !important;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color var(--hv2-transition), border-color var(--hv2-transition);
}

.hv2-pdp-tabs__btn a:hover {
  color: var(--hv2-dark) !important;
}

.hv2-pdp-tabs__btn.urun_detay_tabs_aktif a {
  color: var(--hv2-dark) !important;
  border-bottom-color: var(--hv2-accent);
}

.hv2-pdp-tab-panel {
  background: var(--hv2-white);
  border: 1px solid var(--hv2-border);
  border-top: none;
  padding: 40px 36px;
  margin-bottom: 72px;
  box-shadow: var(--hv2-shadow);
}

.hv2-pdp-tab-panel.tabmenu_kapali {
  display: none;
}

.hv2-pdp-tab-content {
  font-size: 15px;
  line-height: 1.85;
  color: var(--hv2-text);
}

.hv2-pdp-tab-content img {
  max-width: 100%;
  height: auto;
}

.hv2-pdp-form baslik,
.hv2-pdp-form > span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--hv2-text);
}

.hv2-pdp-form input[type='text'],
.hv2-pdp-form textarea {
  width: 100%;
  max-width: 480px;
  margin-bottom: 16px;
  padding: 10px 12px;
  border: 1px solid var(--hv2-border);
  font-family: var(--hv2-font-sans);
  font-size: 14px;
}

.hv2-pdp-related {
  padding-top: 8px;
  margin-top: 8px;
}

.hv2-pdp-related .hv2-section-title {
  margin-bottom: 36px;
}

.hv2-pdp-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.hv2-pdp-related__card.urunler_kutucuk {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.hv2-pdp-related__card .markas {
  display: none;
}

.hv2-pdp-related__discount {
  position: absolute;
  top: 12px;
  left: 12px;
}

.hv2-pdp-related__discount .discountIcon_s1 {
  display: inline-block;
  padding: 4px 8px;
  background: var(--hv2-dark);
  color: #fff;
  font-size: 11px;
}

@media (max-width: 992px) {
  .hv2-pdp-main {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .hv2-pdp-gallery__main {
    aspect-ratio: 1;
    padding: 0;
  }

  .hv2-pdp-info__card {
    padding: 28px 24px 24px;
    position: static;
  }

  .hv2-pdp-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .hv2-pdp-buy__actions {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hv2-pdp-breadcrumb {
    padding: 10px 0 16px;
  }

  .hv2-pdp-info__meta {
    gap: 6px;
  }

  .hv2-pdp-info__meta-item {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
  }

  .hv2-pdp-gallery__widgets {
    flex-wrap: wrap;
  }

  .hv2-pdp-gallery__widgets .widget {
    flex: 1 1 100%;
    justify-content: flex-start;
    padding: 10px 14px !important;
    border-right: none !important;
    border-bottom: 1px solid var(--hv2-border) !important;
  }

  .hv2-pdp-gallery__widgets .widget:last-child {
    border-bottom: none !important;
  }

  .hv2-pdp-tabs__btn a {
    padding: 14px 16px;
    font-size: 11px;
  }

  .hv2-pdp-tab-panel {
    padding: 20px;
  }

  .hv2-pdp-related__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .hv2-pdp-buy__row {
    flex-direction: column;
    align-items: stretch;
  }
}

/* --------------------------------------------------------------------------
   Cart page
   -------------------------------------------------------------------------- */
.hv2-cart {
  padding: 8px 0 80px;
  background: var(--hv2-bg);
}

.hv2-cart-header {
  padding: 12px 0 28px;
}

.hv2-cart-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hv2-cart-breadcrumb__link {
  color: var(--hv2-muted);
  text-decoration: none;
  transition: color var(--hv2-transition);
}

.hv2-cart-breadcrumb__link:hover {
  color: var(--hv2-dark);
}

.hv2-cart-breadcrumb__sep {
  color: var(--hv2-muted);
  opacity: 0.45;
}

.hv2-cart-breadcrumb__current {
  color: var(--hv2-dark);
}

.hv2-cart-header__title {
  font-family: var(--hv2-font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--hv2-dark);
  margin: 0;
}

.hv2-cart-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px 22px;
  border: 1px solid var(--hv2-border);
  background: linear-gradient(135deg, #fff 0%, #f3efe9 100%);
  box-shadow: var(--hv2-shadow);
}

.hv2-cart-promo h1 {
  margin: 0 0 4px;
  font-family: var(--hv2-font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--hv2-text);
}

.hv2-cart-promo h2 {
  margin: 0;
  font-family: var(--hv2-font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--hv2-dark);
}

.hv2-cart-promo i {
  font-size: 28px;
  color: var(--hv2-accent);
}

.hv2-cart-layout,
.hv2-cart-layout.table {
  display: block !important;
  width: 100% !important;
  border: none !important;
  padding: 0 !important;
}

.hv2-cart-layout__row,
.hv2-cart-layout > .col {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}

.hv2-cart-main,
.hv2-cart-layout__row > .cell:first-child {
  min-width: 0;
}

.hv2-cart-sidebar,
.hv2-cart .sepet_sag_kisim {
  width: auto !important;
  text-align: left !important;
}

.hv2-cart-sidebar__inner {
  position: sticky;
  top: 96px;
  padding: 24px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
  box-shadow: var(--hv2-shadow);
}

.hv2-cart-sidebar__cta,
.hv2-cart .siparisi_tamamla_btn {
  width: 100% !important;
  margin: 0 0 10px !important;
  padding: 16px 20px !important;
  font-family: var(--hv2-font-sans) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  line-height: 1 !important;
  border-radius: 0 !important;
  background: var(--hv2-dark) !important;
  border: 1px solid var(--hv2-dark) !important;
  color: #fff !important;
  cursor: pointer;
  transition: background var(--hv2-transition), border-color var(--hv2-transition);
}

.hv2-cart-sidebar__cta.hv2-btn--outline,
.hv2-cart .siparisi_tamamla_btn.hv2-btn--outline {
  background: transparent !important;
  color: var(--hv2-dark) !important;
}

.hv2-cart-sidebar__cta:hover,
.hv2-cart .siparisi_tamamla_btn:hover {
  background: var(--hv2-accent) !important;
  border-color: var(--hv2-accent) !important;
  color: #fff !important;
}

.hv2-cart-table,
.hv2-cart-main .mobil_dzn > .table {
  display: block !important;
  width: 100% !important;
  margin-bottom: 24px !important;
  border: 1px solid var(--hv2-border) !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: var(--hv2-white);
  box-shadow: var(--hv2-shadow);
  overflow: hidden;
}

.hv2-cart-table > .col,
.hv2-cart-main .mobil_dzn > .table > .col {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 100px 120px 44px;
  gap: 12px 16px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--hv2-border);
}

.hv2-cart-table > .col:last-child,
.hv2-cart-main .mobil_dzn > .table > .col:last-child {
  border-bottom: none;
}

.hv2-cart-table__head,
.hv2-cart-table > .col:first-child {
  background: var(--hv2-bg);
  padding: 12px 20px;
}

.hv2-cart .sepet_baslik {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hv2-muted);
}

.hv2-cart .sepet_baslik i {
  display: none;
}

.hv2-cart .ss_miktar_baslik,
.hv2-cart .ss_tutar_baslik {
  text-align: center;
}

.hv2-cart .mobil_dzn .cell,
.hv2-cart-table .cell {
  display: block !important;
  float: none !important;
  width: auto !important;
  padding: 0 !important;
  border: none !important;
  vertical-align: middle !important;
}

.hv2-cart-item__link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none !important;
  color: var(--hv2-dark) !important;
}

.hv2-cart-item__img {
  flex-shrink: 0;
  width: 72px !important;
  height: 72px !important;
  object-fit: cover;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
  float: none !important;
}

.hv2-cart-item__info,
.hv2-cart .sepet_urun_bilgileri {
  display: block !important;
  float: none !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
  color: var(--hv2-text) !important;
}

.hv2-cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
}

.hv2-cart-qty__btn,
.hv2-cart .sepet_miktar_btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 34px !important;
  height: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--hv2-dark) !important;
  font-size: 16px !important;
  line-height: 1 !important;
  cursor: pointer;
  transition: background var(--hv2-transition);
}

.hv2-cart-qty__btn:hover,
.hv2-cart .sepet_miktar_btn:hover {
  background: var(--hv2-bg) !important;
}

.hv2-cart-qty__val {
  min-width: 36px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border-left: 1px solid var(--hv2-border);
  border-right: 1px solid var(--hv2-border);
  line-height: 34px;
}

.hv2-cart-item__total,
.hv2-cart .sepet_toplam_tutar {
  text-align: center !important;
  font-family: var(--hv2-font-serif);
  font-size: 17px !important;
  font-weight: 500 !important;
  color: var(--hv2-dark) !important;
}

.hv2-cart-item__remove {
  text-align: center;
}

.hv2-cart-item__remove-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--hv2-border);
  color: var(--hv2-muted) !important;
  text-decoration: none !important;
  transition: border-color var(--hv2-transition), color var(--hv2-transition);
}

.hv2-cart-item__remove-btn:hover {
  border-color: #c53030;
  color: #c53030 !important;
}

.hv2-cart .sepet_iskonto_orani_satir {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 6px;
  background: var(--hv2-dark) !important;
  color: #fff !important;
  border-radius: 0 !important;
  font-size: 10px;
  line-height: 1.4;
  width: auto !important;
  position: static !important;
}

.hv2-cart-summary,
.hv2-cart .sepet_toplam_sag {
  display: block !important;
  width: 100% !important;
  margin: 16px 0 0 !important;
  padding-top: 16px !important;
  border-top: 1px solid var(--hv2-border);
  font-size: 14px;
  line-height: 1.6;
}

.hv2-cart-summary .col,
.hv2-cart .sepet_toplam_sag .col {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px 12px;
  padding: 6px 0;
}

.hv2-cart-summary .col:last-child,
.hv2-cart .sepet_toplam_sag .col:last-child {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--hv2-border);
  font-family: var(--hv2-font-serif);
  font-size: 18px;
  font-weight: 500;
}

.hv2-cart-summary .cell,
.hv2-cart .sepet_toplam_sag .cell {
  display: block !important;
  text-align: left !important;
}

.hv2-cart-coupon,
.hv2-cart-agreement,
.hv2-cart .indirim_kupon {
  margin-top: 16px !important;
  margin-bottom: 0 !important;
  padding: 16px !important;
  border: 1px solid var(--hv2-border) !important;
  background: var(--hv2-bg) !important;
  border-radius: 0 !important;
}

.hv2-cart-coupon__label,
.hv2-cart .indirim_kupon span {
  display: block;
  margin-bottom: 10px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hv2-muted) !important;
}

.hv2-cart-coupon__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.hv2-cart-coupon__input,
.hv2-cart .indirim_kupon input[type='text'] {
  width: 100% !important;
  height: 42px !important;
  padding: 0 12px !important;
  border: 1px solid var(--hv2-border) !important;
  background: var(--hv2-white) !important;
  font-family: var(--hv2-font-sans);
  font-size: 14px;
}

.hv2-cart-coupon__btn,
.hv2-cart .indirim_kupon input[type='submit'] {
  height: 42px !important;
  padding: 0 18px !important;
  border: 1px solid var(--hv2-dark) !important;
  background: var(--hv2-dark) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--hv2-transition);
}

.hv2-cart-coupon__btn:hover,
.hv2-cart .indirim_kupon input[type='submit']:hover {
  background: var(--hv2-accent) !important;
  border-color: var(--hv2-accent) !important;
}

.hv2-cart-campaign,
.hv2-cart .kampanya-sepet-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border: 1px dashed var(--hv2-accent);
  background: #fff;
  font-size: 13px;
  line-height: 1.5;
  color: var(--hv2-text);
}

.hv2-cart-campaign i {
  color: var(--hv2-accent);
  margin-top: 2px;
}

.hv2-cart-agreement .bilgilendirme_chk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--hv2-text);
}

.hv2-cart-agreement__text {
  flex: 1;
  min-width: 0;
}

.hv2-cart-agreement__link {
  color: var(--hv2-accent) !important;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: color var(--hv2-transition);
}

.hv2-cart-agreement__link:hover {
  color: var(--hv2-dark) !important;
}

.hv2-cart-agreement .bilgilendirme_chk input {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 3px 0 0 !important;
  accent-color: var(--hv2-dark);
}

.hv2-contract-modal {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hv2-contract-modal[hidden] {
  display: none !important;
}

.hv2-contract-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(4px);
}

.hv2-contract-modal__card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(860px, 100%);
  max-height: min(88vh, 920px);
  background: var(--hv2-white);
  border: 1px solid var(--hv2-border);
  box-shadow: 0 24px 64px rgba(26, 26, 26, 0.2);
}

.hv2-contract-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--hv2-border);
  background: var(--hv2-bg);
}

.hv2-contract-modal__title {
  margin: 0;
  font-family: var(--hv2-font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--hv2-dark);
}

.hv2-contract-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
  color: var(--hv2-dark);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--hv2-transition);
}

.hv2-contract-modal__close:hover {
  border-color: var(--hv2-dark);
}

.hv2-contract-modal__body {
  flex: 1;
  min-height: 0;
  background: var(--hv2-white);
}

.hv2-contract-modal__frame {
  display: block;
  width: 100%;
  height: min(72vh, 760px);
  border: none;
  background: var(--hv2-white);
}

body.hv2-contract-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .hv2-contract-modal {
    padding: 12px;
  }

  .hv2-contract-modal__frame {
    height: min(78vh, 720px);
  }
}

.hv2-cart-empty,
.hv2-cart .sepet_bos_uyarisi_ltr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 280px;
  margin: 0 !important;
  padding: 48px 24px !important;
  text-align: center;
  color: var(--hv2-muted) !important;
  font-weight: 400 !important;
  border: 1px dashed var(--hv2-border);
  background: var(--hv2-white);
}

.hv2-cart-empty i,
.hv2-cart .sepet_bos_uyarisi_ltr i {
  font-size: 42px;
  color: var(--hv2-border);
}

.hv2-cart-empty p {
  margin: 0;
  font-family: var(--hv2-font-serif);
  font-size: 22px;
  color: var(--hv2-dark);
}

.hv2-cart-auth {
  max-width: 920px;
  margin: 0 auto;
}

.hv2-cart-auth__intro {
  margin-bottom: 24px;
  text-align: center;
}

.hv2-cart-auth__intro p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--hv2-muted);
}

.hv2-cart-auth__grid,
.hv2-cart .uyelik_tables {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  width: 100% !important;
}

.hv2-cart-auth__card,
.hv2-cart .uyelik_cells,
.hv2-cart .uyelik_table_rows {
  display: flex !important;
  flex-direction: column;
  width: auto !important;
  float: none !important;
  height: 100%;
  margin: 0 !important;
  padding: 28px 28px 24px !important;
  border: 1px solid var(--hv2-border) !important;
  border-radius: 0 !important;
  background: var(--hv2-white) !important;
  box-shadow: var(--hv2-shadow);
}

.hv2-cart-auth__title,
.hv2-cart .uyelik_cells h1,
.hv2-cart .uyelik_cells h2 {
  margin: 0 0 6px !important;
  font-family: var(--hv2-font-serif) !important;
  font-size: 1.65rem !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  color: var(--hv2-dark) !important;
}

.hv2-cart-auth__subtitle {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--hv2-muted);
}

.hv2-cart-auth__field {
  margin-bottom: 14px;
}

.hv2-cart-auth__field label,
.hv2-cart .uyelik_cells label {
  display: block !important;
  margin: 0 0 6px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  line-height: 1.4 !important;
  color: var(--hv2-muted) !important;
}

.hv2-cart-auth__input,
.hv2-cart .uyelik_textbox,
.hv2-cart .sepet_textbox {
  width: 100% !important;
  max-width: none !important;
  height: 44px !important;
  padding: 0 14px !important;
  border: 1px solid var(--hv2-border) !important;
  border-radius: 0 !important;
  font-family: var(--hv2-font-sans) !important;
  font-size: 14px !important;
  color: var(--hv2-dark) !important;
  background: var(--hv2-white) !important;
  box-shadow: none !important;
  outline: none;
  transition: border-color var(--hv2-transition);
}

.hv2-cart-auth__input:focus,
.hv2-cart .uyelik_textbox:focus {
  border-color: var(--hv2-dark) !important;
}

.hv2-cart-auth__input:-webkit-autofill,
.hv2-cart .uyelik_textbox:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--hv2-white) inset !important;
  -webkit-text-fill-color: var(--hv2-dark) !important;
}

.hv2-cart-auth__password {
  position: relative;
}

.hv2-cart-auth__password .hv2-cart-auth__input,
.hv2-cart-auth__password .uyelik_textbox {
  padding-right: 44px !important;
}

.hv2-cart-auth__toggle,
.hv2-cart .sifre_goster_uyelik {
  position: absolute !important;
  top: 50% !important;
  right: 10px !important;
  left: auto !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 !important;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--hv2-muted);
  font-size: 16px !important;
  cursor: pointer;
  transition: color var(--hv2-transition);
}

.hv2-cart-auth__toggle:hover {
  color: var(--hv2-dark);
}

.hv2-cart-auth__submit,
.hv2-cart .uye_ol_btn {
  width: 100% !important;
  margin: 8px 0 0 !important;
  padding: 14px 20px !important;
  border: 1px solid var(--hv2-dark) !important;
  border-radius: 0 !important;
  background: var(--hv2-dark) !important;
  color: #fff !important;
  font-family: var(--hv2-font-sans) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  line-height: 1 !important;
  cursor: pointer;
  transition: background var(--hv2-transition), border-color var(--hv2-transition);
}

.hv2-cart-auth__submit--outline,
.hv2-cart-auth__card:last-child .uye_ol_btn {
  background: transparent !important;
  color: var(--hv2-dark) !important;
}

.hv2-cart-auth__submit:hover,
.hv2-cart .uye_ol_btn:hover {
  background: var(--hv2-accent) !important;
  border-color: var(--hv2-accent) !important;
  color: #fff !important;
}

.hv2-cart-auth__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--hv2-border);
}

.hv2-cart-auth__link,
.hv2-cart-auth__links a,
.hv2-cart .sepet_sifremi_unuttum_div a {
  font-size: 13px !important;
  font-weight: 500;
  color: var(--hv2-muted) !important;
  text-decoration: none !important;
  background: none !important;
  border: none !important;
  cursor: pointer;
  transition: color var(--hv2-transition);
}

.hv2-cart-auth__link:hover,
.hv2-cart-auth__links a:hover {
  color: var(--hv2-dark) !important;
}

.hv2-cart-auth__links-sep {
  color: var(--hv2-border);
}

.hv2-cart-auth__checks {
  display: grid;
  gap: 10px;
  margin: 4px 0 8px;
}

.hv2-cart-auth__check,
.hv2-cart .uyelik_chk {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: var(--hv2-text) !important;
}

.hv2-cart-auth__check input[type='checkbox'],
.hv2-cart .uyelik_chk input[type='checkbox'] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 2px 0 0 !important;
  accent-color: var(--hv2-dark);
}

.hv2-cart .cerceve_1200px {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.hv2-cart-checkout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hv2-cart-checkout__section {
  padding: 24px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
  box-shadow: var(--hv2-shadow);
}

.hv2-cart-checkout__heading,
.hv2-cart-checkout .sepet_baslik {
  margin: 0 0 20px !important;
  padding: 0 0 14px !important;
  border: none !important;
  border-bottom: 1px solid var(--hv2-border) !important;
  background: transparent !important;
  font-family: var(--hv2-font-serif) !important;
  font-size: 1.35rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--hv2-dark) !important;
}

.hv2-cart-checkout__heading i,
.hv2-cart-checkout .sepet_baslik i {
  display: none;
}

.hv2-cart-checkout__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}

.hv2-cart-checkout__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.hv2-cart-checkout__field--full {
  grid-column: 1 / -1;
}

.hv2-cart-checkout__field label,
.hv2-cart-checkout__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--hv2-muted);
  line-height: 1.4;
}

.hv2-cart-checkout__input,
.hv2-cart-checkout .sepet_textbox,
.hv2-cart-checkout select.sepet_textbox {
  width: 100% !important;
  max-width: none !important;
  min-height: 44px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 14px !important;
  border: 1px solid var(--hv2-border) !important;
  border-radius: 0 !important;
  background: var(--hv2-white) !important;
  font-family: var(--hv2-font-sans) !important;
  font-size: 14px !important;
  color: var(--hv2-dark) !important;
  box-sizing: border-box;
  outline: none;
  transition: border-color var(--hv2-transition);
}

.hv2-cart-checkout__input:focus,
.hv2-cart-checkout .sepet_textbox:focus,
.hv2-cart-checkout select.sepet_textbox:focus {
  border-color: var(--hv2-dark) !important;
}

.hv2-cart-checkout__textarea,
.hv2-cart-checkout textarea.sepet_textbox {
  min-height: 120px !important;
  height: auto !important;
  padding: 12px 14px !important;
  resize: vertical;
  line-height: 1.5;
}

.hv2-cart-checkout__select,
.hv2-cart-checkout select {
  appearance: auto;
  cursor: pointer;
}

.hv2-cart-checkout__radios,
.hv2-cart-checkout .sepet_hesap_turu_chk {
  display: flex !important;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin: 0 !important;
}

.hv2-cart-checkout__radios label,
.hv2-cart-checkout .sepet_hesap_turu_chk label {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--hv2-text) !important;
  line-height: 1.4 !important;
}

.hv2-cart-checkout .table {
  display: block !important;
  width: 100% !important;
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
  box-shadow: var(--hv2-shadow);
}

.hv2-cart-checkout .col {
  display: grid !important;
  grid-template-columns: 140px minmax(0, 1fr) !important;
  gap: 8px 12px;
  align-items: center;
  padding: 8px 0;
}

.hv2-cart-checkout .col .cell:nth-child(2) {
  display: none !important;
}

.hv2-cart-checkout .mobil_dzn .col,
.hv2-cart-checkout .mobil_dzn .cell {
  display: block !important;
  width: auto !important;
}

.hv2-cart-checkout .cell:first-child {
  font-size: 13px;
  font-weight: 500;
  color: var(--hv2-muted);
}

.hv2-cart .sepet_odeme_tur_btn {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 !important;
  padding: 16px 18px;
  border: 1px solid var(--hv2-border);
  border-radius: 0 !important;
  background: var(--hv2-white);
  color: var(--hv2-dark);
  font-family: var(--hv2-font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3 !important;
  cursor: pointer;
  transition: border-color var(--hv2-transition), background var(--hv2-transition), color var(--hv2-transition);
}

.hv2-cart-payment {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hv2-cart-payment__section {
  padding: 24px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
  box-shadow: var(--hv2-shadow);
}

.hv2-cart-payment__heading {
  margin: 0 0 8px;
  font-family: var(--hv2-font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--hv2-dark);
}

.hv2-cart-payment__intro {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--hv2-muted);
}

.hv2-cart-payment__methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hv2-cart-payment__method--active,
.hv2-cart .sepet_odeme_tur_btn.hv2-cart-payment__method--active {
  border-color: var(--hv2-dark) !important;
  background: var(--hv2-dark) !important;
  color: #fff !important;
}

.hv2-cart-payment__method:hover,
.hv2-cart .sepet_odeme_tur_btn:hover {
  border-color: var(--hv2-dark);
  background: var(--hv2-bg);
}

.hv2-cart-payment__method--active:hover,
.hv2-cart .sepet_odeme_tur_btn.hv2-cart-payment__method--active:hover {
  background: var(--hv2-accent) !important;
  border-color: var(--hv2-accent) !important;
  color: #fff !important;
}

.hv2-cart-payment__content {
  min-width: 0;
}

.hv2-cart-payment__panel {
  padding: 24px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
  box-shadow: var(--hv2-shadow);
}

.hv2-cart-payment__panel-title {
  margin: 0 0 8px;
  font-family: var(--hv2-font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--hv2-dark);
}

.hv2-cart-payment__panel-note {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--hv2-muted);
}

.hv2-cart-payment__iframe-wrap {
  width: 100%;
  min-height: 720px;
  overflow: visible;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
}

.hv2-cart-payment__iframe,
.hv2-cart-payment__iframe-wrap iframe {
  display: block;
  width: 100% !important;
  min-height: 720px;
  height: 720px;
  border: none !important;
  overflow: hidden;
}

.hv2-cart-payment__notice {
  margin-bottom: 24px;
  padding: 16px 18px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-bg);
  font-size: 14px;
  line-height: 1.7;
  color: var(--hv2-text);
}

.hv2-cart-payment__notice p {
  margin: 0 0 8px;
}

.hv2-cart-payment__notice p:last-child {
  margin-bottom: 0;
}

.hv2-cart-payment__banks-title {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hv2-muted);
}

.hv2-cart-payment__banks,
.hv2-cart .havale_bildirim_bankalar_radio {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 20px !important;
}

.hv2-cart-payment__banks label,
.hv2-cart .havale_bildirim_bankalar_radio label {
  display: block !important;
  margin: 0 !important;
  padding: 14px 16px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
  cursor: pointer;
  transition: border-color var(--hv2-transition), box-shadow var(--hv2-transition);
}

.hv2-cart-payment__banks input[type='radio'],
.hv2-cart .havale_bildirim_bankalar_radio input[type='radio'] {
  margin-right: 8px;
  accent-color: var(--hv2-dark);
}

.hv2-cart-payment__banks label:has(input:checked),
.hv2-cart .havale_bildirim_bankalar_radio label:has(input:checked) {
  border-color: var(--hv2-dark);
  box-shadow: inset 0 0 0 1px var(--hv2-dark);
}

.hv2-cart .odemele_bilgileri_havale_bankalar {
  margin: 8px 0 0 !important;
  font-size: 13px;
  line-height: 1.55;
  color: var(--hv2-text);
}

.hv2-cart .odemele_bilgileri_havale_bankalar b {
  color: var(--hv2-dark);
}

.hv2-cart-payment__submit,
.hv2-cart .havale_odeme_bildirim_btn {
  width: 100% !important;
  max-width: 360px;
  margin: 0 !important;
  padding: 14px 20px !important;
  border: 1px solid var(--hv2-dark) !important;
  border-radius: 0 !important;
  background: var(--hv2-dark) !important;
  color: #fff !important;
  font-family: var(--hv2-font-sans) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  line-height: 1 !important;
  cursor: pointer;
  transition: background var(--hv2-transition), border-color var(--hv2-transition);
}

.hv2-cart-payment__submit:hover,
.hv2-cart .havale_odeme_bildirim_btn:hover {
  background: var(--hv2-accent) !important;
  border-color: var(--hv2-accent) !important;
}

.hv2-cart .sepet_asama_3 {
  max-width: 560px;
  margin: 0 auto 32px;
  padding: 48px 32px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
  box-shadow: var(--hv2-shadow);
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: var(--hv2-text);
}

.hv2-cart .sepet_asama_3 i {
  font-size: 56px;
  margin-bottom: 16px;
  color: #2f855a;
}

.hv2-cart-shipping {
  width: 100%;
  margin: 8px 0 24px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
  box-shadow: var(--hv2-shadow);
  overflow: hidden;
}

.hv2-cart-shipping__header {
  padding: 12px 20px;
  border-bottom: 1px solid var(--hv2-border);
  background: var(--hv2-bg);
}

.hv2-cart-shipping__options {
  padding: 16px 20px 20px;
}

.hv2-cart-shipping__list,
.hv2-cart-shipping__list.kargo_firmalari_radiolist {
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.hv2-cart-shipping__list > span {
  display: block !important;
  position: relative;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hv2-cart-shipping__list > span[data-price]::after {
  content: attr(data-price);
  position: absolute;
  right: 16px;
  top: 50%;
  z-index: 2;
  font-family: var(--hv2-font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--hv2-dark);
  transform: translateY(-50%);
  pointer-events: none;
}

.hv2-cart-shipping__list input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  pointer-events: none;
}

.hv2-cart-shipping__list label {
  position: relative;
  display: flex !important;
  align-items: center;
  width: 100% !important;
  min-height: 56px;
  margin: 0 !important;
  padding: 14px 112px 14px 48px !important;
  border: 1px solid var(--hv2-border) !important;
  background: var(--hv2-white);
  font-family: var(--hv2-font-sans) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  color: var(--hv2-dark) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: border-color var(--hv2-transition), background var(--hv2-transition), box-shadow var(--hv2-transition);
}

.hv2-cart-shipping__list label::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border: 2px solid var(--hv2-border);
  border-radius: 50%;
  background: var(--hv2-white);
  transition: border-color var(--hv2-transition);
}

.hv2-cart-shipping__list label::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--hv2-dark);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity var(--hv2-transition), transform var(--hv2-transition);
}

.hv2-cart-shipping__list label:hover {
  border-color: var(--hv2-accent) !important;
  background: var(--hv2-bg);
}

.hv2-cart-shipping__list input[type="radio"]:checked + label {
  border-color: var(--hv2-dark) !important;
  background: var(--hv2-bg);
  box-shadow: inset 0 0 0 1px var(--hv2-dark);
}

.hv2-cart-shipping__list input[type="radio"]:checked + label::before {
  border-color: var(--hv2-dark);
}

.hv2-cart-shipping__list input[type="radio"]:checked + label::after {
  opacity: 1;
  transform: scale(1);
}

.hv2-cart-shipping__list .kargo_firmalari_table {
  display: none !important;
}

.hv2-cart-upsell {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--hv2-border);
}

.hv2-cart-upsell .hv2-section-title {
  margin-bottom: 28px;
}

.hv2-cart-upsell__viewport {
  overflow-x: auto;
  overflow-y: visible;
  padding: 4px 0 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--hv2-border) transparent;
}

.hv2-cart-upsell__viewport::-webkit-scrollbar {
  height: 4px;
}

.hv2-cart-upsell__viewport::-webkit-scrollbar-thumb {
  background: var(--hv2-border);
  border-radius: 2px;
}

.hv2-cart-upsell__track {
  display: flex;
  gap: 16px;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  padding-bottom: 8px;
}

.hv2-cart-upsell__card,
.hv2-cart-upsell .kasaonu,
.hv2-cart-upsell .urunler_kutucuk {
  display: flex;
  flex-direction: column;
  flex: 0 0 268px;
  width: 268px !important;
  min-width: 268px;
  height: auto !important;
  min-height: 0;
  scroll-snap-align: start;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
  box-shadow: var(--hv2-shadow);
  transition: box-shadow var(--hv2-transition), border-color var(--hv2-transition);
}

.hv2-cart-upsell__card:hover {
  border-color: var(--hv2-dark);
  box-shadow: var(--hv2-shadow-hover);
  transform: none;
}

.hv2-cart-upsell__card.hv2-product-card,
.hv2-cart-upsell__card.hv2-product-card:hover {
  transform: none !important;
}

.hv2-cart-upsell__card .hv2-product-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--hv2-bg);
}

.hv2-cart-upsell__card .hv2-product-card__image-wrap img,
.hv2-cart-upsell__card .resim,
.hv2-cart-upsell .kasaonu .resim {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  display: block;
  transition: transform var(--hv2-transition);
}

.hv2-cart-upsell__card:hover .hv2-product-card__image-wrap img {
  transform: scale(1.04);
}

.hv2-cart-upsell__discount {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
}

.hv2-cart-upsell__discount .discountIcon_s1 {
  display: inline-block;
  padding: 4px 8px;
  background: var(--hv2-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.hv2-cart-upsell__card .hv2-product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 14px 16px 16px;
  text-align: left !important;
  overflow: visible !important;
}

.hv2-cart-upsell__card .markas,
.hv2-cart-upsell__card .hv2-product-card__body .markas {
  display: none !important;
}

.hv2-cart-upsell__card .hv2-product-card__name,
.hv2-cart-upsell__card .ad {
  float: none !important;
  clear: both !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  overflow: visible !important;
  display: block !important;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  -webkit-box-orient: unset !important;
  font-family: var(--hv2-font-sans) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  color: var(--hv2-dark) !important;
  word-break: break-word;
}

.hv2-cart-upsell__card .hv2-product-card__name a,
.hv2-cart-upsell__card .ad a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.hv2-cart-upsell__card .hv2-product-card__name a:hover {
  color: var(--hv2-accent);
}

.hv2-cart-upsell__card .hv2-product-card__price,
.hv2-cart-upsell__card .productPrice {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 4px;
  width: 100% !important;
  margin: 0 0 14px !important;
  float: none !important;
  clear: both !important;
  position: static !important;
  overflow: visible !important;
}

.hv2-cart-upsell__old-wrap,
.hv2-cart-upsell__old-wrap .regularPrice,
.hv2-cart-upsell__card .regularPrice {
  display: block !important;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

.hv2-cart-upsell__old-wrap .regularPrice span,
.hv2-cart-upsell__card .regularPrice span {
  font-size: 12px;
  color: var(--hv2-muted);
  text-decoration: line-through;
}

.hv2-cart-upsell__card .discountPrice {
  display: block !important;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

.hv2-cart-upsell__card .discountPrice,
.hv2-cart-upsell__card .discountPrice span {
  font-family: var(--hv2-font-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3 !important;
  color: var(--hv2-dark) !important;
  white-space: nowrap;
}

.hv2-cart-upsell__card .discountIcon,
.hv2-cart-upsell__card .discountIcon.tip {
  display: none !important;
}

.hv2-cart-upsell__card .hv2-product-card__btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.hv2-cart-upsell .urun_detay_benzerler {
  display: contents;
}

.hv2-cart .mobil_dzn {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
}

.hv2-cart .sepet_cerceve {
  padding-top: 0 !important;
  width: 100% !important;
}

@media (max-width: 992px) {
  .hv2-cart-layout__row,
  .hv2-cart-layout > .col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hv2-cart-sidebar__inner {
    position: static;
  }

  .hv2-cart-table > .col,
  .hv2-cart-main .mobil_dzn > .table > .col {
    grid-template-columns: minmax(0, 1fr) 88px 96px 36px;
    gap: 10px;
    padding: 14px 12px;
  }

  .hv2-cart-auth {
    max-width: none;
  }

  .hv2-cart-auth__grid,
  .hv2-cart .uyelik_tables {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hv2-cart-auth__card,
  .hv2-cart .uyelik_cells {
    padding: 22px 20px 20px !important;
  }

  .hv2-cart-checkout__fields {
    grid-template-columns: 1fr;
  }

  .hv2-cart-payment__methods {
    grid-template-columns: 1fr;
  }

  .hv2-cart-payment__banks,
  .hv2-cart .havale_bildirim_bankalar_radio {
    grid-template-columns: 1fr;
  }

  .hv2-cart-payment__iframe,
  .hv2-cart-payment__iframe-wrap iframe {
    min-height: 640px;
    height: 640px;
  }

  .hv2-cart-payment__iframe-wrap {
    min-height: 640px;
  }
}

@media (max-width: 640px) {
  .hv2-cart-table__head .ss_miktar_baslik,
  .hv2-cart-table__head .ss_tutar_baslik,
  .hv2-cart-table__head .ss_sil_baslik {
    display: none;
  }

  .hv2-cart-table > .col,
  .hv2-cart-main .mobil_dzn > .table > .col {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      'product product'
      'qty price';
  }

  .hv2-cart-item__product {
    grid-area: product;
  }

  .hv2-cart-item__qty {
    grid-area: qty;
  }

  .hv2-cart-item__price {
    grid-area: price;
    text-align: right !important;
  }

  .hv2-cart-item__remove {
    position: absolute;
    top: 14px;
    right: 12px;
  }

  .hv2-cart-table > .col.sepet_satirlar,
  .hv2-cart-item {
    position: relative;
  }

  .hv2-cart-promo {
    flex-direction: column;
    text-align: center;
  }

  .hv2-cart-promo i {
    display: none;
  }

  .hv2-cart-upsell__card,
  .hv2-cart-upsell .kasaonu,
  .hv2-cart-upsell .urunler_kutucuk {
    flex: 0 0 78vw;
    width: 78vw !important;
    min-width: 78vw;
  }
}

/* --------------------------------------------------------------------------
   404 page
   -------------------------------------------------------------------------- */
.hv2-404 {
  padding: 72px 0 96px;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.hv2-404__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.hv2-404__code {
  font-family: var(--hv2-font-serif);
  font-size: clamp(6rem, 18vw, 10rem);
  line-height: 1;
  color: var(--hv2-border);
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}

.hv2-404__title {
  font-family: var(--hv2-font-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 500;
  color: var(--hv2-dark);
  margin: 0 0 16px;
}

.hv2-404__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--hv2-muted);
  margin: 0 0 32px;
}

.hv2-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.hv2-404__links-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hv2-muted);
  margin-bottom: 16px;
}

.hv2-404__links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: center;
}

.hv2-404__links-list a {
  font-size: 14px;
  color: var(--hv2-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--hv2-transition), color var(--hv2-transition);
}

.hv2-404__links-list a:hover {
  color: var(--hv2-dark);
  border-bottom-color: var(--hv2-dark);
}

@media (max-width: 576px) {
  .hv2-404 {
    padding: 48px 0 72px;
  }

  .hv2-404__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hv2-404__actions .hv2-btn {
    width: 100%;
  }

  .hv2-404__links-list {
    flex-direction: column;
    gap: 12px;
  }
}

/* --------------------------------------------------------------------------
   Cookie consent (KVKK)
   -------------------------------------------------------------------------- */
.hv2-cookie {
  --cookie-bg: #ffffff;
  --cookie-text: #2d2d2d;
  --cookie-muted: #6b6b6b;
  --cookie-border: #e8e4df;
  --cookie-dark: #1a1a1a;
  --cookie-accent: #8b7355;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hv2-cookie.is-hidden {
  display: none;
}

.hv2-cookie__bar {
  background: var(--cookie-bg);
  border-top: 1px solid var(--cookie-border);
  box-shadow: 0 -8px 32px rgba(26, 26, 26, 0.1);
}

.hv2-cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px;
}

.hv2-cookie__title {
  margin: 0 0 6px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--cookie-dark);
}

.hv2-cookie__text {
  margin: 0;
  max-width: 720px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--cookie-muted);
}

.hv2-cookie__text a {
  color: var(--cookie-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hv2-cookie__text a:hover {
  color: var(--cookie-dark);
}

.hv2-cookie__actions,
.hv2-cookie__panel-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hv2-cookie__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.hv2-cookie__btn--primary {
  background: var(--cookie-dark);
  border-color: var(--cookie-dark);
  color: #fff;
}

.hv2-cookie__btn--primary:hover {
  background: #333;
  border-color: #333;
}

.hv2-cookie__btn--ghost {
  background: transparent;
  border-color: var(--cookie-border);
  color: var(--cookie-dark);
}

.hv2-cookie__btn--ghost:hover {
  border-color: var(--cookie-dark);
}

.hv2-cookie__overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
  z-index: 1;
}

.hv2-cookie__panel {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 2;
  width: min(560px, calc(100vw - 32px));
}

.hv2-cookie__panel-card {
  background: var(--cookie-bg);
  border: 1px solid var(--cookie-border);
  box-shadow: 0 16px 48px rgba(26, 26, 26, 0.18);
  padding: 24px;
}

.hv2-cookie__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.hv2-cookie__panel-head h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--cookie-dark);
}

.hv2-cookie__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--cookie-border);
  background: transparent;
  color: var(--cookie-dark);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.hv2-cookie__close:hover {
  border-color: var(--cookie-dark);
}

.hv2-cookie__options {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.hv2-cookie__option {
  padding: 14px 16px;
  border: 1px solid var(--cookie-border);
  background: #f7f5f2;
}

.hv2-cookie__option-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.hv2-cookie__option-top strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--cookie-dark);
}

.hv2-cookie__option p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--cookie-muted);
}

.hv2-cookie__badge {
  display: inline-block;
  padding: 4px 8px;
  background: var(--cookie-dark);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hv2-cookie__switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.hv2-cookie__switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.hv2-cookie__switch-ui {
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: #d8d2cb;
  transition: background 0.3s ease;
  position: relative;
}

.hv2-cookie__switch-ui::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.hv2-cookie__switch input:checked + .hv2-cookie__switch-ui {
  background: var(--cookie-dark);
}

.hv2-cookie__switch input:checked + .hv2-cookie__switch-ui::after {
  transform: translateX(20px);
}

.hv2-cookie__panel-actions {
  justify-content: flex-end;
}

body.hv2-cookie-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .hv2-cookie__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px 16px;
  }

  .hv2-cookie__actions {
    width: 100%;
  }

  .hv2-cookie__btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
  }

  .hv2-cookie__btn[data-cookie-action='accept'] {
    flex: 1 1 100%;
  }

  .hv2-cookie__panel {
    bottom: 12px;
  }

  .hv2-cookie__panel-card {
    padding: 20px 16px;
  }

  .hv2-cookie__panel-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hv2-cookie__panel-actions .hv2-cookie__btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Login modal
   -------------------------------------------------------------------------- */
.hv2-header__action--login {
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.hv2-login-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hv2-login-modal[hidden] {
  display: none !important;
}

.hv2-login-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(4px);
}

.hv2-login-modal__card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 32px 28px 28px;
  background: var(--hv2-white);
  border: 1px solid var(--hv2-border);
  box-shadow: 0 24px 64px rgba(26, 26, 26, 0.18);
}

.hv2-login-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--hv2-border);
  background: transparent;
  color: var(--hv2-dark);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--hv2-transition);
}

.hv2-login-modal__close:hover {
  border-color: var(--hv2-dark);
}

.hv2-login-modal__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hv2-accent);
}

.hv2-login-modal__title {
  margin: 0 0 8px;
  font-family: var(--hv2-font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--hv2-dark);
}

.hv2-login-modal__subtitle {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--hv2-muted);
}

.hv2-login-modal__error {
  display: block;
  margin-bottom: 16px;
  padding: 10px 12px;
  background: #fdf0ef;
  border: 1px solid #f0c9c6;
  color: #9b2c2c;
  font-size: 13px;
}

.hv2-login-modal__field {
  display: block;
  margin-bottom: 16px;
}

.hv2-login-modal__field span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--hv2-text);
}

.hv2-login-modal__input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
  font-family: var(--hv2-font-sans);
  font-size: 14px;
  color: var(--hv2-text);
  transition: border-color var(--hv2-transition);
}

.hv2-login-modal__input:focus {
  outline: none;
  border-color: var(--hv2-dark);
}

.hv2-login-modal__submit {
  width: 100%;
  margin-top: 8px;
}

.hv2-login-modal__links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--hv2-border);
  font-size: 13px;
}

.hv2-login-modal__links a {
  color: var(--hv2-accent);
  text-decoration: none;
}

.hv2-login-modal__links a:hover {
  color: var(--hv2-dark);
  text-decoration: underline;
}

.hv2-login-modal__google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
  padding: 12px 16px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-bg);
  color: var(--hv2-dark);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color var(--hv2-transition), background var(--hv2-transition);
}

.hv2-login-modal__google:hover {
  border-color: var(--hv2-dark);
  background: var(--hv2-white);
}

body.hv2-login-open {
  overflow: hidden;
}

@media (max-width: 576px) {
  .hv2-login-modal {
    padding: 16px;
    align-items: flex-end;
  }

  .hv2-login-modal__card {
    padding: 24px 20px 20px;
  }
}

/* --------------------------------------------------------------------------
   Account (Hesabım)
   -------------------------------------------------------------------------- */
.hv2-account {
  background: var(--hv2-bg);
}

.hv2-account .hv2-container {
  max-width: var(--hv2-container);
  margin: 0 auto;
  padding: 32px var(--hv2-gutter) 64px;
}

.hv2-account-header {
  margin-bottom: 28px;
}

.hv2-account-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
}

.hv2-account-breadcrumb__link {
  color: var(--hv2-muted);
  text-decoration: none;
  transition: color var(--hv2-transition);
}

.hv2-account-breadcrumb__link:hover {
  color: var(--hv2-dark);
}

.hv2-account-breadcrumb__sep {
  color: var(--hv2-border);
}

.hv2-account-breadcrumb__current {
  color: var(--hv2-dark);
  font-weight: 500;
}

.hv2-account-header__title {
  margin: 0;
  font-family: var(--hv2-font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--hv2-dark);
}

.hv2-account-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.hv2-account-sidebar {
  position: sticky;
  top: 96px;
}

.hv2-account-nav {
  padding: 8px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
  box-shadow: var(--hv2-shadow);
}

.hv2-account-nav__item {
  border-bottom: 1px solid var(--hv2-border);
}

.hv2-account-nav__item:last-child {
  border-bottom: none;
}

.hv2-account-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--hv2-text);
  text-decoration: none;
  transition: color var(--hv2-transition), background var(--hv2-transition);
}

.hv2-account-nav__link i {
  width: 16px;
  text-align: center;
  color: var(--hv2-muted);
  transition: color var(--hv2-transition);
}

.hv2-account-nav__link:hover {
  color: var(--hv2-dark);
  background: var(--hv2-bg);
}

.hv2-account-nav__link:hover i {
  color: var(--hv2-accent);
}

.hv2-account-nav__item.is-active .hv2-account-nav__link {
  color: var(--hv2-dark);
  font-weight: 600;
  background: var(--hv2-bg);
}

.hv2-account-nav__item.is-active .hv2-account-nav__link i {
  color: var(--hv2-accent);
}

.hv2-account-nav__item--logout .hv2-account-nav__link {
  color: #9a4a4a;
}

.hv2-account-nav__item--logout .hv2-account-nav__link:hover {
  background: #fdf5f5;
}

.hv2-account-main {
  min-width: 0;
  padding: 28px 32px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
  box-shadow: var(--hv2-shadow);
}

.hv2-account .hesabim_sayfasi,
.hv2-account .hesabim_div {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hv2-account-section__title,
.hv2-account .hesabim_h2 {
  margin: 0 0 10px !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  font-family: var(--hv2-font-serif) !important;
  font-size: 1.5rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--hv2-dark) !important;
}

.hv2-account-section__intro,
.hv2-account .hesabim_onizleme {
  margin: 0 0 24px !important;
  max-width: 640px;
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: var(--hv2-muted) !important;
}

.hv2-account-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hv2-account-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.hv2-account-card,
.hv2-account .hesabim_kutucuk {
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  justify-content: center;
  gap: 10px;
  width: 100% !important;
  min-height: 88px;
  margin: 0 !important;
  padding: 16px 12px !important;
  float: none !important;
  border: 1px solid var(--hv2-border) !important;
  background: var(--hv2-white) !important;
  box-shadow: none !important;
  text-align: center !important;
  transition: border-color var(--hv2-transition), box-shadow var(--hv2-transition), transform var(--hv2-transition);
}

.hv2-account-card-link:hover .hv2-account-card,
.hv2-account-card-link:hover .hesabim_kutucuk {
  border-color: var(--hv2-dark) !important;
  box-shadow: var(--hv2-shadow-hover) !important;
  transform: translateY(-2px);
}

.hv2-account-card i,
.hv2-account .hesabim_kutucuk i {
  display: block;
  width: 100%;
  margin: 0 !important;
  font-size: 32px !important;
  line-height: 1;
  text-align: center !important;
  color: var(--hv2-accent) !important;
}

.hv2-account-card span,
.hv2-account .hesabim_kutucuk span {
  display: block;
  width: 100%;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.35;
  text-align: center !important;
  color: var(--hv2-dark) !important;
}

.hv2-account-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 280px;
  padding: 40px 24px;
  border: 1px dashed var(--hv2-border);
  background: var(--hv2-bg);
  text-align: center;
}

.hv2-account-empty__icon {
  font-size: 36px;
  color: var(--hv2-accent);
}

.hv2-account-empty__title {
  margin: 0;
  font-family: var(--hv2-font-serif);
  font-size: 1.35rem;
  color: var(--hv2-dark);
}

.hv2-account-empty__text {
  margin: 0;
  max-width: 360px;
  font-size: 14px;
  color: var(--hv2-muted);
}

.hv2-account .table {
  display: block !important;
  width: 100% !important;
  border: none !important;
}

.hv2-account .uyelik_bilgileri_col,
.hv2-account .sifre_guncelle {
  display: grid !important;
  grid-template-columns: minmax(120px, 160px) minmax(0, 1fr);
  gap: 8px 16px;
  align-items: center;
  margin-bottom: 16px !important;
  width: 100% !important;
}

.hv2-account .uyelik_bilgileri_col .cell:nth-child(2),
.hv2-account .sifre_guncelle .cell:nth-child(2) {
  display: none !important;
}

.hv2-account .uyelik_bilgileri_col .cell:first-child,
.hv2-account .sifre_guncelle .cell:first-child {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--hv2-muted) !important;
  width: auto !important;
}

.hv2-account .hesabim_txt,
.hv2-account input[type="text"],
.hv2-account input[type="password"],
.hv2-account select,
.hv2-account textarea {
  width: 100% !important;
  max-width: none !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 10px 14px !important;
  border: 1px solid var(--hv2-border) !important;
  border-radius: 0 !important;
  background: var(--hv2-white) !important;
  font-family: var(--hv2-font-sans) !important;
  font-size: 14px !important;
  color: var(--hv2-text) !important;
  box-shadow: none !important;
}

.hv2-account textarea {
  min-height: 100px !important;
  resize: vertical;
}

.hv2-account .hesabim_txt:focus,
.hv2-account input:focus,
.hv2-account select:focus,
.hv2-account textarea:focus {
  outline: none !important;
  border-color: var(--hv2-dark) !important;
}

.hv2-account-submit {
  margin-top: 8px;
  min-width: 160px;
}

.hv2-account .siparis_table,
.hv2-account .favorilerim_table,
.hv2-account .siparis_detay_tablo {
  display: block !important;
  width: 100% !important;
  margin-top: 8px !important;
  border: 1px solid var(--hv2-border) !important;
  overflow: hidden;
}

.hv2-account .siparis_table > .col {
  display: grid !important;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 12px;
  padding: 14px 16px;
  align-items: center;
  border-bottom: 1px solid var(--hv2-border);
}

.hv2-account .favorilerim_table > .col {
  display: grid !important;
  grid-template-columns: 90px minmax(0, 1.5fr) minmax(0, 0.8fr) 80px;
  gap: 12px;
  padding: 14px 16px;
  align-items: center;
  border-bottom: 1px solid var(--hv2-border);
}

.hv2-account .siparis_detay_tablo > .col {
  display: grid !important;
  grid-template-columns: 80px minmax(0, 1fr) 80px;
  gap: 12px;
  padding: 14px 16px;
  align-items: center;
  border-bottom: 1px solid var(--hv2-border);
}

.hv2-account .siparis_baslik,
.hv2-account .siparis_baslik_detay,
.hv2-account .favorilerim_table_baslik {
  background: var(--hv2-bg) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hv2-muted) !important;
  line-height: 1.4 !important;
}

.hv2-account .siparis_satirlar,
.hv2-account .siparis_satirlar_detay {
  line-height: 1.5 !important;
  color: var(--hv2-text) !important;
  background: transparent !important;
}

.hv2-account .siparis_satirlar:nth-child(2n+2),
.hv2-account .siparis_satirlar_detay:nth-child(2n+2) {
  background: transparent !important;
}

.hv2-account .siparis_satirlar:hover,
.hv2-account .favorilerim_table > .col:not(.favorilerim_table_baslik):hover {
  background: var(--hv2-bg) !important;
}

.hv2-account .siparis_satirlar a {
  color: var(--hv2-accent) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.hv2-account .siparis_satirlar a:hover {
  color: var(--hv2-dark) !important;
  text-decoration: underline !important;
}

.hv2-account .favorilerim_table img {
  width: 72px !important;
  height: 72px !important;
  object-fit: cover;
  border: 1px solid var(--hv2-border);
}

.hv2-account .favoriler_cell i {
  color: var(--hv2-muted) !important;
  cursor: pointer;
  transition: color var(--hv2-transition);
}

.hv2-account .favoriler_cell i:hover {
  color: #c0392b !important;
}

.hv2-account .genel_table.siparisler_detay_adres {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 20px 0 24px;
  padding: 20px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-bg);
}

.hv2-account .genel_table.siparisler_detay_adres .genel_row {
  display: grid !important;
  grid-template-columns: 72px 1fr;
  gap: 8px;
  align-items: start;
}

.hv2-account .genel_table.siparisler_detay_adres .genel_cell:nth-child(2) {
  display: none !important;
}

.hv2-account .genel_table.siparisler_detay_adres .genel_cell:first-child {
  font-size: 12px;
  font-weight: 600;
  color: var(--hv2-muted);
}

.hv2-account .siparis_detay_tablo[style*="float: right"] {
  float: none !important;
  width: 100% !important;
  max-width: 360px !important;
  margin-left: auto !important;
  margin-top: 20px !important;
}

.hv2-account .siparis_detay_tablo[style*="float: right"] > .col {
  grid-template-columns: 1fr auto 100px !important;
}

.hv2-account .adres_defterim_tbl {
  width: 100% !important;
  border-collapse: collapse !important;
  border: 1px solid var(--hv2-border) !important;
}

.hv2-account .adres_defterim_tbl thead th {
  padding: 12px 14px !important;
  border-bottom: 1px solid var(--hv2-border) !important;
  background: var(--hv2-bg) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hv2-muted) !important;
  text-align: left !important;
}

.hv2-account .adres_defterim_tbl tbody td {
  padding: 12px 14px !important;
  border-bottom: 1px solid var(--hv2-border) !important;
  font-size: 14px !important;
  color: var(--hv2-text) !important;
  vertical-align: middle !important;
}

.hv2-account .adres_defterim_tbl tbody tr:hover td {
  background: var(--hv2-bg);
}

.hv2-account .dataTables_wrapper {
  margin-top: 16px;
}

.hv2-account .dataTables_wrapper .dataTables_filter input,
.hv2-account .dataTables_wrapper .dataTables_length select {
  min-height: 36px;
  padding: 6px 10px;
  border: 1px solid var(--hv2-border);
  background: var(--hv2-white);
  font-family: var(--hv2-font-sans);
  font-size: 13px;
}

.hv2-account .dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 6px 10px !important;
  border: 1px solid var(--hv2-border) !important;
  background: var(--hv2-white) !important;
  color: var(--hv2-text) !important;
}

.hv2-account .dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: var(--hv2-dark) !important;
  border-color: var(--hv2-dark) !important;
  color: var(--hv2-white) !important;
}

.hv2-account .hesabim_sol_menu {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}

.hv2-account .hesabim_sol_menu_secenekler {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

@media (max-width: 992px) {
  .hv2-account-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hv2-account-sidebar {
    position: static;
  }

  .hv2-account-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0;
  }

  .hv2-account-nav__item {
    border-right: 1px solid var(--hv2-border);
  }

  .hv2-account-nav__item:nth-child(2n) {
    border-right: none;
  }

  .hv2-account-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hv2-account-main {
    padding: 24px 20px;
  }

  .hv2-account .siparis_table > .col,
  .hv2-account .favorilerim_table > .col {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hv2-account .siparis_baslik,
  .hv2-account .favorilerim_table_baslik {
    display: none !important;
  }

  .hv2-account .genel_table.siparisler_detay_adres {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hv2-account .hv2-container {
    padding: 24px 16px 48px;
  }

  .hv2-account-nav {
    grid-template-columns: 1fr;
  }

  .hv2-account-nav__item {
    border-right: none !important;
  }

  .hv2-account-cards {
    grid-template-columns: 1fr;
  }

  .hv2-account .uyelik_bilgileri_col,
  .hv2-account .sifre_guncelle {
    grid-template-columns: 1fr;
  }
}
