@import url("https://fonts.googleapis.com/css2?family=Manrope:ital,wght@0,400;0,500;0,600;0,700&family=Plus+Jakarta+Sans:ital,wght@0,600;0,700&subset=latin,latin-ext&display=swap");

:root {
  --brand-orange: #eb5e28;
  --soft-line: #e8e8ec;
  --soft-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  --soft-shadow-hover: 0 8px 26px rgba(0, 0, 0, 0.10);
  --radius: 12px;
}

/* ── Site Toast ───────────────────────────────────────── */
#site-toast-container {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.site-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  padding: 14px 18px;
  min-width: 280px;
  max-width: 340px;
  pointer-events: all;
  animation: toastIn 0.32s cubic-bezier(.34,1.56,.64,1) both;
  border-left: 4px solid #eb5e28;
}
.site-toast.toast-error   { border-left-color: #ef4444; }
.site-toast.toast-success { border-left-color: #22c55e; }
.site-toast.toast-info    { border-left-color: #3b82f6; }
.site-toast.toast-fav     { border-left-color: #f43f5e; }
.site-toast__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  background: #fff4ee;
  color: #eb5e28;
}
.toast-error   .site-toast__icon { background:#fef2f2; color:#ef4444; }
.toast-success .site-toast__icon { background:#f0fdf4; color:#22c55e; }
.toast-info    .site-toast__icon { background:#eff6ff; color:#3b82f6; }
.toast-fav     .site-toast__icon { background:#fff1f2; color:#f43f5e; }
.site-toast__body { flex:1; }
.site-toast__title {
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2px;
}
.site-toast__text {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.4;
}
.site-toast__close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #c4c4cc;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.site-toast__close:hover { color: #6b7280; }
.site-toast__actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.site-toast__actions a, .site-toast__actions button {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.site-toast__actions .ta-primary {
  background: #eb5e28;
  color: #fff;
}
.site-toast__actions .ta-outline {
  background: transparent;
  border: 1.5px solid #e5e7eb !important;
  color: #374151;
}
.site-toast.toast-fav .site-toast__actions .ta-primary { background:#f43f5e; }
@keyframes toastIn {
  from { opacity:0; transform:translateY(20px) scale(.95); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}
@keyframes toastOut {
  from { opacity:1; transform:translateY(0) scale(1); }
  to   { opacity:0; transform:translateY(10px) scale(.95); }
}
.site-toast.removing {
  animation: toastOut 0.22s ease both;
}
@media(max-width:480px){
  #site-toast-container { left:12px; right:12px; bottom:16px; }
  .site-toast { min-width:0; max-width:100%; }
}

/* �� Fonts �� */
body,
button,
input,
select,
textarea {
  font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
}

button,
[type="button"],
[type="submit"],
.btn,
.action__btn,
.wishlist__btn {
  cursor: pointer;
}

/* �� Product Cards �� */
/* �� Product Card Wrapper Grid �� */
.product-card__wrapper {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  gap:15px 10px !important;
}
.product-card__wrapper .product-card {
  flex: 0 0 calc(25% - 10px) !important;
  width: calc(25% - 10px) !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 991px) {
  .product-card__wrapper .product-card {
    flex: 0 0 calc(33.333% - 14px) !important;
    width: calc(33.333% - 14px) !important;
  }
}
@media (max-width: 575px) {
  .product-card__wrapper {
    gap: 12px !important;
  }
  .product-card__wrapper .product-card {
    flex: 0 0 calc(50% - 6px) !important;
    width: calc(50% - 6px) !important;
  }
}

.product-card {
  animation: riseFade 0.35s ease both;
  margin-bottom: 0;
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.product-card:hover {
  box-shadow: var(--soft-shadow-hover);
  transform: translateY(-4px);
}

.product-card .product__image__wrapper {
  border-radius: 0;
  background: #fafafa;
  border: none;
  box-shadow: none;
  transition: none;
  overflow: hidden;
}

.product-card:hover .product__image__wrapper {
  box-shadow: none;
  transform: none;
}

.product-card .product__image__wrapper .product__image img {
  transition: transform 0.4s ease;
}
.product-card:hover .product__image__wrapper .product__image img {
  transform: scale(1.05);
}

/* Badge */
.product-card .product__image__wrapper .badge {
  background: var(--brand-orange);
  color: #fff;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  letter-spacing: 0.3px;
}

/* Actions */
.product-card .product__image__wrapper .product__actions .action__btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--soft-line);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.product-card .product__image__wrapper .product__actions .action__btn:hover {
  border-color: var(--brand-orange);
  background: #fff3ee;
  transform: scale(1.08);
}
.product-card .product__image__wrapper .product__actions .action__btn svg path {
  stroke: #374151;
}
.product-card .product__image__wrapper .product__actions .action__btn:hover svg path {
  stroke: var(--brand-orange);
}

/* Content */
.product-card .product__content {
  padding: 14px 16px 16px;
  margin-top: 0;
}

.product-card .product__content .product__title h5 {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.45;
  color: #1f2937;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .product__content .product__title h5 a {
  color: #1f2937;
  text-decoration: none;
  transition: color 0.15s ease;
}
.product-card .product__content .product__title h5 a:hover {
  color: var(--brand-orange);
}

/* Rating */
.product-card .product__rating ul li i.fa-solid { color: #f59e0b; }
.product-card .product__rating ul li i.fa-regular { color: #d1d5db; }
.product-card .product__rating .total__rating {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: #9ca3af;
}

/* Price */
.product-card .product__content .product__price {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--brand-orange);
}
.product-card .product__content .product__price del {
  font-size: 12px;
  font-weight: 500;
  color: #9ca3af;
  margin-left: 5px;
}

/* �� Product Detail �� */
.product-main {
  padding: 0px 0 64px;
}

/* Tek B�t�n Kart: galeri + bilgi */
.row.product-detail {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
  overflow: visible;
  position: relative;
  z-index: 3;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.row.product-detail > [class*="col-"] {
  padding: 0;
}

/* Sol: Galeri � �er�evesiz, i� padding */
.product-gallery {
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 24px 20px 24px 24px;
}
.product-gallery .product-gallery__main {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--soft-line);
}
.product-gallery .product-gallery__main .gallery-item img {
  object-fit: cover;
  width: 100%;
}
.product-gallery .product-gallery__thumb {
  height: auto;
  flex-basis: auto;
  margin-top: 10px;
}
.product-gallery .product-gallery__thumb .gallery-item {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.product-gallery .product-gallery__thumb .swiper-slide-thumb-active .gallery-item {
  border-color: var(--brand-orange);
}

/* Sa�: Bilgi Paneli � �er�evesiz, i� padding */
.product-detail__wrapper {
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 32px 32px 28px 28px;
  height: 100%;
  position: relative;
  z-index: 4;
}

.product-detail__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1f2937;
  margin-bottom: 12px;
}

/* Meta: y�ld�z + stok + favori */
.product-detail__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--soft-line);
  margin-bottom: 16px;
}
.product-detail__meta .rating ul { display: flex; gap: 3px; list-style: none; padding: 0; margin: 0; }
.product-detail__meta .rating ul li i.fa-solid  { color: #f59e0b; font-size: 13px; }
.product-detail__meta .rating ul li i.fa-regular { color: #d1d5db; font-size: 13px; }
.product-detail__meta .rating { display: flex; align-items: center; gap: 8px; }
.product-detail__meta .total__rating a {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  color: #9ca3af;
  text-decoration: none;
}
.product-detail__meta .right-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-detail__meta .wishlist__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #e11d48;
  text-decoration: none;
  padding: 8px 16px;
  background: #fff1f4;
  border: 1.5px solid #fda4af;
  border-radius: 30px;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
}
.product-detail__meta .wishlist__btn svg path {
  stroke: #e11d48;
}
.product-detail__meta .wishlist__btn:hover {
  background: #ffe4e6;
  border-color: #e11d48;
  color: #be123c;
  box-shadow: 0 2px 8px rgba(225,29,72,.15);
}
.product-detail__meta .wishlist__btn:hover svg path {
  stroke: #be123c;
}

.product-detail__meta .stock__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  letter-spacing: 0.2px;
  background: #f0fdf4 !important;
  color: #16a34a !important;
  border: 1.5px solid #bbf7d0;
  line-height: 1;
  transition: background .15s, border-color .15s, box-shadow .15s;
}
.product-detail__meta .stock__item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  flex-shrink: 0;
  opacity: 0.85;
}
/* Stok yok durumu */
.product-detail__meta .stock__item[style*="#eb5e28"] {
  background: #fff7ed !important;
  color: var(--brand-orange) !important;
  border-color: #fed7aa;
}
.product-detail__meta .stock__item[style*="#eb5e28"]::before {
  background: var(--brand-orange);
}

/* Fiyat */
.product-detail__price {
  font-family: "Manrope", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-orange);
  margin-bottom: 6px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.product-detail__current-price {
  color: var(--brand-orange);
}
.product-detail__old-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #98a2b3;
  text-decoration: line-through;
}
.product-detail__discount-badge {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  background: #eb5e28;
  border-radius: 999px;
  padding: 5px 10px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  line-height: 1.1;
}

/* K�sa a��klama */
.product-detail__short_desc {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--soft-line);
}

/* Varyant */
.product-detail__attr {
  margin-bottom: 16px;
}
.product-detail--stroke {
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #6b7280;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.product-detail__attr .product__attr--size {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-detail__attr .product__attr--size label {
  border-radius: 8px;
  height: auto;
  padding: 7px 16px;
  border: 1.5px solid var(--soft-line);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.product-detail__attr .product__attr--size label:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}
.product-detail__attr .product__attr--size input[type="radio"] { display: none; }
.product-detail__attr .product__attr--size input[type="radio"]:checked + label {
  background: #fff3ee;
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

/* Adet */
.product-detail__qty {
  margin-bottom: 20px;
}

/* Kişiye Özel İsim Input */
.product-detail__kisiye-ozel {
  margin-bottom: 18px;
}
.product-detail__kisiye-ozel-input {
  border-radius: 10px;
  border: 1.5px solid #e7eaf0;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  width: 100%;
  margin-top: 6px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.product-detail__kisiye-ozel-input:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(235, 94, 40, 0.15);
  outline: none;
}
.product-detail__kisiye-ozel-input.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}
.product-detail__kisiye-ozel-hint {
  display: block;
  margin-top: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: #9aa3b2;
}
/* Kargo Teslim Süresi */
.product-detail__delivery-info {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0faf5;
  border: 1px solid #d1ede1;
  border-radius: 8px;
  padding: 9px 14px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #1a6b42;
}
.product-detail__delivery-info i {
  font-size: 15px;
  color: #12b76a;
}
.product-detail__delivery-info strong {
  font-weight: 700;
}
/* Aksiyon Butonlar */
.product-detail__action {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-detail__action .item { flex: 1; min-width: 130px; }
.product-detail__action .item .btn {
  width: 100%;
  border-radius: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 16px;
}
.product-detail__action .item .btn-primary,
.product-detail__action .item .btn-primary.btn-outline {
  background: var(--brand-orange) !important;
  border-color: var(--brand-orange) !important;
  color: #fff !important;
}
.product-detail__action .item .btn-primary:hover,
.product-detail__action .item .btn-primary.btn-outline:hover {
  background: #d4521f !important;
  border-color: #d4521f !important;
  color: #fff !important;
}

/* Tab B�l�m� */
.product-info {
  margin-top: 28px;
  margin-bottom: 20px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  position: relative;
  z-index: 1;
}
/* col-12 t�m tab blo�unu tek kart gibi �er�evele */
.product-info > .col-12 {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  padding: 0;
}
.product-info .tabs__filter {
  background: #fafafa;
  border-bottom: 1px solid var(--soft-line);
  padding: 0 8px;
}
.product-info .tabs__filter .nav-tabs {
  border-bottom: none;
  gap: 4px;
}
.product-info .tabs__filter .nav-link {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #6b7280;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  padding: 14px 16px;
  background: transparent;
  transition: color .15s, border-color .15s;
}
.product-info .tabs__filter .nav-link:hover { color: var(--brand-orange); }
.product-info .tabs__filter .nav-link.active {
  color: var(--brand-orange);
  border-bottom-color: var(--brand-orange);
  background: transparent;
}
.product-info .tab-content {
  padding: 24px 28px 28px;
}
.product-info .content__body {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #374151;
}

/* ��erik i�indeki ba�l�klar */
.product-info .content__body h1,
.product-info .content__body h2,
.product-info .content__body h3,
.product-info .content__body h4,
.product-info .content__body h5,
.product-info .content__body h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 22px;
  margin-bottom: 6px;
  color: #1f2937;
}

.product-info .content__body h2 { font-size: 1.75rem; }
.product-info .content__body h3 { font-size: 1.5rem; }
.product-info .content__body h4,
.product-info .content__body h5,
.product-info .content__body h6 { font-size: 1.25rem; }

.product-info .content__body ul,
.product-info .content__body ol {
  padding-left: 20px;
  margin-bottom: 10px;
}
.product-info .content__body li { margin-bottom: 3px; }
.product-info .content__body p { margin-bottom: 8px; font-size: 14px; }

@media screen and (max-width: 767px) {
  .product-detail__qty {
    margin-bottom: 12px;
  }

  .product-detail__action {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .product-detail__action .item {
    width: 100% !important;
    padding: 0 !important;
    min-width: 0;
  }

  .product-detail__action .item .btn {
    min-height: 46px;
    padding: 10px 10px;
    font-size: 14px;
    line-height: 1.25;
    border-radius: 10px;
  }

  .product-info {
    margin-top: 14px;
  }

  .product-info .tabs__filter {
    padding: 0 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .product-info .tabs__filter .nav-tabs {
    flex-wrap: nowrap;
    gap: 2px;
    min-width: max-content;
  }

  .product-info .tabs__filter .nav-item {
    flex: 0 0 auto;
  }

  .product-info .tabs__filter .nav-link {
    white-space: nowrap;
    padding: 10px 10px;
    font-size: 14px;
  }

  .product-info .tab-content {
    padding: 12px 12px 14px;
  }
}

/* �� Gallery nav arrows �� */
.product-gallery__main {
  position: relative;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  color: #1f2937;
  font-size: 13px;
}

.gallery-nav:hover {
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.gallery-nav.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.gallery-nav--prev { left: 10px; }
.gallery-nav--next { right: 10px; }

/* �� Gallery zoom icon �� */
.product-gallery .gallery-item--zoom {
  position: relative;
  display: block;
}

.product-gallery .gallery-item--zoom::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.product-gallery .gallery-item--zoom:hover::after {
  opacity: 1;
}

/* �� Floating buttons (WhatsApp, Tel, Scroll-top) �� */

/* Scroll-top � sa� alt */
.scroll-top {
  right: 3% !important;
  left: auto !important;
  bottom: -60px !important;
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  border-radius: 50% !important;
  background: #eb5e28 !important;
  font-size: 16px !important;
  box-shadow: 0 4px 14px rgba(235,94,40,0.35) !important;
  opacity: 0 !important;
  transition: bottom 0.4s ease, opacity 0.4s ease !important;
}
.scroll-top.open {
  bottom: 3% !important;
  opacity: 1 !important;
  right: 3% !important;
  left: auto !important;
}

/* WhatsApp ve Telefon: modern floating quick-contact */
#hemen-ara,
#hemen-ara1 {
  right: auto !important;
  left: 18px !important;
  width: 56px !important;
  height: 56px !important;
  z-index: 10030 !important;
  transform: translateY(0);
  transition: transform 0.22s ease;
}

#hemen-ara1 { bottom: 148px !important; }
#hemen-ara  { bottom: 86px !important; }

/* Eski pulse halkalarini kapat */
#hemen-ara .hemen-ara,
#hemen-ara .hemen-ara-fill,
#hemen-ara1 .hemen-ara,
#hemen-ara1 .hemen-ara-fill {
  display: none !important;
}

/* Ana ikon kapsulu */
#hemen-ara .hemen-ara-crc,
#hemen-ara1 .hemen-ara-crc {
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  margin: auto !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,0.48) !important;
  box-shadow: 0 14px 30px rgba(12, 18, 32, 0.24), 0 4px 10px rgba(12, 18, 32, 0.18) !important;
  background-size: 46% !important;
  animation: none !important;
  -webkit-animation: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease !important;
}

#hemen-ara .hemen-ara-crc {
  background-color: #2d6cdf !important;
  background-image: url(../images/telefon-icon.png), linear-gradient(145deg, #5f9bff, #2453b8) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

#hemen-ara1 .hemen-ara-crc {
  background-color: #1ea86b !important;
  background-image: url(../images/whatsapp-icon.png), linear-gradient(145deg, #3fd88e, #148857) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

#hemen-ara:hover,
#hemen-ara1:hover {
  transform: translateY(-3px);
}

#hemen-ara:hover .hemen-ara-crc,
#hemen-ara1:hover .hemen-ara-crc {
  transform: scale(1.04);
  box-shadow: 0 18px 34px rgba(12, 18, 32, 0.3), 0 6px 12px rgba(12, 18, 32, 0.2) !important;
  filter: saturate(1.08);
}

/* Tooltip etiket */
#hemen-ara::after,
#hemen-ara1::after {
  position: absolute;
  left: 66px;
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  padding: 7px 11px;
  border-radius: 10px;
  background: rgba(17, 24, 39, 0.9);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

#hemen-ara::after { content: "Hemen Ara"; }
#hemen-ara1::after { content: "WhatsApp"; }

#hemen-ara:hover::after,
#hemen-ara1:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
  #hemen-ara,
  #hemen-ara1 {
    right: auto !important;
    left: 12px !important;
    width: 52px !important;
    height: 52px !important;
  }

  #hemen-ara1 { bottom: 134px !important; }
  #hemen-ara  { bottom: 76px !important; }

  #hemen-ara .hemen-ara-crc,
  #hemen-ara1 .hemen-ara-crc {
    width: 52px !important;
    height: 52px !important;
    border-radius: 16px !important;
  }

  #hemen-ara::after,
  #hemen-ara1::after {
    display: none;
  }
}

/* �� Pagination �� */
.pagination {
  gap: 4px;
  margin: 24px 0;
}

.pagination .page-item .page-link {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 8px !important;
  padding: 7px 13px;
  line-height: 1.4;
  transition: all 0.15s ease;
  box-shadow: none;
}

.pagination .page-item .page-link:hover {
  color: var(--brand-orange);
  border-color: rgba(235, 94, 40, 0.3);
  background: #fff8f5;
}

.pagination .page-item.active .page-link {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(235, 94, 40, 0.28);
}

.pagination .page-item.disabled .page-link {
  color: #d1d5db;
  background: #fafafa;
  border-color: var(--soft-line);
}

/* �� Kategori a��klama alan� �� */
.kategori-aciklama {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.75;
  padding: 16px 0 8px;
  border-top: 1px solid var(--soft-line);
}

/* �� Category sidebar �� */
.category-sidebar__inner {
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--soft-shadow);
}

.category-sidebar__inner .accordion-button {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--soft-line);
  padding-bottom: 12px;
}

.category-sidebar__inner .accordion-button::after {
  font-size: 11px;
  color: var(--brand-orange);
}

.category-sidebar__inner .accordion-body {
  padding: 8px 0 0;
}

.category-sidebar__inner .accordion-body li {
  border-bottom: none;
  color: #6b7280;
}

.category-sidebar__inner .accordion-body li a {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  padding: 6px 0;
  color: #6b7280;
  transition: color 0.15s ease, padding-left 0.15s ease;
}

.category-sidebar__inner .accordion-body li a:hover,
.category-sidebar__inner .accordion-body li a.active {
  color: var(--brand-orange);
  padding-left: 4px;
}

/* �� Header �st alan �� */
.header {
  background: #fff;
  box-shadow: 0 1px 0 #f0f0f3;
}

.header__top {
  padding: 16px 0;
}

/* Arama kutusu */
.search__form__wrapper .search__form,
.search__form {
  height: auto !important;
  position: relative;
  overflow: visible !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  max-width: 540px;
}

.search__form__inner {
  display: flex !important;
  align-items: stretch;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid #e8e8ec;
  background: #f9f9fb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.search__form__inner:focus-within {
  border-color: #d0d0d8;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.search__form__inner .form-control {
  font-family: "Manrope", sans-serif !important;
  font-size: 13.5px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #374151 !important;
  height: 100% !important;
  flex: 1;
}

.search__form__inner .form-control::placeholder {
  color: #b0b7c3 !important;
}

.search__form__inner button[type="submit"],
.search__form button[type="submit"] {
  flex-shrink: 0;
  width: 46px;
  height: 100% !important;
  border: none !important;
  border-left: none !important;
  outline: none;
  background: var(--brand-orange) !important;
  color: #fff !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0 !important;
  transition: background 0.2s ease;
}

.search__form__inner button[type="submit"]:hover,
.search__form button[type="submit"]:hover {
  background: #d4521f !important;
}

.search__form__inner button[type="submit"] img,
.search__form__inner button[type="submit"] svg {
  display: block;
  pointer-events: none;
}

/* Sa� �st: Kay�t Ol, Giri� Yap */
.header__meta .meta__item li {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
  margin-right: 20px;
}

.header__meta .meta__item li a {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
}

.header__meta .meta__item li a:hover {
  color: var(--brand-orange);
}

.header__meta .meta__item li a i {
  font-size: 13px;
  margin-right: 5px;
  color: #9ca3af;
}

/* Sepetim butonu */
.header__cart .cart__btn {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__cart .cart__btn .title {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
}

/* �� Nav (alt men�) �� */
.header .nav {
  background: #fff;
  border-top: 1.5px solid #f0f0f3;
  border-bottom: none;
}

.header__menu .main__menu li a {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #374151;
  margin: 0 14px;
  line-height: 44px;
  letter-spacing: 0.01em;
}

.header__menu .main__menu li:hover > a,
.header__menu .main__menu li.active > a {
  color: var(--brand-orange);
}

.header__menu .main__menu li.has__dropdown > a::after {
  font-size: 10px;
  color: #b0b7c3;
  margin-left: 6px;
}

/* Dropdown men� */
.header__menu .main__menu li .sub__menu {
  border-radius: 10px;
  border-top: 2px solid var(--brand-orange);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}

.header__menu .main__menu li .sub__menu li a {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin: 0;
  line-height: 1.4;
  padding: 9px 20px;
}

.header__menu .main__menu li .sub__menu li a:hover {
  color: var(--brand-orange);
  background: #fdf5f2;
}

/* �� Breadcrumb (t�m sayfalarda) �� */
.blue-grey.lighten-4 {
  background: transparent !important;
  border-bottom: none !important;
  padding: 12px 0 4px !important;
  margin-bottom: 8px !important;
}

.blue-grey.lighten-4 ol {
  margin: 0;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.blue-grey.lighten-4 .breadcrumb-item {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #9ca3af;
  display: flex;
  align-items: center;
  padding: 0;
}

.blue-grey.lighten-4 .breadcrumb-item a,
.blue-grey.lighten-4 .breadcrumb-item a.black-text {
  color: #9ca3af !important;
  text-decoration: none;
  transition: color 0.15s ease;
}

.blue-grey.lighten-4 .breadcrumb-item a:hover {
  color: var(--brand-orange) !important;
}

.blue-grey.lighten-4 .breadcrumb-item:last-child {
  color: #4b5563;
  font-weight: 600;
}

/* Tema'n�n � separator ikonunu k���lt */
.blue-grey.lighten-4 .breadcrumb-item i {
  font-size: 9px;
  color: #d1d5db;
  margin: 0 5px;
  vertical-align: middle;
}

/* �� Hero: sadece border-radius �� */
.banner__slider__section__v2 .single__slide__wrapper {
  border-radius: var(--radius);
  overflow: hidden;
}

/* �� Yan promo kartlar: sade beyaz �� */
.hero__banner__ads .banner__ads__wrapper {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--soft-line);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.hero__banner__ads .banner__ads__wrapper::before,
.hero__banner__ads .banner__ads__wrapper::after {
  display: none;
}

.hero__banner__ads .banner__ads__wrapper .banner__ads__single__item .banner__ads__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  padding-left: 0;
  color: #1f2937;
}

/* �� Vitrin / �nerilen �r�nler b�l�m� �� */
.sale__section {
  margin-top: 0;
  padding: 56px 0 48px;
  background: #f7f8fa;
  border-top: 1px solid var(--soft-line);
}

.sale__section .section-title {
  margin-bottom: 32px;
  text-align: center;
}

.section-title h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-size: 22px;
}

.sale__section .section-title h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-size: 22px;
}

.sale__section .section-title div {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* Sale swiper navigasyon oklar� � altta solda */
.sale__Swiper {
  position: relative;
  padding-bottom: 52px;
}

.sale-nav {
  position: absolute;
  bottom: 0;
  top: auto;
  transform: none;
  z-index: 10;
  width: 34px;
  height: 28px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #9ca3af;
  transition: border-color .15s, color .15s;
}
.sale-nav svg {
  display: block;
  width: 28px;
  height: 13px;
  flex-shrink: 0;
}
.sale-nav:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}
.sale-nav.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.sale-nav--prev { left: 0; }
.sale-nav--next { left: 46px; }

/* Pagination progress bar */
.sale__Swiper {
  --swiper-theme-color: var(--brand-orange);
}
.sale__Swiper .swiper-pagination,
.sale__Swiper .swiper-pagination-progressbar {
  height: 2px;
  top: auto;
  bottom: 13px;
  left: 104px;
  right: 0;
  width: auto;
  border-radius: 99px;
  background: #e5e7eb;
}
.sale__Swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--brand-orange) !important;
  border-radius: 99px;
}



/* �� Category cards �� */
.category-card {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
  text-decoration: none;
}

.category-card__image {
  width: 100% !important;
  display: block !important;
  border-radius: 0 !important;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.category-card__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block;
  transition: transform 0.3s ease !important;
}

.category-card:hover .category-card__image img {
  transform: scale(1.05) !important;
}

.category-card__title {
  padding: 10px 5px 12px;
  text-align: center;
}

.category-card__title h5 {
  font-family: "Manrope", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #374151 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}

.category-card:hover {
  box-shadow: var(--soft-shadow-hover);
  transform: translateY(-2px);
  border-color: rgba(235, 94, 40, 0.3) !important;
}

/* �� Footer �� */
.footer__section {
  background: #f8f8f9;
  border-top: 1px solid #e4e4e8;
  padding-top: 52px;
}

.footer__widget {
  padding-bottom: 40px;
  max-width: 100%;
}

.footer__widget p {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 0;
}

.footer__widget .footer__logo {
  margin-bottom: 18px;
}

.footer__widget .title {
  margin-bottom: 14px;
}

.footer__widget .title h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #e4e4e8;
  margin-bottom: 0;
  width: 100%;
}

.footer__widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__widget ul li {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  color: #6b7280;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
}

.footer__widget ul li a {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer__widget ul li a:hover {
  color: var(--brand-orange);
}

/* Sosyal ikonlar */
.footer__section .blog-social {
  margin-top: 14px !important;
  padding: 12px 0 0 !important;
  border-top: 1px solid #e4e4e8 !important;
}

.footer__section .blog-social span {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__section .blog-social .social__icon a {
  color: #6b7280;
  font-size: 15px;
  margin-right: 12px;
  transition: color 0.18s ease;
}

.footer__section .blog-social .social__icon a:hover {
  color: var(--brand-orange);
}

/* Alt �izgi / copyright */
.footer__bottom {
  margin-top: 0;
  border-top: 1px solid #e4e4e8;
  background: transparent;
  padding: 14px 0;
}

.footer__bottom .footer__content p,
.footer__bottom p {
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  color: #9ca3af;
  margin: 0;
}

.footer__bottom .footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer__bottom .footer__content .link {
  margin: 0;
}

.footer__bottom .footer__content .link img {
  display: block;
  max-height: 28px;
  width: auto;
}

@media screen and (max-width: 479px) {
  .footer__bottom .footer__content .link img {
    max-height: 24px;
  }
}

/* �� Flyout Sepet �� */
.flyoutCart .flyout__flip {
  width: 420px;
  padding: 28px 28px 24px;
  border-radius: 16px 0 0 16px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.10);
}

.flyoutCart .flyout__inner .main__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}

.flyoutCart .flyout__inner .cart__header-top {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--soft-line);
}

.flyoutCart .flyout__inner .cart__header-top .close__btn svg path {
  stroke: #9ca3af;
}
.flyoutCart .flyout__inner .cart__header-top .close__btn:hover svg path {
  stroke: #1f2937;
}

/* Tablo ba�l���: daha sade */
.flyoutCart .flyout__inner .cart__title {
  background: #f9f9fb;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 12px;
}
.flyoutCart .flyout__inner .cart__title h3 {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  margin: 0;
}

/* �r�n kart� */
.flyoutCart .flyout__inner .cart__items {
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: #e4e4e8 transparent;
}

.flyoutCart .flyout__inner .cart__items .cart__items {
  height: auto;
  overflow: visible;
}

.shopping-card {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--soft-line);
  align-items: flex-start;
}

.shopping-card__image {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--soft-line);
}
.shopping-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shopping-card__content {
  flex: 1;
  min-width: 0;
}
.shopping-card__content-top .product__title {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: #374151;
  margin: 0 0 4px;
}
.shopping-card__content-top .product__title a {
  color: #374151;
  text-decoration: none;
}
.shopping-card__content-top .product__title a:hover {
  color: var(--brand-orange);
}
.shopping-card__content-top .product__title span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  margin-top: 2px;
}
.shopping-card__content-top .product__title span b {
  color: #4b5563;
}

/* Sil butonu */
.shopping-card__content-bottom {
  margin-top: 6px;
}
.shopping-card__content-bottom .action__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.15s ease;
}
.shopping-card__content-bottom .action__btn:hover {
  color: #ef4444;
}
.shopping-card__content-bottom .action__btn svg path {
  stroke: currentColor;
}

/* Ara toplam */
.flyoutCart .flyout__inner .cart__subtotal {
  border-top: none;
  border-bottom: none;
  padding: 14px 0 6px;
  margin: 0;
}
.flyoutCart .flyout__inner .cart__subtotal li {
  margin-bottom: 6px;
}
.flyoutCart .flyout__inner .cart__subtotal li span {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
}

/* Toplam */
.flyoutCart .flyout__inner .cart__total {
  padding: 12px 0 0;
  border-top: 1px solid var(--soft-line);
  margin-top: 4px;
}
.flyoutCart .flyout__inner .cart__total h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.flyoutCart .flyout__inner .cart__total .total {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-orange);
}

/* Butonlar */
.flyoutCart .cart__btns {
  margin-top: 18px;
  gap: 10px;
  flex-wrap: nowrap;
}
.flyoutCart .cart__btns .btn {
  flex: 1;
  height: 42px;
  border-radius: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
}
.flyoutCart .cart__btns .btn-primary {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
}
.flyoutCart .cart__btns .btn-primary:hover {
  background: #d4521f;
  border-color: #d4521f;
}
.flyoutCart .cart__btns .btn-outline {
  background: transparent;
  border: 1.5px solid var(--soft-line);
  color: #6b7280;
}
.flyoutCart .cart__btns .btn-outline:hover {
  border-color: #c0c0c8;
  color: #374151;
}

/* Bo� sepet */
#sepetim > center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0 20px;
  text-align: center;
}
#sepetim > center h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
  margin: 16px 0 8px;
}
#sepetim > center p {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 20px;
}
#sepetim > center .btn-primary {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  border-radius: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 24px;
}

/* �� Auth Pages (Giri� / Kay�t) �� */
.auth-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  background: #fafafa;
}

.auth-box {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}

.auth-box--wide {
  max-width: 640px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 24px;
}
.auth-logo img {
  max-height: 50px;
  width: auto;
}

.auth-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #fff3ee;
  border-radius: 50%;
  margin: 0 auto 18px;
  font-size: 24px;
  color: var(--brand-orange);
}

.auth-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 6px;
}

.auth-desc {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 28px;
}
.auth-desc a {
  color: var(--brand-orange);
  font-weight: 600;
  text-decoration: none;
}
.auth-desc a:hover { text-decoration: underline; }

.auth-form { margin-bottom: 0; }

.auth-field {
  margin-bottom: 4px;
}
.auth-field label {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.auth-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9f9fb;
  border: 1.5px solid var(--soft-line);
  border-radius: 10px;
  padding: 0 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.auth-input-wrap:focus-within {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(235,94,40,0.10);
  background: #fff;
}
.auth-input-wrap i {
  color: #adb5bd;
  font-size: 13px;
  flex-shrink: 0;
}
.auth-input-wrap--textarea {
  align-items: flex-start;
  padding-top: 11px;
  padding-bottom: 11px;
}

.auth-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  color: #374151;
  padding: 11px 0;
}
.auth-input::placeholder { color: #adb5bd; }
.field-error {
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1.3;
}
.field-error::before {
  content: '\f071';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
}
.auth-textarea {
  padding: 0;
  resize: vertical;
  min-height: 80px;
}

.auth-meta {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
  margin-top: -6px;
}
.auth-forgot {
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  color: var(--brand-orange);
  text-decoration: none;
  font-weight: 600;
}
.auth-forgot:hover { text-decoration: underline; }

.auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  background: var(--brand-orange);
  color: #fff !important;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.auth-btn:hover {
  background: #d4521f;
  transform: translateY(-1px);
  color: #fff !important;
}
.auth-btn--outline {
  background: transparent;
  border: 1.5px solid var(--soft-line);
  color: #6b7280 !important;
}
.auth-btn--outline:hover {
  background: #f9f9fb;
  border-color: #c0c0c8;
  color: #374151 !important;
  transform: none;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: #d1d5db;
  font-size: 12px;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--soft-line);
}
.auth-divider span {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: #9ca3af;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .auth-box { padding: 32px 20px; }
  .auth-title { font-size: 19px; }
}

/* �� Animation �� */
@keyframes riseFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* �� Responsive �� */
@media (max-width: 991px) {
  .product-detail__wrapper { padding: 20px 18px; }
  .product-detail__title   { font-size: 1.4rem; }
  .product-detail__price   { font-size: 1.8rem; }
  .product-main            { padding: 20px 0 40px; }
  .product-info .tab-content { padding: 16px 16px 20px; }
  /* Unified card: dikey y���nlamada d�zen */
  .product-gallery {
    padding: 20px;
    min-height: unset;
  }
  .product-detail__wrapper {
    padding: 20px;
  }
}

@media (max-width: 479px) {
  .flyoutCart .flyout__flip { width: 100vw; border-radius: 0; padding: 20px 16px; }
  .flyoutCart .cart__btns { flex-wrap: wrap; }
}

/* ����������������������������������������������
   Sepet & Checkout (sepetim.php)
���������������������������������������������� */
.sepet-section {
  padding: 50px 0 80px;
}

.sepet-card {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.sepet-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--soft-line);
  background: #fafafa;
}
.sepet-card__header i {
  color: var(--brand-orange);
  font-size: 17px;
}
.sepet-card__header h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

/* �� �r�n Listesi �� */
.sepet-items { padding: 4px 0; }

.sepet-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s ease;
}
.sepet-item:last-child { border-bottom: none; }
.sepet-item:hover { background: #fafafa; }

.sepet-item__img {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--soft-line);
}
.sepet-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sepet-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sepet-item__name {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  line-height: 1.4;
}
.sepet-item__name:hover { color: var(--brand-orange); }
.sepet-item__variant {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: #9ca3af;
}
.sepet-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
}
.sepet-item__qty-ctrl {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #f3f4f6;
  border-radius: 20px;
  overflow: hidden;
}
.sepet-qty-btn {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  font-size: 16px;
  font-weight: 700;
  color: #374151;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}
.sepet-qty-btn:hover:not(:disabled) { background: #e5e7eb; color: var(--brand-orange); }
.sepet-qty-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.sepet-qty-val {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  min-width: 26px;
  text-align: center;
  line-height: 28px;
}
.sepet-item__price {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-orange);
}

.sepet-item__ozel-isim {
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: var(--brand-orange);
  background: #fff8f4;
  border: 1px solid rgba(235, 94, 40, 0.2);
  border-radius: 6px;
  padding: 2px 8px;
  margin-top: 4px;
}

/* Yazılacak isim düzenleme alanı */
.sepet-item__isim-wrap { display: inline-block; margin-top: 4px; }
.sepet-isim-duzenle-btn {
  background: none;
  border: none;
  padding: 0 0 0 5px;
  color: var(--brand-orange);
  opacity: 0.7;
  font-size: 11px;
  cursor: pointer;
  line-height: 1;
  vertical-align: middle;
  transition: opacity 0.15s ease;
}
.sepet-isim-duzenle-btn:hover { opacity: 1; }
.sepet-isim-edit-row {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-top: 4px;
}
.sepet-isim-input {
  flex: 1;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  padding: 3px 8px;
  color: #111827;
  outline: none;
  min-width: 0;
  transition: border-color 0.15s ease;
}
.sepet-isim-input:focus { border-color: var(--brand-orange); }
.sepet-isim-kaydet,
.sepet-isim-iptal {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 7px;
  font-size: 11px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s ease;
}
.sepet-isim-kaydet { background: var(--brand-orange); color: #fff; }
.sepet-isim-iptal  { background: #f3f4f6; color: #6b7280; }
.sepet-isim-kaydet:hover:not(:disabled) { opacity: 0.85; }
.sepet-isim-kaydet:disabled { opacity: 0.5; cursor: not-allowed; }

.sepet-item__sil {
  background: none;
  border: 1px solid #fecaca;
  border-radius: 7px;
  color: #ef4444;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: background 0.15s ease, border-color 0.15s ease;
  flex-shrink: 0;
}

.sepet-item__sil:hover {
  background: #fef2f2;
  border-color: #ef4444;
}

/* �� Toplamlar �� */
.sepet-totals {
  padding: 16px 24px 20px;
  border-top: 1px solid var(--soft-line);
  background: #fafafa;
}
.sepet-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  color: #6b7280;
  border-bottom: 1px dashed #f0f0f3;
}
.sepet-total-row:last-child { border-bottom: none; }
.sepet-total-row--grand {
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 2px solid var(--soft-line);
  border-bottom: none;
}
.sepet-grand-price {
  color: var(--brand-orange);
  font-size: 18px;
  font-weight: 800;
}

/* �� Bo� Sepet �� */
.sepet-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 24px;
  text-align: center;
}
.sepet-empty img {
  width: 90px;
  margin-bottom: 20px;
  opacity: 0.65;
}
.sepet-empty h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 6px;
}
.sepet-empty p {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  color: #9ca3af;
  margin-bottom: 24px;
}
.sepet-empty__btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  background: var(--brand-orange);
  color: #fff !important;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.sepet-empty__btn:hover { background: #d4521f; }

/* Kampanya listesi */
.kampanya-list-wrap {
  position: relative;
}
.kampanya-list-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #eceff3;
  padding-bottom: 14px;
}
.kampanya-list-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #f0642f;
  margin-bottom: 6px;
}
.kampanya-list-head h2 {
  margin: 0;
  font-size: 33px;
  line-height: 1.1;
  font-weight: 800;
  color: #0f2440;
}
.kampanya-list-head p {
  margin: 8px 0 0;
  font-size: 14px;
  color: #6f7a8b;
}
.kampanya-list-count {
  border: 1px solid #dbe1ea;
  color: #294462;
  background: #f8fafc;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.kampanya-item-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 36, 64, 0.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  height: 100%;
}
.kampanya-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 36, 64, 0.13);
  border-color: #c8d8ec;
}

/* Geniş (yatay) kart */
.kampanya-item-card--wide {
  min-height: 100%;
}
.kampanya-item-cover--wide {
  width: 100%;
  min-width: 0;
  height: 250px;
  object-fit: cover;
  display: block;
}
.kampanya-item-cover--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f2f5f9, #ecf1f6);
  color: #c4ccd8;
}
.kampanya-item-cover--empty i { font-size: 40px; }

.kampanya-item-body--wide {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.kampanya-item-body--wide h5 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: #0f2440;
  line-height: 1.2;
}
.kampanya-item-body--wide p {
  margin: 0;
  color: #6a7a8c;
  font-size: 13.5px;
  line-height: 1.55;
}
.kampanya-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #edf1f6;
}
.kampanya-item-bitis {
  font-size: 12px;
  font-weight: 600;
  color: #e65b3d;
}
.kampanya-item-bitis--ok {
  color: #16a34a;
}
.kampanya-item-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #0f2440 !important;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .18s ease, transform .18s ease;
}
.kampanya-item-card:hover .kampanya-item-link {
  color: #f0642f !important;
}
.kampanya-item-card:hover .kampanya-item-link i {
  transform: translateX(2px);
}

@media (max-width: 575px) {
  .kampanya-item-cover--wide { height: 190px; }
  .kampanya-item-body--wide { padding: 16px; }
  .kampanya-item-body--wide h5 { font-size: 17px; }
}

.kampanya-empty-box {
  border: 1px dashed #d8e2ef;
  border-radius: 18px;
  background: radial-gradient(circle at 20% 15%, #f8fbff 0%, #f4f8fd 45%, #fdfefe 100%);
  padding: 56px 22px;
  text-align: center;
}
.kampanya-empty-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #e9eff7;
  color: #98a9c1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.kampanya-empty-icon i {
  font-size: 34px;
}
.kampanya-empty-box h5 {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  color: #0f2747;
}
.kampanya-empty-box p {
  margin: 8px 0 20px;
  color: #6f7f93;
  font-size: 14px;
}

@media (max-width: 991px) {
  .kampanya-list-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .kampanya-list-head h2 {
    font-size: 28px;
  }
  .kampanya-empty-box h5 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .kampanya-list-head h2 {
    font-size: 24px;
  }
  .kampanya-item-cover {
    height: 200px;
  }
  .kampanya-item-body {
    padding: 14px;
  }
  .kampanya-empty-box {
    padding: 42px 18px;
  }
  .kampanya-empty-box h5 {
    font-size: 20px;
  }
}

/* �� Checkout Form �� */
.checkout-card { padding: 0; }

.checkout-form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.checkout-field label {
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #6b7280;
}
.checkout-input {
  width: 100%;
  border: 1.5px solid var(--soft-line);
  border-radius: 9px;
  padding: 11px 14px;
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  color: #374151;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease;
  -moz-appearance: textfield;
}
.checkout-input::-webkit-outer-spin-button,
.checkout-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.checkout-input:focus { border-color: var(--brand-orange); box-shadow: 0 0 0 3px rgba(235,94,40,.06); }
.checkout-input::placeholder { color: #adb5bd; }
.checkout-input--textarea { resize: vertical; min-height: 78px; }

/* �� �deme Y�ntemi �� */
.checkout-section-title {
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #374151;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--soft-line);
}

.checkout-payments {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-option { display: flex; cursor: pointer; }

.payment-radio { display: none; }

.payment-label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--soft-line);
  border-radius: 9px;
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.payment-label i {
  color: #9ca3af;
  font-size: 15px;
  width: 20px;
  text-align: center;
}
.payment-radio:checked + .payment-label {
  border-color: var(--brand-orange);
  background: #fff3ee;
  color: var(--brand-orange);
}
.payment-radio:checked + .payment-label i { color: var(--brand-orange); }
.payment-label small { font-weight: 500; font-size: 12px; color: #9ca3af; }

/* �� Checkbox �� */
.checkout-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  color: #6b7280;
}
.checkout-check__input {
  width: 16px;
  height: 16px;
  accent-color: var(--brand-orange);
  cursor: pointer;
  flex-shrink: 0;
}

/* �� Submit Butonu �� */
.checkout-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  background: var(--brand-orange);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 4px;
}
.checkout-submit:hover {
  background: #d4521f;
  transform: translateY(-1px);
}

.checkout-continue {
  text-align: center;
  margin-top: 14px;
}

.checkout-continue__link {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease;
}

.checkout-continue__link:hover {
  color: var(--brand-orange);
}

/* Sepet Mini Giriş Paneli */
.sepet-login-card {
  padding: 0;
  overflow: hidden;
}

.sepet-login-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: #fff8f4;
  border: none;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-orange);
  transition: background 0.15s ease;
  text-align: left;
}

.sepet-login-toggle:hover {
  background: #fff0e8;
}

.sepet-login-toggle__icon {
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.sepet-login-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sepet-login-panel--open {
  max-height: 300px;
  border-top: 1px solid var(--soft-line);
}

.sepet-login-form {
  padding: 18px 20px 14px;
}

.sepet-login-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.sepet-login-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--brand-orange);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.sepet-login-btn:hover:not(:disabled) {
  background: #d4521f;
}

.sepet-login-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.sepet-login-forgot {
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  color: #9aa3b2;
  text-decoration: none;
}

.sepet-login-forgot:hover {
  color: var(--brand-orange);
}

.sepet-login-msg {
  margin: 8px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  min-height: 18px;
}

.sepet-login-msg--err { color: #ef4444; }
.sepet-login-msg--ok  { color: #22c55e; }

@media (max-width: 576px) {
  .sepet-section { padding: 30px 0 60px; }
  .checkout-grid { grid-template-columns: 1fr; }
  .sepet-item { padding: 14px 16px; }
  .sepet-totals { padding: 14px 16px; }
  .checkout-form { padding: 16px; }
  .sepet-card__header { padding: 14px 16px; }
}

/* ����������������������������������������������
   �leti�im Sayfas� (iletisim.php)
���������������������������������������������� */
.contact-section {
  padding: 50px 0 80px;
}

/* Sol bilgi kart� */
.contact-info-card {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  height: 100%;
}

.contact-info-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--soft-line);
  background: #fafafa;
}
.contact-info-card__header i {
  color: var(--brand-orange);
  font-size: 17px;
}
.contact-info-card__header h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.contact-info-card__desc {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  color: #9ca3af;
  padding: 18px 24px 6px;
  margin: 0;
  line-height: 1.6;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 24px;
  border-top: 1px solid #f3f4f6;
  text-decoration: none;
  transition: background 0.15s ease;
}
.contact-info-item:hover { background: #fafafa; }

.contact-info-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #fff3ee;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  font-size: 15px;
}

.contact-info-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-info-item__label {
  font-family: "Manrope", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.contact-info-item__value {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #374151;
  word-break: break-all;
}
a.contact-info-item .contact-info-item__value { color: #374151; }
a.contact-info-item:hover .contact-info-item__value { color: var(--brand-orange); }

/* Sa� form kart� */
.contact-form-card {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.contact-form-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--soft-line);
  background: #fafafa;
}
.contact-form-card__header i {
  color: var(--brand-orange);
  font-size: 17px;
}
.contact-form-card__header h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.contact-form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 576px) {
  .contact-section { padding: 30px 0 60px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 16px; }
  .contact-info-card__header,
  .contact-form-card__header { padding: 14px 16px; }
  .contact-info-item { padding: 14px 16px; }
}

/* ����������������������������������������������
   Kurumsal Sayfalar (kurumsal.php)
���������������������������������������������� */
.kurumsal-section {
  padding: 30px 0 80px;
}

/* Breadcrumb */
.kurumsal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.kurumsal-breadcrumb a {
  color: var(--brand-orange);
  text-decoration: none;
  font-weight: 600;
  transition: color .15s ease;
}
.kurumsal-breadcrumb a:hover { color: #d4521f; text-decoration: none; }
.kurumsal-breadcrumb i.fa-chevron-right { font-size: 9px; color: #d1d5db; }
.kurumsal-breadcrumb span { color: #6b7280; font-weight: 500; }

/* ��erik Kart� */
.kurumsal-card {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.kurumsal-card__cover {
  width: 100%;
  max-height: 320px;
  overflow: hidden;
  border-bottom: 1px solid var(--soft-line);
}
.kurumsal-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kurumsal-card__body {
  padding: 32px 26px 40px;
}

.kurumsal-card__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--soft-line);
}

.kurumsal-card__content {
  font-family: "Manrope", sans-serif;
  font-size: 14.5px;
  line-height: 1.85;
  color: #374151;
}
.kurumsal-card__content h1,
.kurumsal-card__content h2,
.kurumsal-card__content h3,
.kurumsal-card__content h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #1f2937;
  margin-top: 28px;
  margin-bottom: 10px;
}
.kurumsal-card__content p { margin-bottom: 14px; }
.kurumsal-card__content a { color: var(--brand-orange); }
.kurumsal-card__content ul,
.kurumsal-card__content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.kurumsal-card__content li { margin-bottom: 6px; }

/* Sidebar */
.kurumsal-sidebar {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.kurumsal-sidebar__header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 20px;
  background: #fafafa;
  border-bottom: 1px solid var(--soft-line);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #1f2937;
}
.kurumsal-sidebar__header i {
  color: var(--brand-orange);
  font-size: 14px;
}

.kurumsal-sidebar__list {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}
.kurumsal-sidebar__list li { margin: 0; }

.kurumsal-sidebar__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.kurumsal-sidebar__link i {
  font-size: 12px;
  color: #d1d5db;
  flex-shrink: 0;
  transition: color 0.15s ease;
}
.kurumsal-sidebar__link:hover {
  background: #fafafa;
  color: var(--brand-orange);
  border-left-color: var(--brand-orange);
}
.kurumsal-sidebar__link:hover i { color: var(--brand-orange); }
.kurumsal-sidebar__link--active {
  background: #fff3ee;
  color: var(--brand-orange);
  font-weight: 700;
  border-left-color: var(--brand-orange);
}
.kurumsal-sidebar__link--active i { color: var(--brand-orange); }

@media (max-width: 991px) {
  .kurumsal-sidebar { position: static; }
  .kurumsal-card__body { padding: 22px 20px 28px; }
  .kurumsal-card__title { font-size: 20px; }
}
@media (max-width: 576px) {
  .kurumsal-section { padding: 24px 0 60px; }
}

/* -- Feature Section -- */
.feature__section {
  padding: 48px 0 56px;
  background: #fff;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}
.feature__single__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 14px;
  border: 1px solid var(--soft-line);
  background: #fff;
  box-shadow: var(--soft-shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature__single__item:hover {
  box-shadow: var(--soft-shadow-hover);
  transform: translateY(-2px);
}
.feature__single__item .feature__image {
  margin-right: 0;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__single__item .feature__image img {
  width: 36px;
  height: 36px;
}
.feature__single__item .feature__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
  line-height: 1.4;
}
.feature__single__item .feature__content p {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 0;
}

/* -- CTA / Bulten -- */
.call__to__action {
  background: linear-gradient(135deg, #fff3ee 0%, #fde8df 100%);
  border-top: 1px solid #fbd0c0;
  padding: 56px 0;
}
.cta__box__wrapper {
  background: transparent;
  border-radius: 0;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}
.cta__box__wrapper .cta__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.35;
}
.cta__form {
  display: inline-flex;
  border: 1.5px solid #fbd0c0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(235,94,40,.1);
  max-width: 470px;
  width: 100%;
}
.cta__form .form-control {
  flex: 1;
  height: 52px;
  border: none !important;
  border-radius: 0 !important;
  background: transparent;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  padding: 0 18px;
  box-shadow: none !important;
  outline: none;
}
.cta__form .form-control:focus {
  box-shadow: none !important;
}
.cta__form .btn-primary {
  height: 52px;
  padding: 0 28px;
  border-radius: 0 10px 10px 0;
  background: var(--brand-orange);
  border: none;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s;
}
.cta__form .btn-primary:hover {
  background: #d4521f;
}

/* -- Live Search Suggestions -- */
.search__form__wrapper {
  position: relative;
}
.search__form__wrapper .search__form {
  position: relative;
}
.search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 2px;
  right: 2px;
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 9999;
  overflow: hidden;
}
.search-suggestions__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: #1f2937;
  border-bottom: 1px solid #f3f4f6;
  transition: background .15s;
  cursor: pointer;
}
.search-suggestions__item:last-child {
  border-bottom: none;
}
.search-suggestions__item:hover {
  background: #fff8f5;
}
.search-suggestions__img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid #f0f0f0;
}
.search-suggestions__info {
  flex: 1;
  min-width: 0;
}
.search-suggestions__name {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.search-suggestions__price {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-orange);
  margin-top: 2px;
  display: block;
}
.search-suggestions__empty {
  padding: 16px 14px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  color: #6b7280;
  text-align: center;
}
.search-suggestions__all {
  display: block;
  text-align: center;
  padding: 10px 14px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-orange);
  background: #fff8f5;
  border-top: 1px solid var(--soft-line);
  text-decoration: none;
  transition: background .15s;
}
.search-suggestions__all:hover {
  background: #fde8df;
}

/* ================================================
   Hesabim Sayfasi
   ================================================ */

.user__dashboard {
  padding: 40px 0 80px;
  background: #f8f9fa;
}

/* Profil karti */
.hesabim__profile__card {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 16px;
  padding: 24px 20px;
  margin-bottom: 12px;
  text-align: center;
}

.hesabim__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-orange), #f97316);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  letter-spacing: 1px;
}

.hesabim__name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 4px;
  line-height: 1.4;
}

.hesabim__email {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: #9ca3af;
  margin: 0;
}

/* Sidebar */
.sideBar {
  background: #fff;
  border: 1px solid var(--soft-line) !important;
  border-radius: 16px !important;
  padding: 12px !important;
  height: auto !important;
  position: sticky;
  top: 100px;
}

.sideBar .nav__item {
  padding: 0 !important;
}

.sideBar .nav__item .nav__list {
  border-radius: 10px !important;
  height: 46px !important;
  margin-bottom: 2px !important;
}

.sideBar .nav__item .nav__list a {
  font-family: "Manrope", sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #4b5563 !important;
  padding: 0 14px !important;
  display: flex !important;
  align-items: center !important;
}

.sideBar .nav__item .nav__list .chat-badge {
  margin-left: auto;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  padding: 2px 7px;
  font-family: "Manrope", sans-serif;
  min-width: 20px;
  text-align: center;
  line-height: 1.4;
  flex-shrink: 0;
}

.sideBar .nav__item .nav__list a .icon {
  width: 20px !important;
  height: 20px !important;
  margin-right: 10px !important;
  color: #9ca3af;
  flex-shrink: 0;
}

.sideBar .nav__item .nav__list.active,
.sideBar .nav__item .nav__list:hover {
  background: #fff3ee !important;
}

.sideBar .nav__item .nav__list.active a,
.sideBar .nav__item .nav__list:hover a {
  color: var(--brand-orange) !important;
}

.sideBar .nav__item .nav__list.active a .icon,
.sideBar .nav__item .nav__list:hover a .icon {
  color: var(--brand-orange) !important;
}

/* Icerik alani — tek kart */
.user__dashboard .col-lg-9 .main__wrapper {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 16px;
  padding: 28px;
}

/* Baslik: border yok, sadece alt cizgi */
.profile__card {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--soft-line);
  border-radius: 0;
  padding: 0 0 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile__card .profile__card__content .title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

/* Alt sayfalardaki ic main__wrapper kaldirildi, yerine padding yok */
.user__dashboard .col-lg-9 .main__wrapper > .col-lg-12 > .main__wrapper {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

/* Form label */
.user__dashboard .input-box label {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
  display: block;
}

.user__dashboard .input-box .form-control {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 14px;
  color: #1f2937;
  background: #fafafa;
  height: auto;
  transition: border-color .15s, box-shadow .15s;
}

.user__dashboard .input-box .form-control:focus {
  border-color: var(--brand-orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(235,94,40,.08);
  outline: none;
}

/* Kaydet butonu */
.user__dashboard .btn__group {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.user__dashboard .btn__group .btn-primary {
  height: 44px;
  padding: 0 28px;
  border-radius: 10px;
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  transition: background .15s;
}

.user__dashboard .btn__group .btn-primary:hover {
  background: #d4521f;
  border-color: #d4521f;
}

/* ---- Siparisler ---- */
.user__dashboard .cart__form--v2 {
  border: 1px solid var(--soft-line);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}

.user__dashboard .cart__form--v2 table {
  width: 100%;
  border-collapse: collapse;
}

.user__dashboard .cart__form--v2 thead tr {
  background: #f9f9fb;
}

.user__dashboard .cart__form--v2 thead th {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  padding: 12px 16px;
  border-bottom: 1px solid var(--soft-line);
}

.user__dashboard .cart__form--v2 thead th span {
  display: block;
  font-weight: 500;
  font-size: 12.5px;
  color: #374151;
}

.user__dashboard .cart__form--v2 thead th span b {
  color: #1f2937;
  font-weight: 700;
}

.user__dashboard .cart__form--v2 tbody td {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  color: #374151;
  padding: 14px 16px;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
}

.user__dashboard .cart__form--v2 tbody tr:last-child td {
  border-bottom: none;
}

.user__dashboard .cart__form--v2 .product-card--inline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user__dashboard .cart__form--v2 .product-card--inline .product__image img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}

.user__dashboard .cart__form--v2 .product__title {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 2px;
}

.user__dashboard .cart__form--v2 .toplam-tutar {
  background: #f9f9fb;
  border-top: 1px solid var(--soft-line);
  padding: 14px 16px !important;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.user__dashboard .cart__form--v2 .toplam-tutar span {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  color: #374151;
  font-weight: 500 !important;
}

.user__dashboard .cart__form--v2 .toplam-tutar span b {
  font-weight: 700;
  float: none !important;
  width: auto !important;
  text-align: left;
  margin-right: 4px;
}

/* ---- Chat ---- */
.user__dashboard .msger-chat {
  background: #f8f9fa;
  border: 1px solid var(--soft-line);
  border-radius: 14px;
  padding: 20px;
  min-height: 300px;
  max-height: 500px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ========= Ürün Yorum Bölümü ========= */
.yr-panel {
  background: #fff;
  border: 1.5px solid #f0f0f5;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
}
.yr-panel__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid #f0f0f5;
}
.yr-panel__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
}
.yr-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--brand-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  font-family: "Manrope", sans-serif;
}
.yr-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-height: 460px;
  overflow-y: auto;
  padding-right: 4px;
}
.yr-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid #f4f4f8;
}
.yr-item:last-child { border-bottom: none; padding-bottom: 0; }
.yr-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yr-body { flex: 1; }
.yr-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  gap: 8px;
}
.yr-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
}
.yr-date {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  color: #9ca3af;
}
.yr-stars { margin-bottom: 6px; display: flex; gap: 2px; }
.yr-text {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}
.yr-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 40px 20px;
  color: #9ca3af;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
}
.yr-empty i { font-size: 32px; color: #d1d5db; }

/* Star selector */
.yr-starsel {
  display: flex;
  gap: 6px;
}
.yr-star {
  font-size: 24px;
  color: #f59e0b;
  cursor: pointer;
  transition: transform 0.1s ease, color 0.1s ease;
}
.yr-star:hover { transform: scale(1.15); }
.yr-star--off { color: #d1d5db; }
.yr-star--on { color: #f59e0b; }

/* Login CTA */
.yr-login-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  min-height: 220px;
}
.yr-login-icon {
  font-size: 44px;
  color: #d1d5db;
}
.yr-login-text {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Upload alanı */
.yr-opt-badge {
  font-size: 11px;
  font-weight: 500;
  color: #9ca3af;
  margin-left: 6px;
}
.yr-upload-label {
  display: block;
  border: 2px dashed #e5e7eb;
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.yr-upload-label:hover {
  border-color: var(--brand-orange);
  background: #fff7f4;
}
.yr-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #9ca3af;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  pointer-events: none;
}
.yr-upload-placeholder i { font-size: 26px; color: #d1d5db; }
.yr-upload-placeholder small { font-size: 11px; color: #c4c4cc; }
.yr-preview-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.yr-preview-thumb {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid #f0f0f5;
}
.yr-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yr-preview-thumb .yr-remove {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 18px;
  height: 18px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  cursor: pointer;
  border: none;
  padding: 0;
  line-height: 1;
}

/* Yorum resimleri listede */
.yr-img-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.yr-img-thumb {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 7px;
  overflow: hidden;
  border: 1.5px solid #f0f0f5;
  transition: opacity 0.2s;
}
.yr-img-thumb:hover { opacity: 0.85; }
.yr-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Kompakt inline yorum formu */
.yr-inline-form {
  background: #fff;
  border: 1.5px solid #f0f0f5;
  border-radius: 14px;
  padding: 16px 20px;
}
.yr-inline-form__inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.yr-inline-form__stars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 110px;
}
.yr-inline-form__stars .yr-starsel { gap: 4px; }
.yr-inline-form__stars .yr-star { font-size: 18px; }
.yr-inline-form__text {
  flex: 1;
  min-width: 180px;
}
.yr-inline-textarea {
  width: 100%;
  border: 1.5px solid #e5e7eb;
  border-radius: 9px;
  padding: 9px 12px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  color: #374151;
  resize: none;
  outline: none;
  transition: border-color 0.2s;
  background: #fafafa;
  line-height: 1.5;
}
.yr-inline-textarea:focus { border-color: var(--brand-orange); background: #fff; }
.yr-inline-textarea::placeholder { color: #adb5bd; }
.yr-inline-form__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.yr-inline-upload {
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 12px;
  border: 1.5px dashed #d1d5db;
  border-radius: 8px;
  cursor: pointer;
  color: #6b7280;
  font-size: 12px;
  font-family: "Manrope", sans-serif;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
  text-align: center;
  line-height: 1.3;
}
.yr-inline-upload i { font-size: 17px; color: #9ca3af; }
.yr-inline-upload small { font-size: 10px; color: #c4c4cc; }
.yr-inline-upload:hover { border-color: var(--brand-orange); color: var(--brand-orange); }
.yr-inline-upload:hover i { color: var(--brand-orange); }
.yr-inline-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--brand-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.yr-inline-btn:hover { background: #d4521f; }

/* Giriş yapma bar */
.yr-login-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff7f4;
  border: 1.5px solid #fde8df;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  color: #6b7280;
}
.yr-login-bar i { color: var(--brand-orange); font-size: 15px; }
.yr-login-bar a { color: var(--brand-orange); font-weight: 700; text-decoration: none; }
.yr-login-bar a:hover { text-decoration: underline; }

/* Grid liste (tam genişlik, çok kolonlu) */
.yr-list--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  max-height: none;
}
.yr-list--grid .yr-item {
  flex-direction: column;
  border: 1.5px solid #f0f0f5;
  border-radius: 10px;
  padding: 14px;
  margin: 0;
}
.yr-list--grid .yr-item:last-child {
  border-bottom: 1.5px solid #f0f0f5;
  padding-bottom: 14px;
}

/* Ürün küçük resmi (hesabım yorumlarım) */
.yr-urun-thumb {
  display: block;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid #f0f0f5;
  margin-bottom: 10px;
}
.yr-urun-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================
   Sipariş Sonuç Sayfası — spr-
   ========================================= */
.spr-section {
  padding: 60px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.spr-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* Animated SVG checkmark */
.spr-check {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
}
.spr-check svg { width: 72px; height: 72px; }
.spr-check__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4bb543;
  fill: none;
  animation: sprStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.spr-check__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3;
  stroke: #4bb543;
  animation: sprStroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes sprStroke { 100% { stroke-dashoffset: 0; } }

.spr-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 20px;
}
.spr-sub {
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Info grid */
.spr-info-grid {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.spr-info-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 28px;
  min-width: 140px;
  text-align: center;
}
.spr-info-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #94a3b8;
  margin-bottom: 4px;
}
.spr-info-val {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #1a1a2e;
}

/* Havale notice */
.spr-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: #9a3412;
  text-align: left;
  margin-bottom: 24px;
}
.spr-notice i { margin-top: 2px; flex-shrink: 0; }

/* Bank cards */
.spr-banks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.spr-bank-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 18px;
  text-align: left;
}
.spr-bank-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
  flex-shrink: 0;
}
.spr-bank-info { flex: 1; }
.spr-bank-name { font-weight: 700; font-size: 14px; color: #1a1a2e; display: block; }
.spr-bank-iban { font-size: 12.5px; color: #475569; display: flex; align-items: center; gap: 6px; margin-top: 3px; letter-spacing: .02em; }

.spr-copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid #cbd5e1;
  border-radius: 5px;
  color: #94a3b8;
  cursor: pointer;
  padding: 2px 5px;
  font-size: 11px;
  line-height: 1;
  transition: color .15s, border-color .15s;
  flex-shrink: 0;
}
.spr-copy-btn:hover { color: var(--brand-orange, #eb5e28); border-color: var(--brand-orange, #eb5e28); }

/* =========================================
   Ürün Arama Sayfası — ara-
   ========================================= */
.ara-header {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 24px 0 20px;
}
.ara-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #94a3b8;
  margin-bottom: 10px;
}
.ara-breadcrumb a { color: #94a3b8; text-decoration: none; }
.ara-breadcrumb a:hover { color: var(--brand-orange); }
.ara-breadcrumb i { font-size: 9px; }
.ara-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 6px;
  line-height: 1.3;
}
.ara-title em {
  font-style: normal;
  color: var(--brand-orange, #eb5e28);
}
.ara-count {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}
.ara-count strong { color: #1a1a2e; }

.ara-section {
  padding: 36px 0 60px;
}

/* Empty state */
.ara-empty {
  text-align: center;
  padding: 64px 20px;
  max-width: 480px;
  margin: 0 auto;
}
.ara-empty__icon {
  width: 88px;
  height: 88px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.ara-empty__icon svg { width: 44px; height: 44px; }
.ara-empty__title {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 10px;
  line-height: 1.4;
}
.ara-empty__title em {
  font-style: normal;
  color: var(--brand-orange, #eb5e28);
}
.ara-empty__text {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 28px;
  line-height: 1.7;
}
.ara-empty__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.spr-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.spr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  border: none;
  font-family: "Manrope", sans-serif;
}
.spr-btn--primary { background: var(--brand-orange, #eb5e28); color: #fff; }
.spr-btn--primary:hover { background: #d4521f; color: #fff; }
.spr-btn--outline { background: #fff; color: #1a1a2e; border: 1.5px solid #e2e8f0; }
.spr-btn--outline:hover { border-color: #94a3b8; color: #1a1a2e; }

/* Error state */
.spr-error { padding: 40px 20px; text-align: center; }
.spr-error__icon {
  width: 72px;
  height: 72px;
  background: #fef2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: #ef4444;
}
.spr-error h3 { font-size: 20px; font-weight: 800; color: #1a1a2e; margin-bottom: 10px; }
.spr-error p  { color: #64748b; font-size: 14px; margin-bottom: 24px; }

@media (max-width: 576px) {
  .spr-info-grid  { flex-direction: column; align-items: center; }
  .spr-bank-card  { flex-direction: column; align-items: flex-start; }
  .spr-actions    { flex-direction: column; align-items: stretch; }
  .spr-actions .spr-btn { text-align: center; justify-content: center; }
}

/* Onay durumu badge */
.yr-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  margin-top: 8px;
}
.yr-status--ok {
  background: #dcfce7;
  color: #16a34a;
}
.yr-status--wait {
  background: #fef9c3;
  color: #a16207;
}

.chat-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 260px;
  width: 100%;
  padding: 40px 20px;
  text-align: center;
}

.chat-empty-icon {
  width: 72px;
  height: 72px;
  background: #fff3ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.chat-empty-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.chat-empty-sub {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}

.user__dashboard .msg {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.user__dashboard .msg.right-msg {
  flex-direction: row-reverse;
}

.user__dashboard .msg-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 2px solid var(--soft-line);
}

.user__dashboard .msg-bubble {
  max-width: 70%;
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 14px 14px 14px 4px;
  padding: 10px 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.user__dashboard .msg.right-msg .msg-bubble {
  background: linear-gradient(135deg, var(--brand-orange), #f97316);
  border-color: transparent;
  border-radius: 14px 14px 4px 14px;
  color: #fff;
}

.user__dashboard .msg-info {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.user__dashboard .msg-info-name {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
}

.user__dashboard .msg.right-msg .msg-info-name {
  color: rgba(255,255,255,.8);
}

.user__dashboard .msg-info-time {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  color: #9ca3af;
}

.user__dashboard .msg.right-msg .msg-info-time {
  color: rgba(255,255,255,.7);
}

.user__dashboard .msg-text {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: #1f2937;
}

.user__dashboard .msg.right-msg .msg-text {
  color: #fff;
}

.user__dashboard .chat-dis {
  margin-top: 16px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.user__dashboard .chat-dis .form-control {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  resize: none;
  transition: border-color .15s;
  height: auto !important;
}

.user__dashboard .chat-dis .form-control:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(235,94,40,.08);
  outline: none;
}

.user__dashboard .chat-dis .btn-primary {
  width: auto !important;
  align-self: flex-end;
  height: 44px;
  padding: 0 28px;
  border-radius: 10px;
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  transition: background .15s;
}

.user__dashboard .chat-dis .btn-primary:hover {
  background: #d4521f;
  border-color: #d4521f;
}

/* ---- Yorumlar ---- */
.user__dashboard .review__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
}

.user__dashboard .review__item:last-child {
  border-bottom: none;
}

.user__dashboard .review__item .avatar img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #f0f0f0;
}

.user__dashboard .review__content {
  flex: 1;
}

.user__dashboard .review__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.user__dashboard .review__wrap h5 a {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
}

.user__dashboard .review__wrap .rating ul {
  display: flex;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.user__dashboard .review__wrap .rating ul li i {
  color: #f59e0b;
  font-size: 13px;
}

.user__dashboard .review__desc .date {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: #9ca3af;
}

.user__dashboard .review__para p {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* ════════════════════════════════════════════════════
   Hero Unified Grid — Seçenek A
════════════════════════════════════════════════════ */

.banner__slider__section__v2 {
  padding: 28px 0;
}

/* Ortak grid sarmalayıcı */
.hero-unified {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 16px;
  align-items: stretch;
}

/* ── Sol: Slider alanı ── */
.hero-slider-area {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  height: 460px;
  position: relative;
}

.hero-slider-area .swiper,
.hero-slider-area .swiper-wrapper,
.hero-slider-area .swiper-slide {
  height: 100%;
}

.hero-slider-area .hero-slide-link {
  display: block;
  height: 100%;
}

/* Slayt tam görsel */
.hero-slider-area .slide-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Ortak buton stili: turuncu dolu ── */
.btn-hero-unified {
  display: inline-flex;
  align-items: center;
  background: #eb5e28;
  color: #fff !important;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms ease, transform 200ms ease;
  line-height: 1.5;
}
.btn-hero-unified:hover {
  background: #d44d1a;
  transform: translateY(-1px);
  color: #fff !important;
}

/* Slider'daki "İncele" butonu (önceki beyaz outline stilini ezer) */
.hero-slider-area .hero__wrapper .hero__btn .btn-hero-unified {
  background: #eb5e28;
  color: #fff;
}

/* Navigasyon oklarını slayt üzerinde beyaz göster */
.hero-slider-area .banner__navigation .swiper-button-next svg path,
.hero-slider-area .banner__navigation .swiper-button-prev svg path {
  stroke: #fff;
}

/* ── Sağ: Kart alanı ── */
.hero-cards-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Promo kart ── */
.hero-promo-card {
  background: #fff;
  border: 1px solid rgba(235, 94, 40, 0.12);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.hero-promo-card:hover {
  box-shadow: 0 8px 26px rgba(235, 94, 40, 0.12);
  transform: translateY(-2px);
}

/* Hafif turuncu daire aksanı */
.hero-promo-card::before {
  content: none;
}

.hero-promo-card__full-image {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* İki kart arasında marka renginde ince ayırıcı */
.hero-cards-area .hero-promo-card:not(:last-child) {
  border-bottom: 2px solid rgba(235, 94, 40, 0.10);
}

.hero-promo-card__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-promo-card__label {
  font-family: "Manrope", sans-serif;
  font-size: 11.5px;
  font-style: italic;
  font-weight: 600;
  color: #eb5e28;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
}

.hero-promo-card__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a1a;
  margin: 0 0 10px;
}

.hero-promo-card__image {
  flex-shrink: 0;
  width: 108px;
  height: 108px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hero-promo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}
.hero-promo-card:hover .hero-promo-card__image img {
  transform: scale(1.06);
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .hero-unified {
    grid-template-columns: 1fr 300px;
  }
  .hero-slider-area {
    height: 420px;
  }
}

@media (max-width: 991px) {
  .hero-unified {
    grid-template-columns: 1fr 260px;
    gap: 12px;
  }
  .hero-slider-area {
    height: 380px;
  }
  .hero-promo-card__full-image {
    min-height: 180px;
  }
}

@media (max-width: 767px) {
  .hero-unified {
    grid-template-columns: 1fr;
  }
  .hero-slider-area {
    height: auto;
  }
  .hero-slider-area .swiper,
  .hero-slider-area .swiper-wrapper,
  .hero-slider-area .swiper-slide {
    height: auto;
  }
  .hero-slider-area .hero-slide-link {
    height: auto;
  }
  .hero-slider-area .slide-full-img {
    width: 100%;
    height: auto;
    object-fit: unset;
  }
  .hero-cards-area {
    flex-direction: row;
  }
  .hero-promo-card {
    flex: 1;
  }
  .hero-promo-card__full-image {
    min-height: 190px;
  }
}

@media (max-width: 575px) {
  .hero-slider-area {
    height: auto;
  }
  .hero-cards-area {
    flex-direction: column;
  }
  .hero-promo-card__full-image {
    min-height: 170px;
  }
}

/* ── Favorilerim Sayfası ─────────────────────────────── */
.favori-section {
  padding: 24px 0 72px;
}

/* Sayfa başlığı */
.favori-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--soft-line);
}

.favori-header__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.favori-header__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
  border: 1.5px solid #fda4af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #f43f5e;
  flex-shrink: 0;
}

.favori-header__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 3px;
}

.favori-header__subtitle {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}

.favori-header__count {
  display: inline-flex;
  align-items: center;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #f43f5e;
  background: #fff1f2;
  border: 1.5px solid #fda4af;
  border-radius: 30px;
  padding: 6px 16px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Favori Grid ── */
.favori-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Favori Kart ── */
.favori-item {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.favori-item:hover {
  box-shadow: var(--soft-shadow-hover);
  transform: translateY(-4px);
}

/* X butonu — sağ üst köşe */
.favori-sil-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 20;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid #fda4af;
  color: #f43f5e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.18s ease, transform 0.18s ease, background 0.15s, border-color 0.15s;
  box-shadow: 0 2px 8px rgba(244,63,94,0.18);
}

.favori-item:hover .favori-sil-btn {
  opacity: 1;
  transform: scale(1);
}

.favori-sil-btn:hover {
  background: #fff1f2;
  border-color: #f43f5e;
}

/* Ürün görseli alanı */
.favori-card__img {
  display: block;
  position: relative;
  overflow: hidden;
  background: #fafafa;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

.favori-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.favori-item:hover .favori-card__img img {
  transform: scale(1.05);
}

/* İndirim rozeti */
.favori-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand-orange);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* Bilgi alanı */
.favori-card__body {
  padding: 14px 16px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Yıldızlar */
.favori-card__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.favori-card__stars i.fa-solid {
  color: #f59e0b;
  font-size: 11px;
}

.favori-card__stars i.fa-regular {
  color: #d1d5db;
  font-size: 11px;
}

.favori-card__stars span {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  color: #9ca3af;
  margin-left: 3px;
}

/* Başlık */
.favori-card__title {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.45;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s;
}

.favori-card__title:hover {
  color: var(--brand-orange);
}

/* Fiyat */
.favori-card__price {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--brand-orange);
  margin-top: auto;
  padding-top: 4px;
}

.favori-card__price del {
  font-size: 12px;
  font-weight: 500;
  color: #9ca3af;
  margin-left: 5px;
}

/* Alt buton satırı */
.favori-card__actions {
  display: flex;
  gap: 8px;
  padding: 0 12px 12px;
}

.favori-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 10px;
  border-radius: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
  text-decoration: none;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.favori-btn--detail {
  background: #fff8f5;
  border-color: rgba(235,94,40,0.25);
  color: var(--brand-orange);
}

.favori-btn--detail:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
  box-shadow: 0 3px 10px rgba(235,94,40,0.25);
}

.favori-btn--remove {
  background: #fff1f2;
  border-color: #fda4af;
  color: #f43f5e;
}

.favori-btn--remove:hover {
  background: #ffe4e6;
  border-color: #f43f5e;
  color: #be123c;
  box-shadow: 0 3px 10px rgba(244,63,94,0.15);
}

/* Kaldırma animasyonu */
@keyframes favoriRemove {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.9) translateY(10px); }
}

.favori-item.favori-removing {
  animation: favoriRemove 0.3s ease forwards;
  pointer-events: none;
}

/* Boş durum */
.favori-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
}

.favori-empty__icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
  border: 2px solid #fda4af;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 40px;
  color: #f43f5e;
}

.favori-empty__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.favori-empty__text {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.75;
  max-width: 420px;
  margin: 0 auto 28px;
}

.favori-empty__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 30px;
  background: var(--brand-orange);
  color: #fff;
  border-radius: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(235,94,40,0.25);
}

.favori-empty__btn:hover {
  background: #d4521f;
  color: #fff;
  box-shadow: 0 6px 18px rgba(235,94,40,0.35);
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .favori-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .favori-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .favori-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .favori-sil-btn {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 420px) {
  .favori-grid {
    grid-template-columns: 1fr;
  }
  .favori-empty {
    padding: 48px 16px;
  }
}

/* ── Blog Pages ─────────────────────────────────────── */
.modern-blog-section {
  padding: 18px 0 72px;
}

.modern-blog-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff4ee;
  color: var(--brand-orange);
  border: 1px solid rgba(235, 94, 40, 0.18);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.modern-blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 6px 0 20px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--soft-line);
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 26px;
}

.modern-blog-hero__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px;
}

.modern-blog-hero__text {
  max-width: 900px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  margin: 0;
}

.modern-blog-hero__stats {
  display: flex;
  justify-content: flex-end;
}

.modern-blog-stat {
  padding: 16px 18px;
  border: 1px solid var(--soft-line);
  border-radius: 14px;
  background: #fcfcfd;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modern-blog-stat strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.05;
}

.modern-blog-stat span {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9ca3af;
}

.modern-blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: none;
  margin-bottom: 30px;
}

.modern-blog-featured__image {
  min-height: 100%;
  background: #f6f6f8;
}

.modern-blog-featured__image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.modern-blog-featured__content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modern-blog-featured__content h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.45rem;
  line-height: 1.25;
  margin: 0 0 14px;
}

.modern-blog-featured__content h2 a {
  color: #1f2937;
  text-decoration: none;
}

.modern-blog-featured__content h2 a:hover {
  color: var(--brand-orange);
}

.modern-blog-featured__content p {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #6b7280;
  margin-bottom: 22px;
}

.modern-blog-featured__footer {
  display: flex;
  align-items: center;
}

.modern-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.modern-blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.modern-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--soft-shadow);
}

.modern-blog-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f6f6f8;
}

.modern-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.modern-blog-card:hover .modern-blog-card__image img {
  transform: scale(1.05);
}

.modern-blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px;
  flex: 1;
}

.modern-blog-card__body h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.75rem;
  line-height: 1.35;
}

.modern-blog-card__body h3 a {
  color: #1f2937;
  text-decoration: none;
}

.modern-blog-card__body h3 a:hover {
  color: var(--brand-orange);
}

.modern-blog-card__body p {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #6b7280;
  margin: 0;
}

.modern-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--brand-orange);
  margin-top: auto;
}

.modern-blog-link:hover {
  color: #d4521f;
}

.modern-blog-link--button {
  justify-content: center;
  padding: 12px 18px;
  background: var(--brand-orange);
  color: #fff;
  border-radius: 12px;
}

.modern-blog-link--button:hover {
  background: #d4521f;
  color: #fff;
}

.modern-blog-empty {
  text-align: center;
  padding: 60px 24px;
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
}

.modern-blog-empty__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff4ee;
  color: var(--brand-orange);
  font-size: 28px;
}

.modern-blog-empty h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1f2937;
}

.modern-blog-empty p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: #6b7280;
}

.blog-detail-section {
  padding: 18px 0 72px;
}

.blog-detail-card {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 24px;
  overflow: visible;
  position: relative;
  z-index: 3;
  box-shadow: none;
}

.blog-detail-card__intro {
  padding: 34px 36px 26px;
  background: #fff;
  border-bottom: 1px solid var(--soft-line);
}

.blog-detail-card__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.8rem;
  line-height: 1.28;
  color: #1f2937;
  margin: 0 0 14px;
}

.blog-detail-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.blog-detail-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
}

.blog-detail-card__summary {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
}

.blog-detail-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.blog-detail-share--meta {
  margin: 0 0 0 auto;
}

.blog-detail-share--meta .share-dropdown__menu {
  right: 0;
  left: auto;
}

.blog-detail-share__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9aa3b2;
}

.blog-detail-share--bottom {
  margin: 0 36px 30px;
  padding-top: 18px;
  border-top: 1px solid var(--soft-line);
}

.blog-detail-card__cover img {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.blog-detail-card__content {
  padding: 34px 36px 38px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #374151;
}

.blog-detail-card__content h1,
.blog-detail-card__content h2,
.blog-detail-card__content h3,
.blog-detail-card__content h4,
.blog-detail-card__content h5,
.blog-detail-card__content h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #1f2937;
  line-height: 1.35;
  margin-top: 28px;
  margin-bottom: 12px;
}

.blog-detail-card__content p {
  margin-bottom: 14px;
}

.blog-detail-card__content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.blog-detail-card__content a {
  color: var(--brand-orange);
}

.blog-detail-card__content ul,
.blog-detail-card__content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}

.blog-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 110px;
  z-index: 1;
}

.blog-detail-sidebar__card,
.blog-detail-sidebar__cta {
  background: #fff;
  border: 1px solid var(--soft-line);
  border-radius: 20px;
  box-shadow: none;
  padding: 22px;
}

.blog-detail-sidebar__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
}

.blog-detail-sidebar__header i {
  color: var(--brand-orange);
}

.blog-detail-sidebar__text,
.blog-detail-sidebar__cta p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  line-height: 1.8;
  color: #6b7280;
}

.blog-detail-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-detail-sidebar__list li + li {
  margin-top: 10px;
}

.blog-detail-sidebar__link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.blog-detail-sidebar__link:hover,
.blog-detail-sidebar__link--active {
  background: #fff8f5;
  border-color: rgba(235, 94, 40, 0.18);
  transform: translateX(2px);
}

.blog-detail-sidebar__link span:last-child {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #374151;
}

.blog-detail-sidebar__bullet {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-orange);
  margin-top: 6px;
  flex-shrink: 0;
}

.blog-detail-sidebar__cta {
  background: #fff;
}

.blog-detail-sidebar__cta h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.75rem;
  color: #1f2937;
  margin-bottom: 10px;
}

.blog-detail-sidebar__cta .modern-blog-link--button {
  width: 100%;
  margin-top: 18px;
}

.product-detail__qty-share-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.product-detail__qty-share-row .product-detail__qty {
  margin-bottom: 0;
}

.product-share--dropdown {
  margin-left: auto;
}

.share-dropdown {
  position: relative;
}

.share-dropdown summary {
  list-style: none;
}

.share-dropdown summary::-webkit-details-marker {
  display: none;
}

.share-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  color: #334155;
  cursor: pointer;
  padding: 9px 13px;
  border-radius: 12px;
  border: 1px solid #e7eaf0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 1px 1px rgba(15, 23, 42, 0.04);
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.share-dropdown__toggle:focus,
.share-dropdown__toggle:focus-visible {
  outline: none;
  border-color: rgba(235, 94, 40, 0.45);
  box-shadow: 0 0 0 3px rgba(235, 94, 40, 0.18);
}

.share-dropdown[open] .share-dropdown__toggle {
  border-color: rgba(235, 94, 40, 0.34);
  color: var(--brand-orange);
  background: #fff8f4;
}

.share-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 176px;
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
  padding: 6px 6px 6px;
  z-index: 20;
}

.share-dropdown__close {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 22px;
  height: 22px;
  border: 1px solid #e8ebf1;
  border-radius: 7px;
  background: #fff;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.14s ease, color 0.14s ease, background 0.14s ease;
}

.share-dropdown__close:hover {
  color: var(--brand-orange);
  border-color: rgba(235, 94, 40, 0.3);
  background: #fff7f2;
}

.share-dropdown__close i {
  font-size: 11px;
}

.share-dropdown--left .share-dropdown__menu {
  right: auto;
  left: 0;
}

.share-dropdown__item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #334155;
  border-radius: 8px;
  padding: 9px 10px;
  transition: background 0.14s ease, color 0.14s ease;
}

.share-dropdown__item i {
  width: 14px;
  text-align: center;
}

.share-x-mark {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  background: #111827;
  letter-spacing: 0;
}

.share-dropdown__item:hover {
  background: #f8fafc;
}

.share-dropdown__item--wa:hover {
  color: #118a52;
  background: #f1fbf6;
}

.share-dropdown__item--fb:hover {
  color: #1d4ed8;
  background: #f3f7ff;
}

.share-dropdown__item--x:hover {
  color: #0f172a;
  background: #f7f8fa;
}

.share-dropdown__item--mail:hover {
  color: var(--brand-orange);
  background: #fff7f2;
}

@media (max-width: 1199px) {
  .modern-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modern-blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-detail-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .modern-blog-section,
  .blog-detail-section {
    padding-bottom: 56px;
  }

  .modern-blog-hero,
  .modern-blog-featured__content,
  .blog-detail-card__intro,
  .blog-detail-card__content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .modern-blog-grid {
    grid-template-columns: 1fr;
  }

  .modern-blog-hero {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .modern-blog-hero__stats {
    justify-content: flex-start;
  }

  .modern-blog-hero__title {
    font-size: 2.35rem;
  }

  .blog-detail-card__title {
    font-size: 2.1rem;
  }

  .blog-detail-share,
  .product-detail__qty-share-row {
    gap: 8px;
  }

  .blog-detail-share--meta {
    margin-left: auto;
  }

  .blog-detail-share--bottom {
    margin: 0 20px 20px;
    padding-top: 14px;
  }

  .product-detail__qty-share-row {
    align-items: center;
  }

  .share-dropdown__toggle {
    padding: 8px 11px;
    font-size: 12px;
    border-radius: 10px;
  }

  .share-dropdown__menu {
    min-width: 162px;
  }
}

@media (max-width: 575px) {
  .product-detail__qty-share-row {
    flex-direction: row;
    align-items: flex-end;
  }

  .product-detail__qty-share-row .product-detail__qty {
    flex: 1;
    min-width: 0;
  }
}

@media screen and (max-width: 991px) {
  .header .nav {
    display: none !important;
  }

  .header .search__form__wrapper {
    display: none !important;
  }

  .header .search__form.full__width {
    display: flex !important;
  }
}

@media screen and (min-width: 992px) {
  .header .nav {
    display: flex !important;
  }

  .header .header__toggle {
    display: none !important;
  }

  .header .search__form.full__width {
    display: none !important;
  }

  .header .search__form__wrapper {
    display: block !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .container {
    max-width: 1140px !important;
  }

  .header .nav .header__wrapper {
    overflow: hidden;
  }

  .header__menu .main__menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .header__menu .main__menu::-webkit-scrollbar {
    display: none;
  }

  .header__menu .main__menu li {
    flex: 0 0 auto;
  }

  .header__menu .main__menu li a {
    margin: 0 9px;
    font-size: 13px;
    line-height: 42px;
  }

  .hero-unified {
    grid-template-columns: 1fr 320px;
    gap: 16px;
  }

  .hero-slider-area {
    height: 460px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px !important;
  }
}

@media screen and (min-width: 768px) {
  .feature__section .row > div {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

@media (min-width: 992px) and (max-width: 1399px) {
  .header .nav .header__wrapper {
    overflow: hidden;
  }

  .header__menu .main__menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .header__menu .main__menu::-webkit-scrollbar {
    display: none;
  }

  .header__menu .main__menu > li {
    flex: 0 0 auto;
  }

  .header__menu .main__menu > li > a {
    margin: 0 7px;
    font-size: 12.5px;
    line-height: 40px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .category__section .category__wrapper {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media screen and (max-width: 991px) {
  .header .header__toggle {
    margin-right: 12px;
  }

  .header .header__toggle .toggler__btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  }

  .header .header__toggle .toggler__btn:hover {
    border-color: rgba(235, 94, 40, 0.35);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
    transform: translateY(-1px);
  }

  .header .header__toggle .toggler__btn svg {
    height: 17px;
  }

  .header .header__toggle .toggler__btn svg path {
    fill: #6b7280;
  }
}

@media screen and (max-width: 768px) {
  .header .header__toggle .toggler__btn {
    width: 46px;
    height: 46px;
  }
}

@media screen and (max-width: 991px) {
  .header .site-ust {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .story a {text-align: center; line-height: normal;}
  .header .header__top {
    padding: 8px 0 6px;
  }

  .header .header__logo img {
    max-height: 72px;
    width: auto;
  }
.header .header__meta .meta__item{
  justify-content: center;
}
  .header .header__meta .meta__item li {
    margin-right: 12px;
    font-size: 12px;
  }

  .header .header__cart .cart__btn .title {
    font-size: 12px;
  }

  .header .miniCart .cart__btn-img {
    margin-right: 4px;
  }
}

@media screen and (max-width: 768px) {
  .hero-unified {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero-slider-area {
    width: 100%;
    height: 340px;
  }

  .hero-cards-area {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
    width: 100%;
  }

  .hero-promo-card {
    min-height: 164px;
  }

  .footer__section > .container > .row:first-child > div {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer__section .footer__wrapper {
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 575px) {
  .hero-cards-area {
    grid-template-columns: 1fr !important;
  }

  .footer__section > .container > .row:first-child > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.category__section .swiper-button-next,
.category__section .swiper-button-prev {
  display: none !important;
}

.category__section .categorySwiper {
  position: relative;
  padding-bottom: 52px;
}

.category__section .category-nav {
  position: absolute;
  bottom: 0;
  top: auto;
  transform: none;
  z-index: 10;
  width: 34px;
  height: 28px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #9ca3af;
  transition: color .15s;
}

.category__section .category-nav svg {
  display: block;
  width: 28px;
  height: 13px;
  flex-shrink: 0;
}

.category__section .category-nav:hover {
  color: var(--brand-orange);
}

.category__section .category-nav.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.category__section .category-nav--prev { left: 0; }
.category__section .category-nav--next { left: 46px; }

.category__section .categorySwiper .swiper-pagination,
.category__section .categorySwiper .swiper-pagination-progressbar {
  height: 2px;
  top: auto;
  bottom: 13px;
  left: 104px;
  right: 0;
  width: auto;
  border-radius: 99px;
  background: #e5e7eb;
}

.category__section .categorySwiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--brand-orange) !important;
  border-radius: 99px;
}

@media (max-width: 1024px) {
  .hero-unified {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .hero-slider-area {
    height: auto;
  }

  .hero-cards-area {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-promo-card {
    height: 100%;
  }
}

@media (max-width: 575px) {
  .hero-cards-area {
    grid-template-columns: 1fr !important;
  }
}

/* Mobile/Tablet search parity with desktop */
@media screen and (max-width: 991px) {
  .header .site-ust > .search__form.full__width {
    display: flex !important;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin: 10px 0 8px;
    border: 1.5px solid #e8e8ec !important;
    border-radius: 10px !important;
    background: #f9f9fb !important;
    overflow: hidden;
    box-shadow: none !important;
  }

  .header .site-ust > .search__form.full__width .form-control {
    flex: 1;
    min-width: 0;
    height: 44px !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    color: #374151 !important;
    font-family: "Manrope", sans-serif !important;
    font-size: 13.5px !important;
    padding: 0 14px !important;
  }

  .header .site-ust > .search__form.full__width .form-control::placeholder {
    color: #b0b7c3 !important;
  }

  .header .site-ust > .search__form.full__width button {
    width: 46px !important;
    height: 44px !important;
    border: none !important;
    background: var(--brand-orange) !important;
    color: #fff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 8px 8px 0 !important;
  }

  .header .site-ust > .search__form.full__width button:hover {
    background: #d4521f !important;
  }

  .header .site-ust > .search__form.full__width button img,
  .header .site-ust > .search__form.full__width button svg {
    width: 18px;
    height: 18px;
  }
}