/* ─── ARC Sepet Paneli ─────────────────────────────────────────────────
   Orijinal Tailwind sınıfları korunuyor (drawer JS buna bağlı),
   ama tüm görsel değerler sitenin design sistemiyle güncellendi.
   Renk paleti: #181516 (ikinci), #b1947f (birinci), #ede8e6 (ucuncu),
                #d5c6bc (dorduncu), #594436 (besinci)
   Fontlar: 'Karrik' (başlık), 'Inter' (metin)
────────────────────────────────────────────────────────────────────── */

/* ─── KUTU MODELİ SIFIRLAMA ─── */
.drawer-content-wrapper span,
.drawer-content-wrapper div {
  margin: 0;
}

.drawer-content-wrapper a {
  margin: 0;
}

.drawer-content-wrapper *,
.drawer-content-wrapper :after,
.drawer-content-wrapper :before {
  box-sizing: border-box;
  border: 0 solid #d5c6bc;
}

.drawer-content-wrapper :after,
.drawer-content-wrapper :before {
  --tw-content: "";
}

.drawer-content-wrapper a {
  color: inherit;
  text-decoration: inherit;
}

.drawer-content-wrapper img,
.drawer-content-wrapper svg {
  display: block;
  vertical-align: middle;
}

.drawer-content-wrapper img {
  max-width: 100%;
  height: auto;
}

/* ─── DRAWER KONTEYNER (tam ekran kabuk; panel sağda kayar) ─── */
:root {
  --drawer-width: 420px;
}

body.arc-drawer-open {
  overflow: hidden;
}

.drawer.js-drawer,
.js-drawer.drawer {
  position: fixed !important;
  z-index: 100000 !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100vh !important;
  height: 100dvh !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  background: transparent !important;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transform: none !important;
  transition: visibility 0s .3s;
  display: flex;
  flex-direction: column;
}

.drawer.drawer-content-wrapper {
  position: fixed !important;
}

.drawer:focus {
  outline: 0;
}

/* Blur + karartma — tıklama .js-drawer'a düşer → kütüphane kapatır */
.drawer.js-drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(24, 21, 22, 0.32);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.drawer.js-drawer.drawer--is-visible {
  visibility: visible;
  pointer-events: auto;
  transform: none !important;
  transition: visibility 0s 0s;
}

.drawer.js-drawer.drawer--is-visible::before {
  opacity: 1;
}

.drawer--open-left {
  right: 0;
  left: 0;
  transform: none !important;
}

/* ─── ARC SEPET PANEL (grid: header / items / footer) ─── */
.arc-sepet-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(var(--drawer-width), 90vw);
  max-width: 100%;
  height: 100%;
  min-height: 0;
  margin-left: auto;
  background: #ede8e6;
  box-shadow: -4px 0 24px rgba(0, 0, 0, .08);
  overflow: hidden;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  pointer-events: auto;
}

.drawer.js-drawer.drawer--is-visible .arc-sepet-panel {
  transform: translateX(0);
}

.arc-sepet-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid #d5c6bc;
  background: #ede8e6;
}

.arc-sepet-panel__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: 'Karrik', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #181516;
  letter-spacing: 0.01em;
}

.arc-sepet-panel__title-icon {
  width: 22px;
  height: 22px;
  color: #594436;
  flex-shrink: 0;
}

.arc-sepet-panel__close {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem !important;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a7e76 !important;
  background: none !important;
  border: none !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  transition: color .2s;
}

.arc-sepet-panel__close svg {
  width: 14px;
  height: 14px;
}

.arc-sepet-panel__close:hover {
  color: #181516 !important;
}

.arc-sepet-panel__items {
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  background: #fff;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0;
}

.arc-sepet-panel__footer {
  padding: 18px 22px calc(40px + env(safe-area-inset-bottom, 0px)) !important;
  background: #ede8e6;
  border-top: 1px solid #d5c6bc;
}

.arc-sepet-panel__footer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.arc-sepet-panel__footer-actions .hizli-button-sepet,
.arc-sepet-panel__footer-actions .hizli-button-siparis {
  width: 100% !important;
  float: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none !important;
  box-sizing: border-box;
}

/* Eski drawer iç katmanları — geriye dönük */
.drawer__content {
  width: 100%;
  height: 100%;
  position: relative;
  top: auto;
  right: auto;
  transform: none;
  background: #ede8e6;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
}

.drawer-content-wrapper {
  position: relative;
  background: #ede8e6;
  width: 100%;
  height: 100%;
}

.drawer-content {
  overflow: hidden;
  z-index: 1;
  position: relative;
  height: 100%;
}

.drawer-content-wrapper .drawer-content {
  box-shadow: -4px 0 24px rgba(0, 0, 0, .08);
}

.drawer__body {
  height: 100%;
  min-height: 0;
  overflow: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #ede8e6;
}

.drawer-right .drawer-content,
.drawer-right .drawer-content-wrapper {
  height: 100%;
}

.drawer-right .drawer-content-wrapper {
  right: 0;
}

/* ─── BAŞLIK ALANI ─── */
.drawer-content-wrapper h2 {
  font-family: 'Karrik', serif !important;
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  color: #181516;
  letter-spacing: 0;
  margin: 0;
}

/* Başlık satırı — border-b */
.arc-sepet-panel__header,
.w-full.flex.justify-between.items-center.relative.px-5.py-4.border-b {
  border-bottom: 1px solid #d5c6bc !important;
  background: #ede8e6;
}

/* Kapat butonu */
.js-drawer__close {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem !important;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999 !important;
  background: none !important;
  border: none !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}

.js-drawer__close:hover {
  color: #594436 !important;
}

.js-drawer__close svg {
  color: #999;
}

/* ─── ÜRÜN SATIRI ─── */
.group.w-full.h-auto.flex.justify-start.items-center.bg-white {
  background: #fff !important;
  border-bottom: 1px solid #d5c6bc !important;
  padding: 16px 20px !important;
  gap: 14px;
}

.group.w-full.h-auto.flex.justify-start.items-center.bg-white:hover {
  background: #f7f2ef !important;
}

/* Ürün resim çerçevesi */
.relative.flex.rounded-full.border.border-gray-100.shadow-sm.overflow-hidden.flex-shrink-0.mr-4 {
  border-radius: 4px !important;
  border: 1px solid #d5c6bc !important;
  box-shadow: none !important;
  margin-right: 14px !important;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  overflow: hidden;
}

/* Ürün adı */
.truncate.text-left.text-sm.font-medium.text-gray-700 {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: #181516 !important;
  line-height: 1.3;
}

/* Adet fiyat etiketi */
.text-xs.text-left.text-gray-400 {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.72rem !important;
  color: #999 !important;
  margin-bottom: 6px !important;
}

/* Fiyat */
.font-bold.text-sm.text-heading {
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #181516 !important;
}

.min-100 {
  min-width: 80px !important;
  display: inline-block;
}

/* Adet kontrol kutusu */
.h-8.w-22.flex.flex-wrap.items-center.justify-evenly.p-1 {
  height: 34px !important;
  background: #fff !important;
  border: 1.5px solid #d5c6bc !important;
  border-radius: 0 !important;
  padding: 0 !important;
  gap: 0;
}

.hizli-sepet-adet-guncelle {
  background: transparent !important;
  border: none !important;
  padding: 0 8px !important;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #181516;
  transition: background .15s;
}

.hizli-sepet-adet-guncelle:hover {
  background: #ede8e6 !important;
}

.hizli-sepet-adet-guncelle svg {
  color: #181516;
}

/* Adet sayısı */
.text-sm.font-semibold.text-dark.px-1.m-0 {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #181516 !important;
  padding: 0 8px !important;
  margin: 0 !important;
  border-left: 1px solid #d5c6bc;
  border-right: 1px solid #d5c6bc;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Sil butonu */
.hizli-sepet-satir-sil {
  background: none;
  border: none;
  cursor: pointer;
  color: #ccc !important;
  padding: 4px;
  transition: color .2s;
  flex-shrink: 0;
}

.hizli-sepet-satir-sil:hover {
  color: #b1947f !important;
}

/* ─── ALT BİLGİ (Kargo vb.) ─── */
div.mx-5 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

div.my-3 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

#sepet-sub-info {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.6;
  color: #777 !important;
  padding: 4px 0 0;
  list-style: none;
  margin: 0;
  background: transparent !important;
}

#sepet-sub-info .sepet2 {
  display: none;
}

#sepet-sub-info .sepet3 {
  float: right;
  color: #b1947f !important;
  font-weight: 700;
  background: transparent !important;
  background-color: transparent !important;
}

#sepet-sub-info .sepet3.blue,
#sepet-sub-info span.blue {
  background: transparent !important;
  background-color: transparent !important;
  color: #b1947f !important;
}

#sepet-sub-info li.kargo,
#sepet-sub-info li {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
}

#sepet-sub-info .kdv,
#sepet-sub-info .totax,
#sepet-sub-info .tutar {
  display: none;
}

#sepet-sub-info li,
#sepet-sub-info ul {
  min-height: auto !important;
  height: auto !important;
  padding: 0;
}

#sepet-sub-info li {
  padding-top: 4px;
}

.border-t {
  border-top: 1px solid #d5c6bc !important;
  border-style: solid !important;
}

div.mb-4 {
  margin-bottom: 16px !important;
}

/* ─── ALT BUTONLAR ─── */
.hizli-sepet-footer {
  flex-shrink: 0;
  background: #ede8e6;
  border-top: none;
  margin: 0 !important;
}

.hizli-button-sepet {
  width: 49% !important;
  float: left;
  background-color: #fff !important;
  color: #181516 !important;
  border: 2px solid #181516 !important;
  border-radius: 0 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 12px !important;
  transition: background .2s, color .2s;
  cursor: pointer;
}

.hizli-button-sepet:hover {
  background-color: #181516 !important;
  color: #fff !important;
}

.hizli-button-siparis {
  width: 49% !important;
  float: right;
  background-color: #181516 !important;
  color: #ede8e6 !important;
  border: 2px solid #181516 !important;
  border-radius: 0 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 12px !important;
  transition: background .2s, border-color .2s;
  cursor: pointer;
}

.hizli-button-siparis:hover {
  background-color: #594436 !important;
  border-color: #594436 !important;
}

#satin-al-bilgi {
  white-space: nowrap !important;
}

/* ─── BOŞ SEPET ─── */
.empty-cart {
  width: 60%;
  margin: 48px auto;
  opacity: .4;
}

#sepet-sub-info .sepet3 {
  color: #b1947f !important;
}

#sepet-hizli-urunler,
.arc-sepet-panel__items {
  background: #fff;
  flex: none;
  min-height: 0;
  max-height: none !important;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ─── SCROLL ─── */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.flex-grow {
  flex-grow: 1;
}

/* ─── YARDIMCI SINIFLAR (JS bağımlı) ─── */
.relative {
  position: relative;
}

.m-0 {
  margin: 0;
}

.mb-1 {
  margin-bottom: 4px !important;
}

.mr-2 {
  margin-right: 8px !important;
}

.ml-1 {
  margin-left: 4px !important;
}

.mr-4 {
  margin-right: 14px !important;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.max-h-full {
  max-height: 100%;
}

.w-full {
  width: 100%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-evenly {
  justify-content: space-evenly;
}

.overflow-hidden {
  overflow: hidden;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-md {
  border-radius: 4px !important;
}

.rounded-lg {
  border-radius: 0 !important;
}

.rounded {
  border-radius: 0 !important;
}

.border {
  border-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-gray-100 {
  border-color: #d5c6bc;
}

.bg-white {
  background-color: #fff !important;
}

.p-2 {
  padding: 8px !important;
}

.p-1 {
  padding: 4px !important;
}

.px-5 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.py-3 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.px-4 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.px-3 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.py-4 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.py-2 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.px-1 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.align-middle {
  vertical-align: middle;
}

.text-base {
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

.text-left {
  text-align: left;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.4 !important;
}

.text-xl {
  font-size: 1.25rem !important;
  line-height: 1.4 !important;
}

.text-lg {
  font-size: 1.1rem !important;
  line-height: 1.4 !important;
}

.text-xs {
  font-size: 0.75rem !important;
  line-height: 1.4 !important;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.font-serif {
  font-family: 'Karrik', serif;
}

.leading-5 {
  line-height: 1.4 !important;
}

.text-gray-600 {
  color: #777 !important;
}

.text-white {
  color: #ede8e6 !important;
}

.text-gray-700 {
  color: #444 !important;
}

.text-red-400 {
  color: #b1947f !important;
}

.text-gray-500 {
  color: #999 !important;
}

.text-emerald-600 {
  color: #594436 !important;
}

.text-gray-400 {
  color: #aaa !important;
}

.text-gray-800 {
  color: #181516 !important;
}

.cursor-pointer {
  cursor: pointer;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.transition {
  transition: all .15s cubic-bezier(.4, 0, .2, 1);
}

.transition-all {
  transition: all .15s cubic-bezier(.4, 0, .2, 1);
}

.transition-opacity {
  transition: opacity .15s cubic-bezier(.4, 0, .2, 1);
}

.duration-300 {
  transition-duration: .3s;
}

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.ml-auto {
  margin-left: auto;
}

.mt-4 {
  margin-top: 16px;
}

.last\:border-b-0:last-child {
  border-bottom-width: 0;
}

.hover\:bg-gray-50:hover {
  background-color: #f7f2ef !important;
}

.hover\:text-red-400:hover {
  color: #b1947f !important;
}

.hover\:text-red-600:hover {
  color: #594436 !important;
}

.hover\:bg-emerald-600:hover {
  background-color: #181516 !important;
  color: #fff !important;
}

/* ─── DRAWER HANDLE (js gereği) ─── */
.drawer-handle {
  position: absolute;
  top: 72px;
  width: 41px;
  height: 40px;
  cursor: pointer;
  z-index: 0;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  display: none;
  justify-content: center;
  align-items: center;
  background: #ede8e6;
}

.drawer-handle-icon {
  width: 14px;
  height: 2px;
  background: #181516;
  position: relative;
  transition: background .3s;
}

.drawer-handle-icon:after,
.drawer-handle-icon:before {
  content: "";
  display: block;
  position: absolute;
  background: #181516;
  width: 100%;
  height: 2px;
  transition: transform .3s;
}

.drawer-handle-icon:before {
  top: -5px;
}

.drawer-handle-icon:after {
  top: 5px;
}

.drawer-right .drawer-handle {
  left: -40px;
  border-radius: 4px 0 0 4px;
}

.drawer.drawer-open .drawer-handle-icon {
  background: transparent;
}

.drawer.drawer-open .drawer-handle-icon:before {
  transform: translateY(5px) rotate(45deg);
}

.drawer.drawer-open .drawer-handle-icon:after {
  transform: translateY(-5px) rotate(-45deg);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .js-drawer.drawer {
    height: 100vh !important;
    height: 100dvh !important;
    top: 0 !important;
    bottom: 0 !important;
  }

  .drawer.js-drawer .arc-sepet-panel {
    width: 100% !important;
    max-width: 100% !important;
    height: 90vh !important;
    height: 90dvh !important;
    margin-top: auto;
    margin-left: 0;
    transform: translateY(100%);
  }

  .drawer.js-drawer.drawer--is-visible .arc-sepet-panel {
    transform: translateY(0);
  }

  .drawer.js-drawer .drawer__content,
  .drawer.js-drawer .drawer__body {
    height: 90vh !important;
    height: 90dvh !important;
  }
}

@media (min-width: 480px) {
  .drawer .drawer-content-wrapper {
    width: 420px;
  }
}

/* ─── ARC DRAWER ÜRÜN KARTLARI ─── */
.arc-drawer-item {
  display: flex;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid #f0ebe7;
  background: #fff;
  transition: background 0.15s ease;
}
.arc-drawer-item:last-child { border-bottom: none; }
.arc-drawer-item:hover { background: #faf7f5; }
.arc-drawer-item__media {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background: #f4efe9;
  border: 1px solid #e8e0da;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}
.arc-drawer-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.15s ease;
}
a.arc-drawer-item__media:hover img { opacity: 0.88; }
.arc-drawer-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.arc-drawer-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.arc-drawer-item__name {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  color: #181516;
  text-decoration: none;
}
a.arc-drawer-item__name:hover {
  color: #594436;
  text-decoration: underline;
}
.arc-drawer-item__variant {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #9a8a80;
}
.arc-drawer-item__meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 6px;
}
.arc-drawer-item__qty,
.arc-drawer-item__unit {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #7a6d65;
}
.arc-drawer-item__total {
  margin-left: auto;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #181516;
}
.arc-drawer-item__remove {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #c0b0a8;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.arc-drawer-item__remove:hover {
  color: #9b2226;
  background: rgba(155, 34, 38, 0.06);
}
.arc-drawer-item__remove svg { width: 16px; height: 16px; }
.arc-sepet-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 28px;
  min-height: 220px;
}
.arc-sepet-empty__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #b1947f;
  opacity: 0.75;
}
.arc-sepet-empty__icon svg { width: 36px; height: 36px; }
.arc-sepet-empty__title {
  margin: 0 0 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #181516;
}
.arc-sepet-empty__text {
  margin: 0;
  max-width: 22ch;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #9a8a80;
}
.arc-sepet-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0 2px;
  font-family: 'Inter', sans-serif;
}
.arc-sepet-summary span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a6d65;
}
.arc-sepet-summary strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #181516;
}
.arc-sepet-summary.is-empty strong {
  color: #9a8a80;
  font-weight: 600;
}
.arc-sepet-summary--discount span,
.arc-sepet-summary--discount strong {
  color: #2f6b4f;
}
.hizli-button-sepet,
.hizli-button-siparis {
  width: 100% !important;
  float: none !important;
}

