/* ============================================================
   ZÜCCACİYE - MODERN MİNİMAL TEMA
   Renk Paleti: Krem/Bej zemin, Koyu kahve metin, Terrakota vurgu
   Fontlar: Cormorant Garamond (serif) + Jost (sans)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Jost:wght@300;400;500;600&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #FAF7F2;
  --cream-dark:  #F0EBE1;
  --beige:       #E8DFD0;
  --brown:       #3D2B1F;
  --brown-mid:   #6B4C3B;
  --brown-light: #9C7B6A;
  --terra:       #C0714F;
  --terra-dark:  #A05A3A;
  --terra-light: #D9957A;
  --white:       #FFFFFF;
  --text:        #2C1A10;
  --text-mid:    #5A3E30;
  --text-light:  #8C7060;
  --shadow-sm:   0 2px 8px rgba(61,43,31,0.08);
  --shadow-md:   0 4px 20px rgba(61,43,31,0.12);
  --shadow-lg:   0 8px 40px rgba(61,43,31,0.18);
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --tr:          0.28s ease;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--brown-light); border-radius: 3px; }

/* ============================================================
   DUYURU BANDI
   ============================================================ */
.announcement-bar {
  background: var(--brown);
  color: rgba(255,255,255,0.85);
  padding: 9px 0;
  overflow: hidden;
  font-size: 12px;
  letter-spacing: 0.07em;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 48px;
  white-space: nowrap;
}

.marquee-item i,
.marquee-item .dot-sep {
  color: var(--terra-light);
  font-size: 8px;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--beige);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  height: 70px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 38px; width: auto; object-fit: contain; }

.logo-text {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.logo-text small {
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-light);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.main-nav a {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  transition: color var(--tr), background var(--tr);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--terra);
  background: rgba(192,113,79,0.07);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.header-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-mid);
  transition: color var(--tr), background var(--tr);
  position: relative;
  font-size: 18px;
}

.header-icon:hover { color: var(--terra); background: rgba(192,113,79,0.08); }

.badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--terra);
  color: white;
  font-size: 9px;
  font-weight: 600;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile */
.mobile-menu-btn {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 20px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 2000;
  padding: 80px 32px 32px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--text);
}

.mobile-nav a {
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--beige);
  display: block;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--brown);
}

.slide {
  display: none;
  position: relative;
  min-height: 540px;
  align-items: center;
}

.slide.active { display: flex; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(30,15,5,0.72) 0%, rgba(30,15,5,0.28) 55%, transparent 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 28px;
  width: 100%;
}

.slide-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 14px;
  display: block;
}

.slide-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 14px;
  max-width: 580px;
  text-shadow: none;
}

.slide-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px;
  max-width: 420px;
  font-weight: 300;
}

.slide-content .btn { margin: 0; }

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all var(--tr);
}

.dot.active {
  background: var(--terra-light);
  width: 22px;
  border-radius: 3px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background var(--tr);
  cursor: pointer;
}

.slider-btn:hover { background: rgba(255,255,255,0.22); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip {
  background: var(--white);
  border-bottom: 1px solid var(--beige);
  padding: 18px 0;
}

.features-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border-right: 1px solid var(--beige);
}

.feature-item:last-child { border-right: none; }

.feature-icon {
  width: 38px; height: 38px;
  background: rgba(192,113,79,0.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--terra);
  font-size: 16px;
}

.feature-text strong {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 1px;
}

.feature-text span { font-size: 11.5px; color: var(--text-light); }

/* ============================================================
   CONTAINER & SECTIONS
   ============================================================ */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--brown); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}

.section-eyebrow {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 500;
  color: var(--brown);
  line-height: 1.2;
}

.section-dark .section-title { color: var(--cream); }
.section-dark .section-eyebrow { color: var(--terra-light); }

.section-link {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: gap var(--tr);
}

.section-link:hover { gap: 10px; }

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--beige);
  aspect-ratio: 4/3;
  cursor: pointer;
  display: block;
}

.cat-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.cat-card:hover .cat-card-img { transform: scale(1.06); }

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,15,5,0.68) 0%, rgba(30,15,5,0.08) 55%, transparent 100%);
}

.cat-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 18px;
  z-index: 1;
}

.cat-card-name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: white;
  display: block;
  margin-bottom: 4px;
}

.cat-card-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color var(--tr);
}

.cat-card:hover .cat-card-sub { color: var(--terra-light); }

/* Cat placeholder */
.cat-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--beige), var(--cream-dark));
  font-size: 40px;
  color: var(--brown-light);
  opacity: 0.5;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--tr), transform var(--tr);
  position: relative;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-card-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-dark);
}

.product-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img { transform: scale(1.05); }

.product-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-dark), var(--beige));
  font-size: 44px;
  color: var(--brown-light);
  opacity: 0.3;
}

/* Badges */
.product-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.badge-discount { background: var(--terra); color: white; font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: var(--radius-sm); letter-spacing: 0.04em; }
.badge-new { background: var(--brown); color: var(--cream); font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: var(--radius-sm); letter-spacing: 0.04em; }
.badge-bogo { background: #2D6A4F; color: white; font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: var(--radius-sm); letter-spacing: 0.04em; }

/* Fav Button */
.fav-btn {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 2;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 15px;
  transition: color var(--tr), transform var(--tr);
  box-shadow: var(--shadow-sm);
}

.fav-btn:hover, .fav-btn.active { color: #e05555; transform: scale(1.1); }

/* Quick Add */
.quick-add-btn {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--brown);
  color: var(--cream);
  padding: 11px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transform: translateY(100%);
  transition: transform var(--tr);
  cursor: pointer;
}

.product-card:hover .quick-add-btn { transform: translateY(0); }

/* Card Body */
.product-card-body { padding: 14px 16px; }

.product-card-cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 5px;
  display: block;
}

.product-card-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price { display: flex; align-items: center; gap: 8px; }

.price-main { font-size: 16px; font-weight: 600; color: var(--brown); }
.price-old { font-size: 13px; color: var(--text-light); text-decoration: line-through; }

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -40%; right: -5%;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: rgba(192,113,79,0.1);
}

.promo-content { position: relative; z-index: 1; text-align: center; }

.promo-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra-light);
  display: block;
  margin-bottom: 12px;
}

.promo-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.15;
}

.promo-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 30px;
  font-weight: 300;
}

/* ============================================================
   VALUES GRID
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--beige);
  transition: border-color var(--tr), box-shadow var(--tr);
}

.value-card:hover { border-color: var(--terra-light); box-shadow: var(--shadow-sm); }

.value-icon {
  width: 52px; height: 52px;
  background: rgba(192,113,79,0.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--terra);
  font-size: 22px;
}

.value-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 7px;
}

.value-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
  padding: 44px 0;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.page-header p { font-size: 14px; color: rgba(255,255,255,0.58); font-weight: 300; }

/* Breadcrumb */
.breadcrumb {
  font-size: 12.5px;
  color: var(--text-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--text-light); transition: color var(--tr); }
.breadcrumb a:hover { color: var(--terra); }
.breadcrumb span { color: var(--beige); }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--beige);
}

.filter-form { display: flex; gap: 10px; }

.filter-form select {
  padding: 8px 12px;
  border: 1.5px solid var(--beige);
  font-size: 13px;
  background: var(--white);
  cursor: pointer;
  border-radius: var(--radius-sm);
  color: var(--text);
  outline: none;
  transition: border-color var(--tr);
}

.filter-form select:focus { border-color: var(--terra); }

.product-count { font-size: 13px; color: var(--text-light); }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 3/4;
  background: var(--cream-dark);
}

.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.gallery-thumbs .thumb {
  width: 70px; height: 88px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--tr);
  border-radius: var(--radius-sm);
}

.gallery-thumbs .thumb:hover,
.gallery-thumbs .thumb.active { border-color: var(--terra); }

.product-cat-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--terra);
  margin-bottom: 8px;
  display: block;
  font-weight: 500;
}

.product-info h1 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 14px;
  line-height: 1.2;
}

.product-rating { margin-bottom: 14px; color: #f59e0b; font-size: 14px; }
.product-rating span { color: var(--text-light); margin-left: 6px; font-size: 13px; }

.product-price-box {
  margin-bottom: 22px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.price-main { font-size: 28px; font-weight: 600; color: var(--brown); }
.price-old { font-size: 17px; color: var(--text-light); text-decoration: line-through; }

.discount-badge {
  background: var(--terra);
  color: white;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.product-desc { margin-bottom: 22px; color: var(--text-mid); font-size: 14px; line-height: 1.8; }

/* Form elements */
.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--beige);
  font-size: 14px;
  transition: border-color var(--tr);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--terra); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Size / Color options */
.size-options, .color-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-option, .color-option { cursor: pointer; }
.size-option input, .color-option input { display: none; }

.size-option span {
  display: inline-block;
  padding: 8px 14px;
  border: 1.5px solid var(--beige);
  font-size: 13px;
  transition: all var(--tr);
  border-radius: var(--radius-sm);
  color: var(--text);
}

.size-option input:checked + span {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}

.size-option span:hover { border-color: var(--terra); color: var(--terra); }

.color-option span {
  display: inline-block;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  transition: all var(--tr);
}

.color-option input:checked + span { outline: 2px solid var(--brown); outline-offset: 2px; }

/* Qty */
.qty-selector { display: flex; align-items: center; width: fit-content; border: 1.5px solid var(--beige); border-radius: var(--radius-sm); overflow: hidden; }

.qty-btn {
  width: 40px; height: 42px;
  background: var(--cream-dark);
  font-size: 16px;
  cursor: pointer;
  transition: background var(--tr);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
}

.qty-btn:hover { background: var(--terra); color: white; }

#qtyInput, .qty-input {
  width: 50px; height: 42px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--beige);
  border-right: 1.5px solid var(--beige);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  -moz-appearance: textfield;
  outline: none;
}

#qtyInput::-webkit-outer-spin-button,
#qtyInput::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.product-actions { display: flex; gap: 12px; margin-top: 22px; }

.product-meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--beige);
}

.product-meta p { font-size: 13px; color: var(--text-light); margin-bottom: 7px; }
.product-meta i { width: 20px; color: var(--terra); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-list { max-width: 720px; margin: 0 auto; }

.review-card {
  padding: 22px 0;
  border-bottom: 1px solid var(--beige);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.reviewer-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--terra), var(--terra-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.reviewer-name { font-weight: 600; font-size: 14px; color: var(--brown); }
.review-stars { color: #f59e0b; font-size: 13px; }
.review-date { font-size: 12px; color: var(--text-light); margin-left: auto; }
.review-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   CART
   ============================================================ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: start;
}

.cart-items-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--beige);
  overflow: hidden;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--beige);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-img img {
  width: 80px; height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-item-info { flex: 1; }
.cart-item-info h3 { font-size: 15px; font-weight: 500; margin-bottom: 4px; color: var(--brown); }
.cart-variant { font-size: 12px; color: var(--text-light); display: block; margin-bottom: 4px; }
.cart-item-price { font-weight: 600; color: var(--terra); font-size: 14px; }

.cart-item-qty .qty-form { display: flex; align-items: center; }

.cart-item-subtotal { font-weight: 700; min-width: 90px; text-align: right; color: var(--brown); }

.cart-item-remove {
  background: none; border: none;
  color: var(--beige); cursor: pointer;
  font-size: 16px; padding: 4px;
  transition: color var(--tr);
}

.cart-item-remove:hover { color: #e05c5c; }

.cart-summary {
  background: var(--white);
  padding: 26px;
  position: sticky;
  top: 90px;
  border-radius: var(--radius-md);
  border: 1px solid var(--beige);
}

.cart-summary h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--beige);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-mid);
}

.summary-total {
  font-size: 18px;
  font-weight: 700;
  border-top: 1px solid var(--beige);
  padding-top: 14px;
  margin-top: 6px;
  color: var(--brown);
}

.free-shipping { color: #16a34a; font-weight: 600; }

.shipping-note {
  font-size: 12px;
  color: var(--terra-dark);
  text-align: center;
  padding: 8px;
  background: rgba(192,113,79,0.07);
  margin: 8px 0;
  border-radius: var(--radius-sm);
}

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 36px;
  align-items: start;
}

.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
}

.step-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--beige);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  transition: all var(--tr);
}

.checkout-step.active .step-num { background: var(--terra); border-color: var(--terra); color: white; }
.checkout-step.done .step-num { background: var(--brown); border-color: var(--brown); color: var(--cream); }
.checkout-step.active { color: var(--brown); }

.step-divider {
  width: 56px; height: 1px;
  background: var(--beige);
  margin: 0 8px;
}

.checkout-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--beige);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--beige);
}

.checkout-right { position: sticky; top: 90px; }

.bank-info-box {
  background: var(--cream);
  padding: 20px;
  margin-bottom: 18px;
  border-left: 3px solid var(--terra);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  border: 1px solid var(--beige);
  border-left: 3px solid var(--terra);
}

.bank-info-box p { margin-bottom: 6px; font-size: 14px; color: var(--text-mid); }
.bank-note { color: var(--terra-dark); font-size: 13px; margin-top: 10px; }
.iban-text { font-family: monospace; letter-spacing: 1px; font-size: 14px; color: var(--brown); }

.order-summary-box {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--beige);
}

.order-summary-box h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 14px;
}

.order-summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--beige);
}

.order-summary-item img {
  width: 50px; height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.order-summary-item .item-name { font-size: 13px; font-weight: 500; color: var(--text); flex: 1; }
.order-summary-item .item-price { font-weight: 600; font-size: 14px; color: var(--brown); }

.order-totals { padding-top: 12px; }
.order-totals .summary-row { padding: 6px 0; }

/* File upload */
.file-upload-area {
  border: 2px dashed var(--beige);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--tr), background var(--tr);
}

.file-upload-area:hover {
  border-color: var(--terra);
  background: rgba(192,113,79,0.04);
}

.file-upload-area i { font-size: 32px; color: var(--terra); margin-bottom: 10px; display: block; }
.file-upload-area p { font-size: 14px; color: var(--text-mid); }
.file-upload-area small { font-size: 12px; color: var(--text-light); }

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-page { padding: 80px 0; text-align: center; }

.success-icon {
  width: 72px; height: 72px;
  background: rgba(45,106,79,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: #2D6A4F;
  font-size: 32px;
}

.success-page h1 {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 10px;
}

.success-page p { font-size: 15px; color: var(--text-light); margin-bottom: 28px; }

.order-number-box {
  display: inline-block;
  background: var(--cream-dark);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
  padding: 14px 28px;
  margin-bottom: 28px;
}

.order-number-box small { font-size: 11px; color: var(--text-light); display: block; margin-bottom: 4px; }
.order-number-box strong { font-size: 20px; font-weight: 600; color: var(--brown); letter-spacing: 0.1em; }

/* ============================================================
   HAKKIMIZDA
   ============================================================ */
.about-hero {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
  padding: 72px 0;
  text-align: center;
}

.about-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
}

.about-hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}

.about-story {
  padding: 72px 0;
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}

.about-story-img img { width: 100%; height: 100%; object-fit: cover; }

.about-story-eyebrow {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: 10px;
}

.about-story-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 18px;
  line-height: 1.2;
}

.about-story-text {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--brown);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 28px;
}

.about-stat {
  padding: 26px 18px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.about-stat:last-child { border-right: none; }

.about-stat-num {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--terra-light);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; }

/* ============================================================
   İLETİŞİM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.contact-info-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 6px;
}

.contact-info-sub { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--beige);
  margin-bottom: 10px;
  transition: border-color var(--tr), box-shadow var(--tr);
}

.contact-card:hover { border-color: var(--terra-light); box-shadow: var(--shadow-sm); }

.contact-card-icon {
  width: 42px; height: 42px;
  background: rgba(192,113,79,0.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--terra);
  font-size: 17px;
}

.contact-card-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}

.contact-card-value { font-size: 14.5px; font-weight: 500; color: var(--brown); }

.contact-hours {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--beige);
  overflow: hidden;
  margin-top: 14px;
}

.contact-hours-header {
  background: var(--brown);
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 18px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--beige);
}

.contact-hours-row:last-child { border-bottom: none; }
.contact-hours-row span:first-child { color: var(--text-mid); }
.contact-hours-row span:last-child { font-weight: 500; color: var(--brown); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  display: block;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 260px;
}

.footer-social { display: flex; gap: 8px; }

.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: all var(--tr);
}

.footer-social a:hover {
  border-color: var(--terra-light);
  color: var(--terra-light);
  background: rgba(192,113,79,0.1);
}

.footer-col-title {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 9px; }

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--tr);
}

.footer-links a:hover { color: var(--terra-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.5);
}

.footer-contact-item i { color: var(--terra-light); margin-top: 3px; font-size: 13px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: all var(--tr);
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn-primary { background: var(--terra); color: white; border-color: var(--terra); }
.btn-primary:hover { background: var(--terra-dark); border-color: var(--terra-dark); transform: translateY(-2px); }

.btn-gold { background: var(--terra); color: white; border-color: var(--terra); }
.btn-gold:hover { background: var(--terra-dark); border-color: var(--terra-dark); }

.btn-dark { background: var(--brown); color: var(--cream); border-color: var(--brown); }
.btn-dark:hover { background: var(--terra); border-color: var(--terra); }

.btn-outline { background: transparent; border-color: var(--brown); color: var(--brown); }
.btn-outline:hover { background: var(--brown); color: var(--cream); }

.btn-outline-gold { background: transparent; border-color: var(--terra); color: var(--terra); }
.btn-outline-gold:hover { background: var(--terra); color: white; }

.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.4); color: white; }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-lg { padding: 14px 34px; font-size: 13px; }
.btn-sm { padding: 7px 16px; font-size: 11.5px; }
.btn-block { width: 100%; }

/* ============================================================
   TOAST
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--brown);
  color: var(--cream);
  padding: 13px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.3s ease;
  max-width: 300px;
}

.toast.success { background: #2D6A4F; }
.toast.error { background: #9B1C1C; }
.toast i { font-size: 16px; }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Empty state */
.empty-state { text-align: center; padding: 72px 24px; }

.empty-state-icon {
  width: 68px; height: 68px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--brown-light);
  font-size: 28px;
}

.empty-state h3 { font-family: var(--font-serif); font-size: 22px; color: var(--brown); margin-bottom: 8px; }
.empty-state p { font-size: 14px; color: var(--text-light); margin-bottom: 22px; }

/* WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 26px; left: 26px;
  z-index: 999;
  width: 50px; height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.38);
  transition: transform var(--tr), box-shadow var(--tr);
  font-size: 24px;
  color: white;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37,211,102,0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-item { padding: 10px 12px; }

  .slide { min-height: 400px; }
  .slide-content { padding: 60px 20px; }

  .section { padding: 48px 0; }
  .section-header { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .checkout-steps { gap: 4px; }
  .step-divider { width: 20px; }
  .checkout-step span:not(.step-num) { display: none; }

  .about-stats { grid-template-columns: 1fr; }
  .about-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .about-stat:last-child { border-bottom: none; }

  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
body.admin-body {
  font-family: var(--font-sans);
  background: #F4F5F7;
  color: var(--text);
}

/* ============================================================
   DÜZELTMELER — odeme.php adım göstergesi + checkout-left + renk seçici
   ============================================================ */

/* odeme.php'deki .step class'ları için stiller */
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.step {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--beige);
  background: var(--white);
}
.step.active {
  background: var(--terra);
  border-color: var(--terra);
  color: #fff;
  font-weight: 600;
}
.step.completed {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
}

/* checkout-left: form alanlarını saran kutu */
.checkout-left {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
  padding: 28px;
}
.checkout-left h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--beige);
}

/* Renk seçici: metin tabanlı renk adları için düzeltme */
.color-option span {
  display: inline-block;
  width: auto;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--beige);
  padding: 7px 14px;
  font-size: 13px;
  color: var(--text);
  background: var(--white);
  transition: all var(--tr);
  outline: none;
}
.color-option input:checked + span {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
  outline: none;
}
.color-option span:hover {
  border-color: var(--terra);
  color: var(--terra);
}

/* address-summary-box */
.address-summary-box {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 22px;
}
.address-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.address-summary-header h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
}
.address-summary-box p {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 3px;
}

/* payment-method-box */
.payment-method-box {
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: border-color var(--tr);
}
.payment-method-box.active {
  border-color: var(--terra);
  background: rgba(192,113,79,0.04);
}
.payment-method-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
}

/* receipt-upload-box */
.receipt-upload-box {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 18px;
}
.receipt-upload-box h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}
.receipt-desc {
  font-size: 12.5px;
  color: var(--text-light);
  margin-bottom: 14px;
}
.file-upload-area {
  border: 2px dashed var(--beige);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--tr);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
}
.file-upload-area:hover { border-color: var(--terra); }
.file-upload-area i { font-size: 28px; color: var(--terra); }
.file-upload-area p { font-size: 13px; margin: 0; }
.file-upload-area small { font-size: 11px; }
.file-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.file-preview img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--beige);
}
input[type="file"] { display: none; }

/* bank-info-box */
.bank-info-box {
  background: var(--cream);
  padding: 20px;
  margin-bottom: 18px;
  border-left: 3px solid var(--terra);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.bank-info-box h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 14px;
}
.bank-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--beige);
  font-size: 13px;
}
.bank-info-row:last-of-type { border-bottom: none; }
.bank-label { color: var(--text-light); min-width: 100px; }
.bank-value { font-weight: 600; color: var(--text); flex: 1; }
.iban-text { font-family: monospace; font-size: 12px; letter-spacing: 0.05em; }
.btn-copy {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--terra);
  padding: 4px 6px;
  font-size: 14px;
}
.bank-note {
  font-size: 11.5px;
  color: var(--text-light);
  margin-top: 10px;
}

/* summary-row, summary-total, summary-divider */
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text);
  padding: 6px 0;
}
.summary-total {
  font-size: 16px;
  font-weight: 700;
  color: var(--brown);
  border-top: 1.5px solid var(--beige);
  padding-top: 12px;
  margin-top: 4px;
}
.summary-divider {
  height: 1px;
  background: var(--beige);
  margin: 8px 0;
}
.free-shipping { color: #16a34a; font-weight: 600; }
