:root {
  --bg-color: #ffffff;
  --surface-color: #fbfaf8;
  --text-dark: #111111;
  --text-muted: #666666;
  --accent-gold: #bca075;
  --border-light: #ececec;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-color);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

button {
  font: inherit;
  cursor: pointer;
}

.container {
  width: min(1300px, 92%);
  margin-inline: auto;
}

.top-announcement {
  background: linear-gradient(90deg, #f5eee4 0%, #efe4d4 100%);
  color: #5a4630;
  text-align: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #e6d9c6;
}

.top-announcement p {
  margin: 0;
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.4;
  max-width: 58rem;
  margin-inline: auto;
  font-size: 0.72rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-light);
}

/* Header alanı kenardan kenara (0'a 0) */
.site-header .container {
  width: 100%;
}

.site-header .main-nav.container {
  padding-left: 0;
  padding-right: 0;
}

/* Header içindeki butonlar kenara yapışmasın (yüksek spesifiklik) */
.site-header .header-inner {
  padding-left: 0.8rem !important;
  padding-right: 0.8rem !important;
}

/* Ek garanti: sol/sağ aksiyonları biraz içeri al */
.site-header .header-left {
  padding-left: 0 !important;
}

.site-header .header-right {
  padding-right: 0 !important;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  /* Üst butonlar kenara yapışmasın */
  padding: 0.9rem 0.6rem 0.75rem;
}

.header-left {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  margin-left:1.4rem;
  color: var(--text-muted);
}

.header-left .divider {
  margin: 0 0.5rem;
}

.lang-link:hover {
  color: var(--text-dark);
}

.back-home-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}

.back-home-link:hover {
  border-color: #cbb89a;
  color: var(--text-dark);
}

.brand-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 500;
  margin: 0;
  line-height: 1;
  color: var(--text-dark);
}

.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  margin-top: 0.32rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: none;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.65rem;
  margin-right:1.4rem;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-whatsapp-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border: 1px solid #1f9d57;
  color: #1f9d57;
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  min-height: 36px;
}

.btn-whatsapp-outline:hover {
  background-color: #1f9d57;
  color: #fff;
}

.cart-icon-btn {
  position: relative;
  min-width: 70px;
  height: 36px;
  border: 1px solid var(--text-dark);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 0.72rem;
  transition: all 0.25s ease;
}

.cart-icon-btn:hover {
  background: var(--text-dark);
  color: #fff;
}

.action-icon {
  width: 16px;
  height: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.action-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-icon svg {
  stroke: #1f9d57;
}

.btn-whatsapp-outline:hover .whatsapp-icon svg {
  stroke: #fff;
}

.btn-instagram-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border: 1px solid #c13584;
  color: #c13584;
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  min-height: 36px;
  text-decoration: none;
  background: #fff;
}

.btn-instagram-outline:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
}

.instagram-icon svg {
  stroke: #c13584;
}

.btn-instagram-outline:hover .instagram-icon svg {
  stroke: #fff;
}

.instagram-icon svg .ig-dot {
  fill: #c13584;
  stroke: none;
}

.btn-instagram-outline:hover .instagram-icon svg .ig-dot {
  fill: #fff;
}

.cart-icon svg {
  stroke: #111;
}

.cart-icon-btn:hover .cart-icon svg {
  stroke: #fff;
}

.action-text {
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #b44;
  color: #fff;
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 1.6rem;
  padding-bottom: 0.7rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  overflow: visible;
  white-space: normal;
}

.main-nav a:hover {
  color: var(--accent-gold);
}

.nav-dropdown {
  position: static;
}

.nav-dropdown-trigger {
  border: 0;
  background: transparent;
  color: var(--text-dark);
  font-size: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-caret {
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  color: #7d6648;
}

.nav-caret svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nav-caret path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret,
.nav-dropdown.is-open .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(0);
  width: 100vw;
  background: #fff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 22px 48px rgba(17, 17, 17, 0.16);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  z-index: 140;
}

.nav-dropdown-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel,
.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.35rem;
  width: min(1500px, 97%);
  margin: 0 auto;
  padding: 1.75rem 0;
}

.nav-dropdown-grid--mega {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: min(1500px, 96%);
  max-width: none;
  /* 2. satıra düşen kategoriler için dikey boşluğu artır */
  gap: 1.1rem 1.25rem;
  padding: 1.5rem 1.25rem 1.75rem;
  align-items: start;
}

.nav-dropdown-col--mega {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  min-width: 0;
  padding: 0 0.65rem;
}

.nav-dropdown-cat-heading {
  display: block;
  margin: 0 0 0.65rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ebe4da;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a4630;
  text-decoration: none;
  line-height: 1.35;
}

.nav-dropdown-cat-heading:hover {
  color: var(--accent-gold);
}

.nav-dropdown-subs {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-dropdown-subs a {
  display: block;
  padding: 0.35rem 0.4rem;
  margin: 0 -0.4rem;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.35;
}

.nav-dropdown-subs a:hover {
  background: #faf6f1;
  color: var(--accent-gold);
}

.nav-dropdown-see-all {
  margin-top: 0.35rem;
  padding-top: 0.5rem !important;
  border-top: 1px dashed #e5dcd0;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  color: var(--accent-gold) !important;
}

.nav-dropdown-see-all:hover {
  background: transparent !important;
  text-decoration: underline;
}

.nav-dropdown-col {
  display: grid;
  gap: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
  white-space: normal;
  padding-right: 0.65rem;
}

.nav-dropdown-col:not(:last-child) {
  border-right: 1px solid #f3efe9;
}

.nav-dropdown-title {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6f593d;
  font-weight: 700;
}

.nav-dropdown-col a {
  font-size: 0.84rem;
  color: var(--text-dark);
  line-height: 1.45;
  padding: 0.08rem 0;
}

.nav-dropdown-col a:hover {
  color: var(--accent-gold);
}

.detail-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0 0.85rem;
  flex-wrap: wrap;
}

.detail-nav a {
  border: 1px solid var(--border-light);
  background: #fff;
  color: var(--text-dark);
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.detail-nav a:hover {
  border-color: #ceb896;
  background: #faf6f1;
}

.detail-page .main-nav {
  display: none;
}

.is-detail-header .header-inner {
  padding-bottom: 0.8rem;
}

.section-space {
  padding-block: 4.2rem;
}

.hero-banner {
  position: relative;
  width: 100%;
  /* Hero görseller 16:9 hedeflenir (adres çubuğu snap'inden bağımsız) */
  height: clamp(420px, 46vw, 640px);
  background-color: var(--surface-color);
  overflow: hidden;
}

@supports (height: 100svh) {
  .hero-banner {
    height: clamp(420px, 46vw, 640px);
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-desktop);
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  filter: blur(26px) saturate(1.06) brightness(0.92);
  opacity: 0.95;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.04) 45%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.hero-slide.is-active::after {
  opacity: 1;
}

.campaigns-section.section-space {
  padding-top: 3rem;
  padding-bottom: 3.4rem;
}

.collections.section-space {
  padding-top: 3.2rem;
  padding-bottom: 3.8rem;
}

.signature-see-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.15rem;
}

.signature-see-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  padding: 0.9rem 1.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
}

.signature-see-all:hover {
  background: #111;
  color: #fff;
}

.discounted-products.section-space {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
  background: linear-gradient(180deg, #fff8f8 0%, #fff 100%);
}

.discounted-products.section-space {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
  background: linear-gradient(180deg, #fff8f8 0%, #fff 100%);
}

.discounted-products.section-space {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
  background: linear-gradient(180deg, #fff8f8 0%, #fff 100%);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  background: transparent;
  transform: none;
  transition: none;
  filter: none;
}

.hero-slide.is-active .hero-img {
  transform: none;
  filter: none;
}

.hero-overlay-content {
  position: absolute;
  box-sizing: border-box;
  left: max(0.65rem, env(safe-area-inset-left, 0px));
  right: max(0.65rem, env(safe-area-inset-right, 0px));
  width: auto;
  max-width: min(32rem, 100%);
  margin-left: auto;
  margin-right: auto;
  top: 50%;
  transform: translateY(-50%);
  max-height: min(78dvh, calc(100% - 1.5rem));
  overflow: hidden;
  overscroll-behavior: contain;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  padding: clamp(0.85rem, 2.2vw, 2.25rem) clamp(0.75rem, 3vw, 2rem);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 3;
  opacity: 0;
  animation: none;
}

/* Mobil Safari: backdrop-filter scroll sırasında flicker/jitter yapabiliyor */
@media (hover: none) and (pointer: coarse) {
  .hero-overlay-content {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.96);
  }
}

.hero-slide.is-active .hero-overlay-content {
  animation: heroPanelIn 0.8s ease forwards;
}

@keyframes heroPanelIn {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 10px));
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  background: rgba(17, 17, 17, 0.62);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  z-index: 4;
}

.hero-nav.prev {
  left: 18px;
}

.hero-nav.next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 4;
}

.hero-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.35);
  padding: 0;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.hero-dots .dot.is-active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.15);
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2.4vw + 0.85rem, 2.85rem);
  line-height: 1.12;
  margin: 0 0 0.55rem;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08em;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-gold);
}

.hero-subtitle {
  font-size: clamp(0.8rem, 1.5vw + 0.55rem, 1.05rem);
  line-height: 1.4;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  font-weight: 300;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-overlay-content .btn-solid-dark {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 1rem;
  font-size: clamp(0.72rem, 1.5vw, 0.82rem);
  letter-spacing: 0.07em;
}

.btn-solid-dark {
  display: inline-block;
  background-color: var(--text-dark);
  color: #fff;
  border: 0;
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
}

.btn-solid-dark:hover {
  background-color: var(--accent-gold);
}

.campaign-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.campaign-grid--single {
  grid-template-columns: 1fr;
}

.campaign-grid--single .campaign-card {
  height: min(540px, 70vh);
}

.campaign-grid--single .campaign-card-desc {
  -webkit-line-clamp: 4;
  max-width: 48ch;
}

.campaign-grid--triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.campaign-grid--triple .campaign-card {
  height: min(420px, 52vh);
}

.campaign-grid--triple .campaign-info h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
}

@media (max-width: 1100px) {
  .campaign-grid--triple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campaign-grid--triple .campaign-card:nth-child(3) {
    grid-column: 1 / -1;
    height: min(400px, 48vh);
  }
}

.campaign-card {
  position: relative;
  overflow: hidden;
  height: 440px;
  display: block;
}

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

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

.campaign-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.1rem 1.4rem 1.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  color: #fff;
}

.campaign-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  margin: 0 0 0.5rem;
  font-weight: 500;
}

.campaign-info span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}

.campaign-card-desc {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  line-height: 1.45;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-title-center {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title-center h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.section-title-center p {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 300;
  margin: 0.35rem 0 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem 0.85rem;
}

.collections .product-grid--signature {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.discounted-products .product-grid--discounted {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  gap: 1.2rem 0.95rem;
}

.product-item {
  text-align: left;
  background: transparent;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card-link {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  color: inherit;
  text-decoration: none;
  border-radius: inherit;
}

.product-card-link:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}

.product-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.1);
}

.product-image-container {
  position: relative;
  aspect-ratio: 4 / 5;
  background-color: #f0f0f0;
  border-bottom: none;
  overflow: hidden;
  display: block;
  border-radius: 10px 10px 0 0;
}

.product-chip {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(17, 17, 17, 0.72);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  backdrop-filter: blur(3px);
}

.product-chip.is-discount {
  background: rgba(174, 41, 61, 0.88);
}

.product-chip.is-campaign {
  background: linear-gradient(135deg, #8a6b3a 0%, #5c4a2e 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.product-name {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  color: var(--text-dark);
  text-align: left;
}

.product-subcategory {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
}

.product-price {
  font-size: 0.92rem;
  color: var(--text-dark);
  white-space: nowrap;
  font-weight: 400;
}

.product-price-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.product-price-old {
  font-size: 0.78rem;
  color: #888;
  text-decoration: line-through;
}

.product-price-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.product-price-old {
  font-size: 0.78rem;
  color: #888;
  text-decoration: line-through;
}

.product-price-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.product-price-old {
  font-size: 0.78rem;
  color: #888;
  text-decoration: line-through;
}

.detail-price-current {
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 600;
}

.product-meta {
  padding: 0.95rem 0.85rem 1.05rem;
  background: #f7f7f7;
  border-radius: 0 0 10px 10px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.product-subtitle {
  margin: 0.45rem 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.45;
  min-height: 0;
}

.product-footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.product-media-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-media-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-image {
  opacity: 1;
  transition: opacity 0.45s ease, transform 0.55s ease;
}

.hover-image {
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.45s ease, transform 0.55s ease;
}

.product-item:hover .main-image {
  opacity: 0;
  transform: scale(1.04);
}

.product-item:hover .hover-image {
  opacity: 1;
  transform: scale(1);
}

/* iOS/Safari: touch scroll sırasında :hover tetiklenip flicker yapabiliyor */
@media (hover: none) and (pointer: coarse) {
  .main-image,
  .hover-image {
    transition: none;
  }

  .product-item:hover .main-image {
    opacity: 1;
    transform: none;
  }

  .product-item:hover .hover-image {
    opacity: 0;
    transform: scale(1.06);
  }
}

/* iOS/Safari scroll sırasında transform/filter'lı img jitter/blur yapabiliyor */
@media (hover: none) and (pointer: coarse) {
  .hero-img,
  .campaign-card img {
    transform: none !important;
    filter: none !important;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
  }

  .hero-slide.is-active .hero-img {
    transform: none !important;
  }
}

/* iOS Safari: opacity transition + büyük img + overflow clip scroll'da flicker yapabiliyor */
@media (hover: none) and (pointer: coarse) {
  .hero-slide {
    transition: none;
    opacity: 1;
    pointer-events: none;
    display: none;
  }

  .hero-slide.is-active {
    display: block;
    pointer-events: auto;
  }

  .hero-slide::after {
    transition: none;
  }

  /* About: overflow clipping yerine img'e radius vermek repaint'i azaltır */
  .about-media {
    overflow: visible;
  }

  .about-img {
    border-radius: 18px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .hero-slide.is-active .hero-overlay-content {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* Not: mobilde vw tabanlı ölçü kullanıyoruz; svh/vh override'a gerek yok. */

@media (prefers-reduced-motion: reduce) {
  .product-item,
  .product-item:hover {
    transition: none;
    transform: none;
    box-shadow: 0 1px 3px rgba(17, 17, 17, 0.06);
  }

  .main-image,
  .hover-image,
  .product-item:hover .main-image,
  .product-item:hover .hover-image {
    transition: none;
    transform: none;
  }

  .product-item .main-image {
    opacity: 1;
  }

  .product-item .hover-image {
    opacity: 0;
  }
}

.contact-banner {
  background-color: var(--surface-color);
  padding: 4rem 1rem 4.4rem;
  border-top: 1px solid var(--border-light);
  margin-top: 0.6rem;
}

.about-section.section-space {
  padding-top: 3.4rem;
  padding-bottom: 3.4rem;
  background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
  border-top: 1px solid var(--border-light);
}

.about-grid {
  display: grid;
  /* 9:16 dikey görsel için: solda sabit aralıkta bir görsel kolon */
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 2rem;
  align-items: center;
}

.about-content {
  text-align: center;
}

/* Hakkımızda: başlık/metin mutlaka ortada dursun */
.about-section .section-title-center--left {
  text-align: center;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-color);
  border: 1px solid var(--border-light);
  aspect-ratio: 9 / 16;
  width: 100%;
  max-height: min(620px, calc(var(--vh, 1vh) * 74));
  justify-self: center;
}

.about-img {
  width: 100%;
  height: 100%;
  /* 9:16 çerçevede resmin tamamı görünsün (kırpma yok) */
  object-fit: contain;
  object-position: center;
  display: block;
}

@supports (height: 100svh) {
  .about-img {
    height: 100%;
  }
}

.section-title-center--left {
  text-align: left;
  align-items: flex-start;
}

.about-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0.75rem 0 1.1rem;
  max-width: 60ch;
  margin-inline: auto;
}

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

.serif-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 500;
  margin: 0 0 1rem;
}

.contact-banner p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin: 0.45rem auto 1.7rem;
  max-width: 42ch;
}

.cart-panel {
  position: fixed;
  right: 1.2rem;
  top: 122px;
  width: min(390px, calc(100% - 2rem));
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cart-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cart-content {
  padding: 0.9rem 1rem 1rem;
  max-height: 65vh;
  overflow: auto;
}

.cart-panel-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.cart-panel-title-row h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}

.cart-close-btn {
  border: 1px solid var(--border-light);
  background: #fff;
  width: 28px;
  height: 28px;
  font-size: 1.1rem;
  line-height: 1;
}

.cart-empty {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0.5rem 0 0.9rem;
}

.cart-item {
  border: 1px solid var(--border-light);
  padding: 0.7rem;
  margin-bottom: 0.65rem;
}

.cart-item-head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.cart-item-name {
  font-size: 0.92rem;
  font-weight: 600;
}

.cart-item-price {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.cart-row-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 0.55rem;
  align-items: center;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.qty-controls button {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-light);
  background: #fff;
}

.remove-item {
  border: 0;
  background: transparent;
  color: #a33;
  font-size: 0.78rem;
}

.cart-note {
  margin-top: 0.9rem;
}

.cart-note label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.84rem;
  font-weight: 500;
}

.cart-note textarea {
  width: 100%;
  border: 1px solid var(--border-light);
  padding: 0.6rem;
  resize: vertical;
}

.cart-total {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-total strong {
  font-size: 1.05rem;
}

.cart-checkout {
  width: 100%;
  margin-top: 0.8rem;
}

.site-footer {
  background-color: var(--text-dark);
  color: #fff;
  padding: 3.4rem 0 2.2rem;
  text-align: center;
}

.footer-content {
  display: grid;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand p {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: #ccc;
  margin-top: 0.5rem;
}

.footer-tagline {
  font-size: 0.82rem !important;
  letter-spacing: 0.04em !important;
  line-height: 1.5;
  max-width: 28rem;
  margin: 1rem auto 0 !important;
  color: #b8b0a6 !important;
  text-transform: none;
}

.footer-contact {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #c9c2b8;
  text-align: left;
  justify-self: center;
  width: 100%;
  max-width: 22rem;
}

.footer-contact-title {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a8f82;
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.footer-contact a {
  color: #e8dcc8;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-address {
  margin: 0.85rem 0 0;
  font-style: normal;
  color: #a39a8e;
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-links {
  margin-top: 0;
  font-size: 0.8rem;
  color: #888;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    text-align: left;
  }

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

  .footer-tagline {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .footer-contact {
    justify-self: end;
  }
}

.contact-banner-lead {
  max-width: 36rem;
  margin: 0.5rem auto 1.25rem;
  line-height: 1.55;
  color: #4a4034;
}

.contact-banner-details {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

.contact-banner-details a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
}

.contact-banner-details a:hover {
  text-decoration: underline;
}

.contact-banner-address {
  margin: 1rem auto 0;
  font-style: normal;
  color: #5c5348;
  font-size: 0.9rem;
  max-width: 22rem;
}

.detail-main {
  padding: 4rem 0 6rem;
}

.catalog-page-main {
  padding-top: 0.35rem;
}

.catalog-page-main .section-space {
  padding-top: 1.2rem;
  padding-bottom: 3rem;
}

.catalog-hero-card {
  position: relative;
  isolation: isolate;
  border: 1px solid #e7d9c7;
  background: linear-gradient(135deg, #fffefc 0%, #f7efe3 100%);
  padding: 1.35rem 1.35rem 1.45rem;
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.catalog-hero-card::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -120px;
  top: -170px;
  background: radial-gradient(circle, rgba(188, 160, 117, 0.25) 0%, rgba(188, 160, 117, 0) 72%);
  z-index: -1;
}

.catalog-hero-card::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(188, 160, 117, 0) 0%, rgba(188, 160, 117, 0.5) 50%, rgba(188, 160, 117, 0) 100%);
}

.catalog-hero-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a6e4c;
  font-weight: 600;
}

.catalog-hero-card h2 {
  margin: 0 0 0.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 4vw, 2.95rem);
  font-weight: 600;
  line-height: 1;
  color: #1f1a14;
}

.catalog-hero-card p {
  margin: 0.25rem 0 0;
  color: #6e6050;
  max-width: 64ch;
}

.catalog-hero-meta {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.catalog-hero-meta span {
  border: 1px solid #dccdb7;
  background: rgba(255, 255, 255, 0.75);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #6a5336;
}

.catalog-campaign-banner {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  border: 1px solid #e7d9c7;
  background: linear-gradient(135deg, #fffefc 0%, #f7efe3 100%);
  padding: 1rem 1.1rem;
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.catalog-campaign-banner-media {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-height: 200px;
}

.catalog-campaign-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-campaign-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a6e4c;
  font-weight: 600;
}

.catalog-campaign-title {
  margin: 0 0 0.35rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: #1f1a14;
}

.catalog-campaign-desc {
  margin: 0 0 0.75rem;
  color: #6e6050;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 56ch;
}

.catalog-campaign-exit {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5c4a32;
  border-bottom: 1px solid rgba(92, 74, 50, 0.45);
  padding-bottom: 2px;
  text-decoration: none;
}

.catalog-campaign-exit:hover {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

.catalog-page-main--campaign .catalog-family-filters,
.catalog-page-main--campaign #catalog-sub-wrap {
  display: none !important;
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(250px, 280px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 118px;
}

.catalog-filter-wrap {
  border: 1px solid #eee5d9;
  background: #fffdfb;
  padding: 1rem;
}

.catalog-search label,
.catalog-sort label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.catalog-search input,
.catalog-sort select {
  width: 100%;
  height: 44px;
  border: 1px solid #dac9b1;
  background: linear-gradient(180deg, #ffffff 0%, #fdf9f3 100%);
  padding: 0 0.75rem;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.catalog-search input:focus,
.catalog-sort select:focus {
  outline: none;
  border-color: #bfa176;
  box-shadow: 0 0 0 3px rgba(188, 160, 117, 0.16);
}

.catalog-sort select {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 8px;
  padding-right: 2.5rem;
  cursor: pointer;
  background-image:
    linear-gradient(180deg, #ffffff 0%, #fdf9f3 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%237a6446' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-size: auto, 16px;
  background-position: 0 0, calc(100% - 12px) 50%;
}

.catalog-sort select:hover {
  border-color: #c9b08d;
}

.catalog-sort-sidebar {
  margin-top: 0.7rem;
}

.catalog-family-filters {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}

/** İlçe / SEO chip satırları: başlıkla aynı hizada ortalanmış blok */
.catalog-family-filters--center {
  justify-content: center;
  text-align: center;
}

.catalog-sub-wrap {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid #ebe4da;
}

.catalog-sub-wrap[hidden] {
  display: none !important;
}

.catalog-sub-label {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f593d;
  font-weight: 700;
}

.catalog-sub-chips .catalog-chip {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.76rem;
}

.catalog-chip {
  border: 1px solid #d9c8b0;
  background: #fff;
  color: #5f4c35;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-sizing: border-box;
}

a.catalog-chip {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.catalog-chip.is-active,
.catalog-chip:hover {
  background: #1b1b1b;
  border-color: #1b1b1b;
  color: #fff;
}

.catalog-clear-btn {
  margin-top: 0.9rem;
  width: 100%;
  min-height: 40px;
  border: 1px solid #d4c1a7;
  background: #fff;
  color: #5f4c35;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.68rem;
}

.catalog-clear-btn:hover {
  background: #f7efe5;
}

.catalog-content {
  min-width: 0;
}

.catalog-page-main #flower-list-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.catalog-page-main #flower-list-grid .product-item {
  width: 100%;
  max-width: none;
}

.catalog-content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.catalog-open-filters {
  display: none;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.catalog-open-filters:hover {
  background: #111;
  color: #fff;
}

.catalog-filter-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
}

.catalog-filter-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.catalog-filter-modal__sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 16px 16px 0 0;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -22px 46px rgba(17, 17, 17, 0.2);
  max-height: min(78vh, 720px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.catalog-filter-modal__head {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  padding: 0.7rem 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.catalog-filter-modal__close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: #fff;
  font-size: 1.3rem;
  line-height: 1;
}

.catalog-filter-modal__body {
  padding: 0.85rem 0.85rem 1rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.catalog-filter-modal__foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0.75rem 0.85rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border-light);
  background: #fff;
}

.catalog-filter-modal__foot .catalog-clear-btn,
.catalog-filter-modal__foot .catalog-modal-apply {
  margin-top: 0;
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 0.9rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

.catalog-clear-btn--ghost {
  background: #fff;
  color: #111;
  border-color: #111;
}

.catalog-modal-apply {
  border: 1px solid #111;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 0.85rem 0.9rem;
}

@media (max-width: 768px) {
  .catalog-open-filters {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobilde filtreleri modala taşıyoruz */
  .catalog-sidebar {
    display: none;
  }
}

.catalog-result-count {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.catalog-active-filters {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.catalog-active-tag {
  border: 1px solid #dfd3c3;
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  font-size: 0.68rem;
  color: #6d5a42;
  background: #fff;
}

.catalog-active-tag.is-muted {
  color: #8f816f;
  background: #fbf8f2;
}

.catalog-empty {
  grid-column: 1 / -1;
  border: 1px solid #eadfce;
  background: #fffdfa;
  padding: 1.2rem;
  text-align: center;
  color: var(--text-muted);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.detail-image-wrap {
  background: var(--surface-color);
}

.detail-slider {
  position: relative;
}

.detail-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.detail-slide {
  opacity: 0;
  transition: opacity 0.35s ease;
  position: absolute;
  inset: 0;
}

.detail-slide.is-active {
  opacity: 1;
  position: relative;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  background: rgba(17, 17, 17, 0.7);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}

.slider-nav.prev {
  left: 10px;
}

.slider-nav.next {
  right: 10px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.slider-dots .dot {
  appearance: none;
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  padding: 0;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.25);
}

.slider-dots .dot.is-active {
  background: #fff;
}

.slider-thumbs {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.6rem;
  width: 100%;
}

.slider-thumbs .thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  border-radius: 6px;
  border: 1px solid #dfd7cd;
  background: #fff;
  padding: 0;
  overflow: hidden;
  position: relative;
  opacity: 0.78;
  transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.slider-thumbs .thumb:hover {
  opacity: 1;
}

.slider-thumbs .thumb.is-active {
  opacity: 1;
  border-color: #9f8157;
  transform: translateY(-1px);
}

.slider-thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-breadcrumb {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.detail-campaign-pill {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.detail-campaign-pill a {
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(188, 160, 117, 0.45);
  padding-bottom: 1px;
}

.detail-campaign-pill a:hover {
  color: var(--text-dark);
  border-bottom-color: var(--text-dark);
}

.detail-campaign-pct {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.detail-info h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  margin: 0 0 0.5rem;
}

.detail-price {
  font-size: 1.2rem;
  margin: 0 0 1rem;
}

.detail-price-current {
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 600;
}

.detail-price-current {
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 600;
}

.detail-desc {
  color: var(--text-muted);
  margin: 0 0 1.4rem;
}

.detail-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.detail-actions .btn-solid-dark,
.detail-actions .btn-whatsapp-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  text-align: center;
}

@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collections .product-grid--signature {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: min(100%, 960px);
  }

  .catalog-page-main #flower-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collections .product-grid--signature {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: min(100%, 900px);
  }
}

@media (max-width: 900px) {
  .hero-overlay-content {
    max-width: min(30rem, 100%);
    max-height: min(75dvh, calc(100% - 1.25rem));
    padding: clamp(0.75rem, 2.2vw, 1.65rem) clamp(0.65rem, 2.5vw, 1.35rem);
  }

  .hero-title {
    font-size: clamp(1.2rem, 3.2vw + 0.65rem, 2.35rem);
  }

  .collections .product-grid--signature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .discounted-products .product-grid--discounted {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
  }

  .main-nav {
    gap: 1.2rem;
    padding: 0.1rem 0 0.75rem;
    font-size: 0.76rem;
  }

  .nav-dropdown-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-dropdown-grid--mega {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(1500px, 96%);
    gap: 1.15rem 1rem;
    padding: 1.35rem 1rem 1.5rem;
  }

  .campaign-card {
    height: 380px;
  }

  .campaign-grid--single .campaign-card {
    height: min(500px, 62vh);
  }
}

@media (max-width: 768px) {
  .top-announcement {
    font-size: 0.63rem;
    padding: 0.45rem 0.6rem;
    letter-spacing: 0.03em;
  }

  .container {
    width: min(1300px, 94%);
  }

  .header-inner {
    /* Üst sıra: sol sosyal, orta marka, sağ sepet */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem;
    padding: 0.75rem 0.8rem !important;
    position: relative;
    /* Absolute elemanlar alttaki menünün üstüne taşmasın */
    overflow: hidden;
  }

  /* Mobil: sosyal ikonlar solda, layout'tan yer yemesin */
  .header-left {
    display: block;
    position: absolute;
    margin-left: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    font-size: 0;
    color: inherit;
  }

  /* Mobil: sosyal ikonlar yuvarlak buton gibi */
  .header-left .btn-whatsapp-outline,
  .header-left .btn-instagram-outline {
    width: 38px;
    height: 38px;
    min-height: 38px;
    border-radius: 50%;
    padding: 0;
    letter-spacing: 0;
  }

  .brand-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    text-align: center;
    /* sol: 2 ikon, sağ: 1 ikon */
    max-width: calc(100% - 210px);
    z-index: 2;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
  }

  .header-right {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
    margin-right: 0.2rem;
  }

  .header-actions--cart {
    gap: 0.4rem;
    z-index: 3;
    justify-content: flex-end;
  }

  /* Alt menü: linkler ortada dursun */
  .main-nav {
    justify-content: center;
    position: relative;
    z-index: 5;
  }

  .header-right .nav-link {
    display: none;
  }

  .header-right .btn-whatsapp-outline {
    width: 38px;
    height: 38px;
    min-height: 38px;
    border-radius: 50%;
    padding: 0;
    letter-spacing: 0;
  }
  .cart-icon-btn {
    width: 38px;
    min-width: 38px;
    height: 38px;
    border-radius: 50%;
    padding: 0;
  }

  .header-right .btn-whatsapp-outline .action-text,
  .header-right .btn-instagram-outline .action-text,
  .header-left .btn-whatsapp-outline .action-text,
  .header-left .btn-instagram-outline .action-text,
  .cart-icon-btn .action-text {
    display: none;
  }

  .header-right .btn-instagram-outline {
    width: 38px;
    height: 38px;
    min-height: 38px;
    border-radius: 50%;
    padding: 0;
    letter-spacing: 0;
  }

  .header-right .btn-whatsapp-outline .action-icon,
  .header-right .btn-instagram-outline .action-icon,
  .cart-icon-btn .action-icon {
    font-size: 1.05rem;
  }

  .brand-name {
    font-size: 1.45rem;
    line-height: 1.02;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
  }

  .brand-sub {
    display: block;
    font-size: clamp(0.54rem, 2.35vw, 0.62rem);
    letter-spacing: 0.08em;
    margin-top: 0.18rem;
    line-height: 1.25;
    max-width: min(12rem, calc(100vw - 9.5rem));
    white-space: normal;
    text-align: center;
    hyphens: none;
  }

  /* Mobil: adres çubuğu animasyonunda snap olmasın diye yükseklikleri vw tabanlı kilitle */
  .hero-banner {
    height: calc((var(--vh, 1vh) * 100) - 112px);
    min-height: 520px;
    max-height: 860px;
  }

  .hero-slide::before {
    background-image: var(--hero-bg-mobile);
    filter: blur(22px) saturate(1.08) brightness(0.9);
  }

  .hero-img {
    object-fit: cover;
  }

  .hero-overlay-content {
    top: auto;
    bottom: 0.9rem;
    left: 0.6rem;
    right: 0.6rem;
    transform: none;
    max-height: none;
    overflow: visible;
    -webkit-overflow-scrolling: auto;
  }

  .about-img {
    height: 100%;
  }

  .main-nav {
    justify-content: center;
    gap: 1rem;
    padding: 0.15rem 0 0.65rem;
    font-size: 0.72rem;
    overflow-x: auto;
    overflow-y: visible;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-dropdown-trigger {
    white-space: nowrap;
  }

  .nav-dropdown-panel {
    /* Mobil: tam ekran panel (click/touch sorunlarını azaltır) */
    position: fixed;
    left: 0;
    right: 0;
    /* Sticky header'ın üstüne binmesin */
    top: 112px;
    bottom: 0;
    transform: none;
    width: 100vw;
    max-height: none;
    overflow: auto;
    z-index: 200;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 22px 48px rgba(17, 17, 17, 0.18);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  /* Mobilde hover/focus-within yerine sadece JS (.is-open) kontrol etsin */
  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 0;
    pointer-events: none;
  }

  .nav-dropdown:hover .nav-caret,
  .nav-dropdown:focus-within .nav-caret {
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown-panel {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown.is-open .nav-caret {
    transform: rotate(180deg);
  }

  .nav-dropdown-panel::before {
    /* Üst header altında küçük güvenli boşluk */
    height: 0;
    top: 0;
  }

  .nav-dropdown-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-dropdown-grid--mega {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 1rem 1.1rem 1.25rem;
    gap: 1.2rem;
  }

  .nav-dropdown-col {
    border-right: 0;
    padding-right: 0;
  }

  .nav-dropdown-col--mega {
    padding: 0 0.35rem;
  }

  .detail-nav {
    justify-content: flex-start;
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.6rem;
  }

  .detail-nav::-webkit-scrollbar {
    display: none;
  }

  .detail-nav a {
    font-size: 0.68rem;
    padding: 0.44rem 0.68rem;
  }

  .back-home-link {
    display: none;
  }

  .section-space {
    padding-block: 3rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-media {
    /* Mobilde 9:16 oranı bozulmasın:
       yüksekliği sınırlamak yerine genişliği (max hedef yüksekliğe göre) sınırla */
    width: min(100%, calc(min(560px, calc(var(--vh, 1vh) * 66)) * 0.5625));
  }

  .about-img {
    height: 100%;
  }

  .hero-banner {
    /* Mobil: dikey hero — adres çubuğu snap'ini önlemek için --vh kilidi */
    height: calc((var(--vh, 1vh) * 100) - 112px);
    min-height: 520px;
    max-height: 860px;
  }

  .hero-slide {
    background-color: #1a1512;
  }

  .hero-slide::after {
    /* Altta metin kartı + dots için hafif kararma */
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.12) 42%,
      transparent 72%
    );
  }

  .hero-slide::before {
    background-image: var(--hero-bg-mobile);
    filter: blur(22px) saturate(1.08) brightness(0.9);
  }

  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .hero-slide.is-active .hero-img {
    transform: none;
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-img,
    .hero-slide.is-active .hero-img {
      transform: none;
    }
  }

  @keyframes heroPanelInMobile {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-overlay-content {
    top: auto;
    bottom: max(3.15rem, calc(env(safe-area-inset-bottom, 0px) + 2.6rem));
    left: max(0.5rem, env(safe-area-inset-left, 0px));
    right: max(0.5rem, env(safe-area-inset-right, 0px));
    transform: none;
    margin-left: auto;
    margin-right: auto;
    max-width: 22rem;
    max-height: min(36dvh, calc(100% - 4.25rem));
    padding: 0.65rem 0.55rem 0.7rem;
  }

  .hero-slide.is-active .hero-overlay-content {
    animation: heroPanelInMobile 0.5s ease forwards;
  }

  .hero-dots {
    bottom: max(0.55rem, env(safe-area-inset-bottom, 0px));
  }

  .hero-nav {
    width: 34px;
    height: 34px;
    font-size: 1.25rem;
  }

  .hero-nav.prev {
    left: 8px;
  }

  .hero-nav.next {
    right: 8px;
  }

  .hero-title {
    font-size: clamp(1.1rem, 4vw + 0.45rem, 1.85rem);
    line-height: 1.1;
    margin-bottom: 0.35rem;
    gap: 0.06em;
  }

  .hero-subtitle {
    font-size: clamp(0.76rem, 2.4vw, 0.88rem);
    line-height: 1.38;
    margin-bottom: 0.55rem;
    padding: 0;
  }

  .hero-overlay-content .btn-solid-dark {
    min-height: 42px;
    padding: 0.65rem 0.75rem;
  }

  .btn-solid-dark {
    width: 100%;
    min-height: 44px;
    padding: 0.85rem 1.25rem;
    font-size: 0.8rem;
  }

  .campaign-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .campaign-grid--triple {
    grid-template-columns: 1fr;
  }

  .campaign-grid--triple .campaign-card:nth-child(3) {
    grid-column: auto;
  }

  .campaign-card {
    height: 260px;
  }

  .campaign-grid--single .campaign-card {
    height: min(380px, 52vh);
  }

  .campaign-info {
    padding: 2rem 1rem 1rem;
  }

  .campaign-info h3 {
    font-size: 1.55rem;
  }

  .campaign-grid--single .campaign-info h3 {
    font-size: 1.75rem;
  }

  .section-title-center {
    margin-bottom: 1.3rem;
  }

  .section-title-center h2 {
    font-size: 2.35rem;
  }

  .section-title-center p {
    font-size: 0.94rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 0.5rem;
  }

  .collections .product-grid--signature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .discounted-products .product-grid--discounted {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .catalog-page-main #flower-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 0.5rem;
  }

  .product-image-container {
    aspect-ratio: 4 / 5;
    border-radius: 8px 8px 0 0;
  }

  .product-item {
    border-radius: 8px;
  }

  .product-meta {
    padding: 0.75rem 0.65rem 0.85rem;
    border-radius: 0 0 8px 8px;
  }

  .product-name {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .product-price {
    font-size: 0.82rem;
  }

  .product-subcategory {
    display: none;
  }

  .product-subtitle {
    display: none;
  }

  .product-footer-row {
    margin-top: 0.35rem;
  }

  .detail-main {
    padding: 2.2rem 0 4.2rem;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
  }

  .catalog-hero-card {
    padding: 1.1rem 1rem 1.15rem;
  }

  .catalog-hero-card::after {
    left: 1rem;
    right: 1rem;
  }

  .catalog-campaign-banner {
    grid-template-columns: 1fr;
    padding: 0.95rem;
  }

  .catalog-campaign-banner-media {
    max-height: 200px;
  }

  .detail-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .detail-info h2 {
    font-size: 2.2rem;
  }

  .detail-price {
    font-size: 1.05rem;
  }

  .detail-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .detail-actions .btn-solid-dark,
  .detail-actions .btn-whatsapp-outline {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .detail-actions .btn-whatsapp-outline {
    border-radius: 999px;
    min-height: 48px;
    height: auto;
    padding: 0.72rem 1rem;
    letter-spacing: 0.06em;
    justify-content: center;
  }

  .detail-actions .btn-whatsapp-outline .action-text {
    display: inline;
  }

  .slider-nav {
    width: 34px;
    height: 34px;
  }

  .slider-thumbs .thumb img {
    height: 100%;
  }

  .slider-thumbs .thumb {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
  }

  .cart-panel {
    right: 0;
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    border-radius: 14px 14px 0 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    transform: translateY(30px);
    max-height: 78vh;
  }

  .cart-panel.is-open {
    transform: translateY(0);
  }

  .cart-content {
    max-height: 72vh;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
  }
  /* Mobil ekstra küçük: kenar boşluğu yine kalsın */
  .site-header .header-inner {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }

  .brand-name {
    font-size: 1.35rem;
  }

  .hero-overlay-content {
    max-width: min(20rem, calc(100% - 0.75rem));
    padding: 0.55rem 0.5rem 0.6rem;
    bottom: max(2.95rem, calc(env(safe-area-inset-bottom, 0px) + 2.4rem));
    max-height: none;
  }

  .hero-title {
    font-size: clamp(1rem, 5vw + 0.35rem, 1.55rem);
  }

  .hero-banner {
    height: calc((var(--vh, 1vh) * 100) - 112px);
    min-height: 520px;
    max-height: 860px;
  }

  .hero-img {
    object-position: center 28%;
  }

  .detail-nav a {
    font-size: 0.64rem;
  }

  .product-grid,
  .catalog-page-main #flower-list-grid,
  .collections .product-grid--signature,
  .discounted-products .product-grid--discounted {
    gap: 0.55rem 0.4rem;
  }

  .product-meta {
    padding: 0.62rem 0.5rem 0.72rem;
  }

  .product-name {
    font-size: 0.78rem;
  }

  .product-price {
    font-size: 0.78rem;
  }
}