.cc_K0NqjoILrr_crzYts7FUF .velora-header {
  width: 100%;
  position: relative; /* Shopify gibi — scroll ile gidiyor, layout shift yok */
  z-index: 200;
  background: #fff;
  font-family: var(--site-font, inherit);
}

/* ── DESKTOP: nav bar scroll up'ta fixed olarak tepeden kayıyor (Shopify stili) ── */
@media (min-width: 761px) {
  .velora-header--nav-visible .velora-header__nav-bar,
.cc_K0NqjoILrr_crzYts7FUF .velora-header--nav-hiding .velora-header__nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--velora-header-bg, #ffffff);
    border-bottom: 1px solid #eeeeee;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
    will-change: transform;
  }

  /* Fixed nav bar'ın kapladığı alanı koru */
  .velora-header--nav-visible,
.cc_K0NqjoILrr_crzYts7FUF .velora-header--nav-hiding {
    padding-bottom: var(--velora-nav-h, 54px);
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header--nav-visible .velora-header__nav-bar {
    animation: velora-nav-slide-down 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header--nav-hiding .velora-header__nav-bar {
    animation: velora-nav-slide-up 420ms cubic-bezier(0.4, 0, 0.2, 1) both;
  }
}

@keyframes velora-nav-slide-down {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes velora-nav-slide-up {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-100%); }
}

/* ── MOBİL: main row fixed olarak tepeden kayıyor (Shopify stili) ── */
@media (max-width: 760px) {
  /* Nav bar mobilde hiç görünmez */
.cc_K0NqjoILrr_crzYts7FUF .velora-header__nav-bar {
    display: none !important;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header--mobile-sticky .velora-header__main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--velora-header-bg, #ffffff);
    will-change: transform;
    transition: transform 240ms ease, box-shadow 240ms ease;
  }

  /* Sayfada fixed main'in kapladığı alanı koru */
.cc_K0NqjoILrr_crzYts7FUF .velora-header--mobile-sticky {
    min-height: var(--velora-mobile-h, 0px);
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header--mobile-visible .velora-header__main {
    transform: translateY(0);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header--mobile-hidden .velora-header__main {
    transform: translateY(-110%);
    box-shadow: none;
  }

  /* Sticky modda arama ve quick-links'i gizle */
.cc_K0NqjoILrr_crzYts7FUF .velora-header--mobile-sticky .velora-header__search {
    display: none !important;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header--mobile-sticky .velora-header__mobile-quick-links {
    display: none !important;
  }
}

.velora-header *,
.velora-header *::before,
.cc_K0NqjoILrr_crzYts7FUF .velora-header *::after {
  box-sizing: border-box;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
}

.velora-header__menu-toggle,
.velora-header__mobile-quick-links,
.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-menu {
  display: none;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__main {
  border-bottom: 1px solid #eeeeee;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__main .velora-header__inner {
  min-height: 74px;
  gap: 14px;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__logo {
  flex: 0 0 142px;
  min-width: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__logo-img {
  max-height: 90px;
  width: auto;
  display: block;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__logo-text {
  font-size: var(--vh-logo-fs, 32px);
  font-weight: 800;
  color: #f15f18;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

/* ── Notification bell wrap + dropdown ─────────────────────────────────────── */

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-wrap {
  position: relative;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notification {
  position: relative;
  width: 34px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vh-notif-icon, #f15f18);
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-empty {
  padding: 16px;
  font-size: 13px;
  color: #888;
  text-align: center;
}

/* Dropdown panel */
.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 400;
  width: 320px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

/* Backdrop */
.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-backdrop {
  display: none;
}

/* Mobilde: position:fixed ile viewport'a sabitle — parent pozisyonundan bağımsız */
@media (max-width: 760px) {
.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 399;
    background: rgba(0, 0, 0, 0.55);
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-dropdown {
    position: fixed !important;
    top: 58px !important;
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
  }
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-header {
  background: var(--vh-notif-header-bg, #f15f18);
  color: var(--vh-notif-header-text, #ffffff);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--vh-notif-header-text, #ffffff);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-list {
  display: flex;
  flex-direction: column;
}

/* Product row */
.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-product {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.12s ease;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-product:last-child {
  border-bottom: none;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-product:hover {
  background: #fafafa;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-product-img-wrap {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f5f5;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-product-img-placeholder {
  width: 100%;
  height: 100%;
  background: #eee;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-product-info {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-product-name {
  font-size: 13px;
  font-weight: 500;
  color: #111111;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-product-prices {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-product-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--vh-notif-price, #f15f18);
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-product-compare {
  font-size: 12px;
  font-weight: 400;
  color: #999999;
  text-decoration: line-through;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notification-count {
  position: absolute;
  top: 6px;
  right: 2px;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--vh-notif-badge, #f15f18);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__search {
  flex: 1 1 auto;
  min-width: 180px;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__account-btn {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1.5px solid #111111;
  border-radius: 999px;
  background: #fff;
  color: #111111;
  text-decoration: none;
  font-size: var(--vh-btn-fs, 14px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__account-btn:hover {
  background: #f6f6f6;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__nav-bar {
  border-bottom: 1px solid #eeeeee;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__nav-bar .velora-header__inner {
  justify-content: space-between;
  min-height: 54px;
  gap: 24px;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__quick-links {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__quick-link {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111111;
  padding: 0;
  transition: color 0.15s ease;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__quick-link:hover {
  color: var(--vh-ql-hover, #f15f18);
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__quick-link svg {
  flex-shrink: 0;
  color: currentColor;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__quick-link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__quick-link-label {
  font-size: 11px;
  color: #555555;
  font-weight: 400;
  white-space: nowrap;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__quick-link-main {
  font-size: var(--vh-nav-fs, 14px);
  font-weight: 700;
  color: #111111;
  white-space: nowrap;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-menu-head {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid #dedede;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-menu-head h2 {
  margin: 0;
  color: #111111;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #111111;
  cursor: pointer;
  padding: 0;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-menu-quick-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid #dedede;
  background: #fafafa;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.velora-header__mobile-nav-link,
.velora-header__mobile-summary,
.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-account {
  min-height: 42px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 0;
  border-bottom: 1px solid #dedede;
  color: #111111;
  background: #ffffff;
  font-family: inherit;
  font-size: var(--vh-nav-fs, 16px);
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-nav-link--parent {
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-nav-link--parent svg {
  flex-shrink: 0;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-back {
  min-height: 42px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 0;
  border-bottom: 1px solid #dedede;
  background: #f7f7f7;
  color: #111111;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-back svg {
  flex-shrink: 0;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-summary {
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-summary::-webkit-details-marker {
  display: none;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-summary svg {
  flex-shrink: 0;
  transition: transform 0.16s ease;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-details[open] .velora-header__mobile-summary svg {
  transform: rotate(90deg);
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-submenu {
  padding: 4px 0;
  border-bottom: 1px solid #dedede;
  background: #fbfbfb;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-submenu-link {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 18px 0 34px;
  color: #333333;
  font-size: var(--vh-nav-fs, 14px);
  text-decoration: none;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-account svg {
  flex-shrink: 0;
}

@media (max-width: 1320px) {
.cc_K0NqjoILrr_crzYts7FUF .velora-header__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 1080px) {
.cc_K0NqjoILrr_crzYts7FUF .velora-header__logo {
    flex-basis: auto;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__logo-text {
    font-size: 28px;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__quick-links {
    display: none;
  }
}

@media (max-width: 760px) {
.cc_K0NqjoILrr_crzYts7FUF .velora-header {
    position: sticky;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__main .velora-header__inner {
    min-height: auto;
    flex-wrap: wrap;
    gap: 0 8px;
    padding-right: 16px;
    padding-left: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__menu-toggle {
    order: 1;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    border: 0;
    background: transparent;
    color: #111111;
    cursor: pointer;
    padding: 0;
  }

  /* notif-WRAP flex child'dır, notification değil — order buraya verilmeli */
.cc_K0NqjoILrr_crzYts7FUF .velora-header__notif-wrap {
    order: 2;
    flex: 0 0 34px;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__notification {
    height: 40px;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__logo {
    order: 3;
    flex: 1 1 0;
    justify-content: center;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__logo-img {
    max-height: 80px;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__logo-text {
    font-size: var(--vh-logo-fs-m, 25px);
  }

  .velora-header__mobile-nav-link,
  .velora-header__mobile-summary,
.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-account {
    font-size: var(--vh-nav-fs-m, var(--vh-nav-fs, 16px));
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-submenu-link {
    font-size: var(--vh-nav-fs-m, var(--vh-nav-fs, 14px));
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__actions {
    order: 4;
    gap: 4px;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__search {
    order: 5;
    flex-basis: 100%;
    min-width: 0;
    margin-top: 10px;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__account-btn {
    display: inline-flex;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    gap: 0;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__account-btn span {
    display: none;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-quick-links {
    order: 6;
    width: calc(100% + 32px);
    flex: 0 0 calc(100% + 32px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    margin: 10px -16px 0;
    padding: 9px 16px;
    border-top: 1px solid #eeeeee;
    background: #fafafa;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__quick-link--compact {
    min-height: 38px;
    gap: 8px;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__quick-link--compact .velora-header__quick-link-label {
    font-size: 11px;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__quick-link--compact .velora-header__quick-link-main {
    font-size: var(--vh-nav-fs-m, var(--vh-nav-fs, 14px));
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__nav-bar {
    display: none;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 600;
    display: block;
    overflow-y: auto;
    background: #ffffff;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-12px);
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__mobile-menu--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
    transition-delay: 0s;
  }
}

.cc_K0NqjoILrr_crzYts7FUF .velora-announcement {
  width: 100%;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  text-align: center;
  font-size: var(--vh-nav-fs, 13px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-announcement__text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

@media (max-width: 760px) {
.cc_K0NqjoILrr_crzYts7FUF .velora-announcement {
    min-height: 40px;
    padding: 4px 14px;
    font-size: var(--vh-nav-fs-m, var(--vh-nav-fs, 14px));
  }
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__cart-btn {
  position: relative;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1.5px solid var(--vh-cart-bg, #111111);
  border-radius: 999px;
  background: var(--vh-cart-bg, #111111);
  color: var(--vh-cart-text, #fff);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: filter 0.15s ease;
}

/* Renk panelden seçilebildiği için hover'da rengi koyulaştırmak yerine
   brightness ile genel bir koyulaşma uyguluyoruz (her renkte çalışır). */
.cc_K0NqjoILrr_crzYts7FUF .velora-header__cart-btn:hover {
  filter: brightness(0.88);
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__cart-icon {
  flex-shrink: 0;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__cart-label {
  display: flex;
  align-items: center;
  gap: 4px;
}

.velora-header__cart-total,
.cc_K0NqjoILrr_crzYts7FUF .velora-header__cart-count {
  font-weight: 700;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-header__cart-badge {
  display: none;
}

@media (max-width: 760px) {
.cc_K0NqjoILrr_crzYts7FUF .velora-header__cart-btn {
    height: 40px;
    width: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111111;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__cart-label {
    display: none;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-header__cart-badge {
    position: absolute;
    top: 2px;
    right: 1px;
    min-width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #202020;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
  }
}

/* ── Backdrop ── */
.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__backdrop {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__backdrop--open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Drawer ── */
.cc_K0NqjoILrr_crzYts7FUF .cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2147483647;
  width: 420px;
  max-width: 100vw;
  height: 100vh; /* fallback */
  height: 100dvh;
  background: #ffffff;
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;        /* kapalıyken tamamen gizli — layout'u bozmaz */
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0.35s; /* kapanma animasyonu bittikten sonra gizle */
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer--open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0s; /* açılınca anında görünür */
}

/* ── Header ── */
.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #111111;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__close {
  width: 36px;
  height: 36px;
  border: 0;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #444444;
  transition: background 0.15s ease;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__close:hover {
  background: #ebebeb;
}

/* ── Body ── */
.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}

/* ── Empty ── */
.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__empty {
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #aaaaaa;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__empty p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #888888;
}

/* ── Item list ── */
.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__list-item {
  border-bottom: 1px solid #f2f2f2;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__list-item:last-child {
  border-bottom: 0;
}

/* ── Item ── */
.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__item {
  display: flex;
  gap: 14px;
  padding: 16px 24px;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__item-img-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f5;
  cursor: pointer;
  transition: opacity 0.15s ease;
  display: block;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__item-img-wrap:hover {
  opacity: 0.85;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__item-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cccccc;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__item-prices {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__item-final {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__item-original {
  font-size: 13px;
  color: #aaaaaa;
  text-decoration: line-through;
}

/* Kampanya rozeti — oto-olusturulan / indirimli kampanya satirlari icin */
.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__item-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  color: #b23c00;
  background: #ffe9dd;
  white-space: nowrap;
}

/* Kampanya satirini hafifce vurgula */
.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__item--campaign {
  position: relative;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__item-name {
  margin: 0;
  font-size: 13px;
  color: #333333;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.15s ease;
  display: block;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__item-name:hover {
  color: #111111;
  text-decoration: underline;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__item-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

/* ════════════════════════════════════════════
   AYRI SATIR MODU (.cart-drawer__item--sep)
   ════════════════════════════════════════════ */
.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__item--sep .cart-drawer__item-info {
  gap: 8px;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__line-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__line-top .cart-drawer__item-name {
  margin-top: 1px;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__trash {
  flex-shrink: 0;
  border: 0;
  background: transparent;
  color: #9aa0a6;
  cursor: pointer;
  padding: 2px;
  line-height: 0;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__trash:hover {
  color: #dc2626;
  background: #fbeaea;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__line-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__line-metaitem {
  font-size: 12.5px;
  color: #9aa0a6;
  line-height: 1.4;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__line-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 2px;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__qty-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__qty-label {
  font-size: 13px;
  color: #9aa0a6;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__line-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  text-align: right;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__line-prices .cart-drawer__item-original {
  font-size: 12.5px;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__line-prices .cart-drawer__item-final {
  font-size: 15px;
}

/* ── Qty controls ── */
.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #e0e0e0;
  border-radius: 999px;
  overflow: hidden;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__qty-btn {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  font-size: 17px;
  font-weight: 500;
  color: #333333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s ease;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__qty-btn:hover {
  background: #f5f5f5;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__qty-count {
  min-width: 26px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}

/* ── Remove ── */
.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__remove {
  border: 0;
  background: transparent;
  font-size: 13px;
  color: #888888;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: color 0.12s ease;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__remove:hover {
  color: #333333;
}

/* ── Footer ── */
.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__footer {
  flex-shrink: 0;
  padding: 20px 24px calc(20px + env(safe-area-inset-bottom));
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__total-label {
  font-size: 15px;
  color: #555555;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__total-price {
  font-size: 26px;
  font-weight: 800;
  color: #111111;
}

/* ── Checkout button ── */
.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__checkout {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease;
}

.cc_K0NqjoILrr_crzYts7FUF .cart-drawer__checkout:hover {
  background: #2a2a2a;
}

/* ── Mobile ── */
@media (max-width: 480px) {
.cc_K0NqjoILrr_crzYts7FUF .cart-drawer {
    width: 100vw;
  }
}

.cc_K0NqjoILrr_crzYts7FUF .velora-search {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #dddddd;
  border-radius: 999px;
  padding: 0 18px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-search:focus-within {
  border-color: #bdbdbd;
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.04);
}

.cc_K0NqjoILrr_crzYts7FUF .velora-search__icon {
  flex-shrink: 0;
  color: #222222;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-search__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: #111111;
  font-size: var(--vh-nav-fs, 14px);
  line-height: 1;
  outline: none;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-search__input::placeholder {
  color: #8b8b8b;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-nav__item {
  position: relative;
  flex: 0 0 auto;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-nav__link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: #202020;
  font-size: var(--vh-nav-fs, 14px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-nav__link:hover {
  color: var(--vh-nav-hover, #f15f18);
}

.cc_K0NqjoILrr_crzYts7FUF .velora-nav__chevron {
  color: currentColor;
  margin-top: 1px;
  transition: transform 0.18s ease;
}

.velora-nav__item--has-sub:hover .velora-nav__chevron,
.cc_K0NqjoILrr_crzYts7FUF .velora-nav__item--has-sub:focus-within .velora-nav__chevron {
  transform: rotate(180deg);
}

.cc_K0NqjoILrr_crzYts7FUF .velora-nav__dropdown {
  position: absolute;
  top: 100%;
  left: -14px;
  min-width: 210px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  padding: 7px 0;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transform-origin: top center;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  will-change: opacity, transform;
}

.velora-nav__item--has-sub:hover > .velora-nav__dropdown,
.cc_K0NqjoILrr_crzYts7FUF .velora-nav__item--has-sub:focus-within > .velora-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-nav__dropdown-link {
  display: block;
  padding: 10px 14px;
  color: #222222;
  font-size: var(--vh-nav-fs, 14px);
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}

.cc_K0NqjoILrr_crzYts7FUF .velora-nav__dropdown-link:hover {
  background: #f7f7f7;
  color: var(--vh-nav-hover, #f15f18);
}

@media (max-width: 760px) {
.cc_K0NqjoILrr_crzYts7FUF .velora-nav__list {
    gap: 24px;
    min-width: max-content;
  }

.cc_K0NqjoILrr_crzYts7FUF .velora-nav__link {
    min-height: 48px;
  }
}
