
/* Font vars: match theme.css — new design (blogdetail/blogitem use blog.css, untouched) */
:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --ink-dark: #111111;
--ink-soft: #555555;
--ink-light: #777777;

--section-bg-soft: #f3f3f3;
--section-bg-dark: #0d1117;
  
  
  
  --m29-ink: #1f2229;
  --m29-muted: #4f535a;
  --m29-soft-bg: #ececec;
  --m29-deep-bg: #080d17;
}


.add-to-cart button.button span {
font-family: var(--font-body) !important;
font-size: 13px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 5px;

}
.product-view.m29-layout {
  font-family: var(--font-body);
}

.product-view.m29-layout .product-img-box {
  text-align: center;
  overflow: hidden;
}

/* PDP image gallery — mask-reveal + Swiss-quiet luxury (scoped) */
.premium-gallery {
  --premium-gallery-curve: cubic-bezier(0.4, 0, 0.2, 1);
  --premium-gallery-duration: 0.7s;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

.premium-gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.premium-gallery__main .premium-gallery__layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity var(--premium-gallery-duration) var(--premium-gallery-curve),
    transform var(--premium-gallery-duration) var(--premium-gallery-curve),
    clip-path var(--premium-gallery-duration) var(--premium-gallery-curve);
  clip-path: inset(0 0 0 100%);
}

.premium-gallery__main .premium-gallery__layer.active {
  opacity: 1;
  transform: scale(1);
  clip-path: inset(0 0 0 0);
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .premium-gallery__main .premium-gallery__layer,
  .premium-gallery__thumb::after,
  .premium-gallery__thumb-visual {
    transition-duration: 0.01ms;
  }
}

.premium-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.25rem);
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  padding: 0.75rem 0 0.25rem;
}

.premium-gallery__thumb {
  position: relative;
  flex-shrink: 0;
  padding: 0 0 14px;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
}

.premium-gallery__thumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80px;
  max-width: 100%;
  height: 2px;
  background: #000000;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform var(--premium-gallery-duration) var(--premium-gallery-curve);
}

.premium-gallery__thumb.active::after {
  transform: translateX(-50%) scaleX(1);
}

.premium-gallery__thumb-visual {
  display: block;
  width: 80px;
  height: 80px;
  overflow: hidden;
  opacity: 0.5;
  filter: grayscale(1);
  transition:
    opacity var(--premium-gallery-duration) var(--premium-gallery-curve),
    filter var(--premium-gallery-duration) var(--premium-gallery-curve);
}

.premium-gallery__thumb.active .premium-gallery__thumb-visual,
.premium-gallery__thumb:hover .premium-gallery__thumb-visual,
.premium-gallery__thumb:focus-visible .premium-gallery__thumb-visual {
  opacity: 1;
  filter: grayscale(0);
}

.premium-gallery__thumb-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.premium-gallery__thumb:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 6px;
}

.product-view.m29-layout .product-shop {
  padding-top: 14px;
}

@media (min-width: 768px) {
  .product-view.m29-layout .pdp-col-info {
      position: sticky;
      top: 110px;
      align-self: flex-start;
      flex: 1 1 0%;
      min-width: 0;
  }
  .product-view.m29-layout .pdp-col-media {
      align-self: flex-start;
      flex: 0 0 45%;
      max-width: 45%;
  }
  /* Tek görsel: sütunda hafif küçült + ortala; mobil etkilenmez */
  .product-view.m29-layout .pdp-col-media .premium-gallery:not(.premium-gallery--multi) {
      width: 87%;
      max-width: 87%;
      margin-left: auto;
      margin-right: auto;
  }
  /* Çoklu: tam sütun genişliği + sol hizalı (thumb şeridi sola yanaşır, ana görsel büyür) */
  .product-view.m29-layout .pdp-col-media--multi {
      align-items: flex-start;
  }
  .product-view.m29-layout .pdp-col-media--multi .premium-gallery {
      width: 100%;
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
  }

  /* Çoklu görsel: thumbnail şeridi ana görselin solunda (mobilde yine altta, tek görselde dokunma yok) */
  .product-view.m29-layout .premium-gallery--multi {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 0.5rem;
  }
  .product-view.m29-layout .premium-gallery--multi .premium-gallery__main {
      order: 2;
      flex: 1 1 0%;
      min-width: 0;
      width: auto;
  }
  .product-view.m29-layout .premium-gallery--multi .premium-gallery__thumbs {
      order: 1;
      flex-direction: column;
      flex-wrap: nowrap;
      margin-top: 0;
      padding: 0;
      justify-content: flex-start;
      align-items: center;
      gap: 0.5rem;
      width: auto;
      flex: 0 0 auto;
  }
  .product-view.m29-layout .premium-gallery--multi .premium-gallery__thumb {
      padding: 0 0 10px;
  }
  .product-view.m29-layout .premium-gallery--multi .premium-gallery__thumb-visual {
      width: 70px;
      height: 70px;
  }
  .product-view.m29-layout .premium-gallery--multi .premium-gallery__thumb::after {
      width: 70px;
      max-width: 100%;
  }
}

.pdp-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #ffffff;
  border-top: 1px solid #e6e6e6;
  box-shadow: 0 -6px 22px rgba(16, 20, 28, 0.08);
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}
.pdp-sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.pdp-sticky-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
}
.pdp-sticky-cta__info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.pdp-sticky-cta__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: #1b1f26;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 52vw;
}
.pdp-sticky-cta__price {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #2d323a;
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.pdp-sticky-cta__btn {
  flex: 0 0 auto;
  background: #1f2229;
  color: #fff;
  border: none;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}
.pdp-sticky-cta__btn:hover {
  background: #2d323a;
}
@media (min-width: 1024px) {
  .pdp-sticky-cta { display: none; }
}

.product-view.m29-layout .product-name h1 {
  font-family: var(--font-display);
  font-family: var(--font-display) !important;
  font-size: inherit !important;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: normal;
  margin-bottom: 18px;
  color: #1b1f26;
}

.product-view.m29-layout .product-name h1 .title-tr {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: #8b9099;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.35;
}

.product-view.m29-layout .product-name h1 .title-en {
  display: block;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #1b1f26;
}

.product-view.m29-layout .product-name h1 .pdp-product-subtitle {
  display: block;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #6b7280;
  margin-top: 8px;
}

.product-view.m29-layout .product-name h1 .pdp-volume {
  display: block;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #232833;
  margin-top: 12px;
}

.product-view.m29-layout .product-info .price-box {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1rem;
}

.product-view.m29-layout .product-info .price-box .price,
.product-view .product-shop .price-box .price {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.55vw, 28px);
  font-weight: 300;
  letter-spacing: 0.015em;
}

.product-view.m29-layout .product-info .price-box .price--list {
  color: #9ca3af;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.product-view.m29-layout .product-info .price-box .price--current {
  color: #232833;
}
.product-view .product-shop .short-description {
    font-family: var(--font-body);
    font-size : 22px;
    line-height : 40px;
    font-weight: 300;
}
.product-view .product-info{
  padding-bottom: 0px;
  padding-top: 10px;
}

.product-view.m29-layout .product-options-bottom {
  margin-top: 28px;
  margin-bottom: 24px;
}



.product-view.m29-layout .add-to-cart .btn-cart {
  background-color: #1f2229 !important;
  color: #fff !important;
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  min-width: 232px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-view.m29-layout .add-to-cart .btn-cart:hover {
  background-color: #2d323a !important;
}

/* productdetail qty-holder: yatay [−] [input] [+] referans uyumlu */
.product-view.m29-layout .qty-holder {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid #dae2e6;
  border-radius: 0;
  overflow: hidden;
  vertical-align: middle;
  margin-right: 12px;
}

.product-view.m29-layout .qty-holder .qty_dec,
.product-view.m29-layout .qty-holder .qty_inc {
  width: 36px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: #8798a2;
  background: #fff;
  border: none;
  border-right: 1px solid #dae2e6;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}

.product-view.m29-layout .qty-holder .qty_inc {
  border-right: none;
  border-left: 1px solid #dae2e6;
}

.product-view.m29-layout .qty-holder .qty_dec:hover,
.product-view.m29-layout .qty-holder .qty_inc:hover {
  color: #1f2229;
  background: #f5f5f5;
}

.product-view.m29-layout .qty-holder .qty {
  width: 48px;
  height: 43px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #21293c;
  border: none;
  margin: 0;
  padding: 0 4px;
}

.product-view.m29-layout .short-description .std p {
  font-family: var(--font-body);
  font-size: clamp(18px, 1vw, 20px);
  line-height: 1.82;
  letter-spacing: 0.012em;
  font-weight: 300;
  color: #000;
  margin: 0;
  max-width: 46ch;
}

/* short-description: optional CMS block (.info-accordion), scoped BEM — templates/ProductTemplates/accordion-demo.html davranışı */
.product-view .product-shop .short-description .info-accordion {
  margin-top: 0;
  font-size: initial;
  line-height: normal;
  max-width: 46ch;
}

.product-view .product-shop .short-description .info-accordion__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 18px 0;
}

.product-view .product-shop .short-description .info-accordion__trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
}

.product-view .product-shop .short-description .info-accordion__icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.product-view .product-shop .short-description .info-accordion__icon::before,
.product-view .product-shop .short-description .info-accordion__icon::after {
  content: "";
  position: absolute;
  background: #111;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.product-view .product-shop .short-description .info-accordion__icon::before {
  width: 14px;
  height: 1px;
  top: 6px;
  left: 0;
}

.product-view .product-shop .short-description .info-accordion__icon::after {
  width: 1px;
  height: 14px;
  left: 6px;
  top: 0;
}

.product-view .product-shop .short-description .info-accordion__item.is-active .info-accordion__icon {
  transform: rotate(180deg);
}

.product-view .product-shop .short-description .info-accordion__item.is-active .info-accordion__icon::after {
  transform: scaleY(0);
  opacity: 0;
}

.product-view .product-shop .short-description .info-accordion__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.4px;
  transition: opacity 0.4s ease;
}

.product-view .product-shop .short-description .info-accordion__trigger:hover .info-accordion__title {
  opacity: 0.6;
}

.product-view .product-shop .short-description .info-accordion__panel {
  height: 0;
  overflow: hidden;
  transition: height 0.65s cubic-bezier(0.65, 0, 0.35, 1);
}

.product-view .product-shop .short-description .info-accordion__inner {
  padding-left: 28px;
  padding-top: 14px;
}

.product-view .product-shop .short-description .info-accordion__inner p {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  margin: 8px 0;
  font-size: 16px;
  line-height: 1.55;
  color: #444;
  font-family: var(--font-body);
  font-weight: 300;
  max-width: none;
}

.product-view .product-shop .short-description .info-accordion__item.is-active .info-accordion__inner p {
  opacity: 1;
  transform: translateY(0);
}

.product-view .product-shop .short-description .info-accordion__item.is-active .info-accordion__inner p:nth-child(1) { transition-delay: 0.05s; }
.product-view .product-shop .short-description .info-accordion__item.is-active .info-accordion__inner p:nth-child(2) { transition-delay: 0.1s; }
.product-view .product-shop .short-description .info-accordion__item.is-active .info-accordion__inner p:nth-child(3) { transition-delay: 0.15s; }
.product-view .product-shop .short-description .info-accordion__item.is-active .info-accordion__inner p:nth-child(4) { transition-delay: 0.2s; }
.product-view .product-shop .short-description .info-accordion__item.is-active .info-accordion__inner p:nth-child(5) { transition-delay: 0.25s; }
.product-view .product-shop .short-description .info-accordion__item.is-active .info-accordion__inner p:nth-child(6) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .product-view .product-shop .short-description .info-accordion__panel,
  .product-view .product-shop .short-description .info-accordion__icon,
  .product-view .product-shop .short-description .info-accordion__icon::before,
  .product-view .product-shop .short-description .info-accordion__icon::after,
  .product-view .product-shop .short-description .info-accordion__title,
  .product-view .product-shop .short-description .info-accordion__inner p {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .product-view .product-shop .short-description .info-accordion__inner p {
    opacity: 1;
    transform: none;
  }
}

.m29-detail-sections {
  margin-top: 62px;
  font-family: var(--font-body);
}

.main-container .container,
.main-container.col-main {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}

.m29-section-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.m29-clinical-results {
  background: var(--m29-soft-bg);
  padding: 78px 0 96px;
  margin-top: 10px;
}

.m29-clinical-results h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 3vw, 56px);
  line-height: 1.15;
  letter-spacing: 0.015em;
  margin: 0 0 56px;
  font-weight: 400;
  color: #1f2229;
  text-align: center;
}

.m29-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

/* 4 sütunlu Klinik Sonuçlar (font küçültülmüş) */
.m29-metrics-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 28px;
}
.m29-metrics-four .m29-metric-value {
  font-size: clamp(44px, 3.5vw, 56px);
  margin-bottom: 12px;
}
.m29-metrics-four .m29-metric-text {
  font-size: clamp(17px, 0.95vw, 21px);
  line-height: 1.4;
}

.m29-metric-value {
  font-family: var(--font-display);
  font-size: clamp(60px, 4.8vw, 76px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
  font-weight: 400;
  color: #1f2229;
}

.m29-metric-text {
  margin: 0;
  font-size: clamp(20px, 1.05vw, 25px);
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--m29-muted);
  max-width: 460px;
}

.m29-formula-band {
  background: #555;
  color: #f2f2f2;
  text-align: center;
  padding: 92px 20px 98px;
}

.m29-formula-band h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 3.3vw, 58px);
  line-height: 1.14;
  letter-spacing: 0.016em;
  margin: 0 0 22px;
  font-weight: 400;
  color: #f7f8fa;
}

.m29-formula-band p {
  margin: 0;
  font-size: clamp(22px, 1.25vw, 30px);
  line-height: 1.6;
  letter-spacing: 0.014em;
  color: #d6dae1;
}

.m29-nature-claim {
  background: #e8e4df;
  padding: 64px 0 72px;
  text-align: center;
}

.m29-nature-claim-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 2.5vw, 48px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
  font-weight: 400;
  color: #1f2229;
}

.m29-nature-claim-sub {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.1vw, 22px);
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin: 0;
  color: #5c6370;
}

.m29-ingredients {
  background: #fff;
  padding: 82px 0 96px;
}

.m29-ingredients h2 {
  font-family: var(--font-display);
  margin: 0 0 48px;
  font-size: clamp(44px, 3vw, 56px);
  line-height: 1.15;
  letter-spacing: 0.015em;
  font-weight: 400;
  color: #1f2229;
  text-align: center;
}

.m29-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 40px;
}

.m29-ingredients-grid .m29-ingredient-item:last-child {
  grid-column: 1 / -1;
  text-align: center;
}

.m29-ingredients-grid .m29-ingredient-item:last-child .m29-ingredient-toggler {
  justify-content: center;
}

.m29-ingredients-grid .m29-ingredient-item:last-child .m29-ingredient-desc {
  margin-left: 0;
}

/* 3 bileşenli grid: son öğe 3. sütunda kalsın */
.m29-ingredients-grid-three .m29-ingredient-item:last-child {
  grid-column: auto;
  text-align: left;
}
.m29-ingredients-grid-three .m29-ingredient-item:last-child .m29-ingredient-toggler {
  justify-content: flex-start;
}
.m29-ingredients-grid-three .m29-ingredient-item:last-child .m29-ingredient-desc {
  margin-left: 38px;
}

/* 9 bileşenli grid: son öğe (9.) 3. sütunda kalsın, ortalanmasın */
.m29-ingredients-grid-nine .m29-ingredient-item:last-child {
  grid-column: auto;
  text-align: left;
}
.m29-ingredients-grid-nine .m29-ingredient-item:last-child .m29-ingredient-toggler {
  justify-content: flex-start;
}
.m29-ingredients-grid-nine .m29-ingredient-item:last-child .m29-ingredient-desc {
  margin-left: 38px;
}

/* 6 bileşenli grid (3'ün katı): son öğe 3. sütunda kalsın, ortalanmasın */
.m29-ingredients-grid-six .m29-ingredient-item:last-child {
  grid-column: auto;
  text-align: left;
}
.m29-ingredients-grid-six .m29-ingredient-item:last-child .m29-ingredient-toggler {
  justify-content: flex-start;
}
.m29-ingredients-grid-six .m29-ingredient-item:last-child .m29-ingredient-desc {
  margin-left: 38px;
}

.m29-ingredient-item {
  font-family: var(--font-body);
  opacity: 0;
  transform: scale(0.92);
  filter: blur(6px);
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out, filter 1.2s ease-in-out;
}

.m29-ingredients-grid.m29-ingredients-animated .m29-ingredient-item {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.m29-ingredient-item .m29-ingredient-toggler {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 6px;
}

.m29-ingredient-item .m29-ingredient-plus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  color: #1f2229;
  background: none;
  border: none;
  cursor: pointer;
}

.m29-ingredient-item .m29-ingredient-title {
  font-size: clamp(20px, 1.15vw, 26px);
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: #20242b;
  font-weight: 500;
}

.m29-ingredient-item .m29-ingredient-desc {
  margin: 0 0 0 38px;
  padding-top: 4px;
  font-size: clamp(17px, 1vw, 21px);
  line-height: 1.55;
  letter-spacing: 0.008em;
  color: #30353f;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease-in-out, opacity 0.35s ease-in-out, padding-top 0.3s ease-in-out;
}

.m29-ingredient-item.is-open .m29-ingredient-desc {
  max-height: 280px;
  opacity: 1;
  padding-top: 10px;
}

.m29-ingredients-grid.m29-ingredients-animated .m29-ingredient-item:nth-child(1) { transition-delay: 0s; }
.m29-ingredients-grid.m29-ingredients-animated .m29-ingredient-item:nth-child(2) { transition-delay: 0.22s; }
.m29-ingredients-grid.m29-ingredients-animated .m29-ingredient-item:nth-child(3) { transition-delay: 0.44s; }
.m29-ingredients-grid.m29-ingredients-animated .m29-ingredient-item:nth-child(4) { transition-delay: 0.66s; }
.m29-ingredients-grid.m29-ingredients-animated .m29-ingredient-item:nth-child(5) { transition-delay: 0.88s; }
.m29-ingredients-grid.m29-ingredients-animated .m29-ingredient-item:nth-child(6) { transition-delay: 1.1s; }
.m29-ingredients-grid.m29-ingredients-animated .m29-ingredient-item:nth-child(7) { transition-delay: 1.32s; }
.m29-ingredients-grid.m29-ingredients-animated .m29-ingredient-item:nth-child(8) { transition-delay: 1.54s; }
.m29-ingredients-grid.m29-ingredients-animated .m29-ingredient-item:nth-child(9) { transition-delay: 1.76s; }

.m29-usage {
  background: #fff;
  padding: 78px 0 88px;
  font-family: var(--font-body);
}

.m29-usage h2 {
  font-family: var(--font-display);
  margin: 0 0 28px;
  font-size: clamp(44px, 3vw, 56px);
  line-height: 1.15;
  letter-spacing: 0.015em;
  font-weight: 400;
  color: #1f2229;
}

.m29-usage .m29-usage-text {
  margin: 0;
  font-size: clamp(19px, 1.1vw, 24px);
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #30353f;
  
}

@media (max-width: 768px) {
  .main-container .row {
    margin-left: 0;
  }

  .main-container .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .m29-usage {
    padding: 54px 0 62px;
  }

  .m29-usage h2 {
    font-size: clamp(34px, 8vw, 40px);
    margin-bottom: 20px;
  }

  .m29-usage .m29-usage-text {
    font-size: 18px;
    line-height: 1.65;
  }
}

@media (max-width: 1200px) {
  .m29-section-inner {
      padding: 0 20px;
  }

  .m29-metric-text {
      font-size: clamp(18px, 2vw, 22px);
  }

  .m29-formula-band p {
      font-size: clamp(20px, 2vw, 24px);
  }

  .m29-ingredient-item .m29-ingredient-title {
      font-size: clamp(18px, 2vw, 24px);
  }

  .m29-ingredient-item .m29-ingredient-desc {
      font-size: clamp(16px, 1.9vw, 20px);
  }
}

@media (max-width: 768px) {
  .product-view.m29-layout .product-name h1 {
      margin-bottom: 14px;
  }

  .product-view.m29-layout .product-name h1 .title-en {
      font-size: clamp(34px, 7vw, 42px);
  }

  .product-view.m29-layout .product-name h1 .pdp-volume {
      font-size: 16px;
      margin-top: 8px;
  }

  .product-view.m29-layout .product-info .price-box .price {
      font-size: clamp(19px, 4.8vw, 24px);
  }

  .product-view.m29-layout .short-description .std p {
      font-size: 16px;
      line-height: 1.72;
  }

  .m29-detail-sections {
      margin-top: 42px;
  }

  .m29-clinical-results,
  .m29-ingredients,
  .m29-nature-claim {
      padding: 54px 0 58px;
  }

  .m29-clinical-results h2,
  .m29-ingredients h2 {
      font-size: clamp(34px, 8vw, 40px);
      margin-bottom: 30px;
  }

  .m29-nature-claim-title {
      font-size: clamp(28px, 7vw, 36px);
  }

  .m29-nature-claim-sub {
      font-size: clamp(16px, 4vw, 18px);
  }

  .m29-metrics,
  .m29-ingredients-grid {
      grid-template-columns: 1fr;
      gap: 14px;
  }

  .m29-metric {
      margin-bottom: 14px;
  }

  .m29-metric-value {
      font-size: clamp(46px, 11vw, 56px);
      margin-bottom: 10px;
  }

  .m29-metric-text {
      font-size: 19px;
  }

  .m29-formula-band {
      padding: 58px 20px 64px;
  }

  .m29-formula-band h2 {
      font-size: clamp(34px, 8vw, 40px);
      margin-bottom: 16px;
  }

  .m29-formula-band p {
      font-size: 20px;
  }

  .m29-ingredient-item {
      margin-bottom: 0;
      padding-bottom: 0;
  }

  .m29-ingredient-item .m29-ingredient-title {
      font-size: 20px;
  }

  .m29-ingredient-item .m29-ingredient-desc {
      font-size: 17px;
      margin-left: 32px;
  }
}

/* STC Cream detail (accordion layout) */
.m29-detail-sections.stc-cream-detail {
  margin-top: 48px;
  font-family: var(--font-display);
}
.m29-detail-sections .stc-cream-hero {
  background: #e8e4df;
  text-align: center;
  padding: 56px 24px 44px;
}
.m29-detail-sections .stc-cream-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #1f2229;
  margin: 0 0 12px;
}
.m29-detail-sections .stc-cream-hero-subtitle {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2d323a;
  margin: 0 0 8px;
}
.m29-detail-sections .stc-cream-hero-subtitle-line {
  font-size: clamp(11px, 0.95vw, 13px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #2d323a;
  margin: 0 0 20px;
}
.m29-detail-sections .stc-cream-hero-line {
  width: 48px;
  border: none;
  border-top: 1px solid #2d323a;
  margin: 0 auto;
  opacity: 0.4;
}
.m29-detail-sections .stc-cream-tech {
  background: #fff;
  padding: 44px 36px 40px;
  max-width: 100%;
  text-align: center;
}
.m29-detail-sections .stc-cream-tech-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 400;
  color: #1f2229;
  margin: 0 0 18px;
  line-height: 1.25;
}
.m29-detail-sections .stc-cream-tech-text {
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.65;
  color: #30353f;
  margin: 0 auto;
  max-width: 720px;
}

/* Ürün detay: sinematik tam genişlik video + kelime reveal (birden fazla üründe kullanılabilir) */
.m29-detail-sections .product-cinema {
  margin: 0;
  padding: 0;
  background: #0f0f0f;
}
.m29-detail-sections .product-cinema__wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: min(85vh, 720px);
  overflow: hidden;
  background: #121212;
}
.m29-detail-sections .product-cinema__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: filter 2.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.m29-detail-sections .product-cinema__wrap.product-cinema--reveal-motion .product-cinema__video {
  transition-duration: 0.05s;
}
.m29-detail-sections .product-cinema__wrap.product-cinema--reveal .product-cinema__video {
  filter: blur(8px) brightness(0.86);
}
.m29-detail-sections .product-cinema__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(20px, 3.5vw, 48px);
  padding: clamp(16px, 4vw, 40px);
  pointer-events: none;
}
.m29-detail-sections .product-cinema__word {
  --cinema-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --cinema-dur: 2.2s;
  font-family: "Cormorant Garamond", var(--font-display), serif;
  font-weight: 300;
  font-size: clamp(26px, 3.4vw, 42px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f4f0ea;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.35em 0.65em 0.4em;
  margin: 0;
  line-height: 1.2;
  opacity: 0;
  filter: blur(12px);
  transform: scale(1.05);
  transition-property: opacity, filter, transform;
  transition-duration: var(--cinema-dur);
  transition-timing-function: var(--cinema-ease);
  transition-delay: 0s;
}
.m29-detail-sections .product-cinema__wrap.product-cinema--reveal .product-cinema__word {
  transition-delay: var(--word-delay, 0s);
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}
.m29-detail-sections .product-cinema__wrap.product-cinema--reveal-motion .product-cinema__word {
  transition-duration: 0.05s;
}
.m29-detail-sections .product-cinema__wrap.product-cinema--reveal-motion.product-cinema--reveal .product-cinema__word {
  transition-delay: 0s;
}
@media (max-width: 640px) {
  .m29-detail-sections .product-cinema__wrap {
    aspect-ratio: 9 / 16;
    max-height: min(88vh, 640px);
  }
  .m29-detail-sections .product-cinema__overlay {
    flex-direction: column;
    gap: clamp(28px, 8vw, 44px);
  }
  .m29-detail-sections .product-cinema__word {
    letter-spacing: 0.22em;
    font-size: clamp(22px, 6.5vw, 30px);
  }
}

.m29-detail-sections .stc-cream-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0;
}
.m29-detail-sections .stc-cream-accordion {
  background: #fff;
  text-align: center;
}
.m29-detail-sections .stc-cream-accordion-item {
  border-bottom: 1px solid #e0e0e0;
}
.m29-detail-sections .stc-cream-accordion-head,
.stc-cream-accordion-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 22px 36px;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.1vw, 22px);
  font-weight: 400;
  color: #1f2229;
  text-align: center;
  cursor: pointer;
  position: relative;
}
/* Ok ikonu: butonun sağında her zaman görünsün (HTML'de span olmasa da) */
.m29-detail-sections .stc-cream-accordion-head::after,
.stc-cream-accordion-head::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid #1f2229;
  border-bottom: 2px solid #1f2229;
  transform: rotate(45deg);
  margin-left: 8px;
  transition: transform 0.25s ease;
}
.m29-detail-sections .stc-cream-accordion-item.is-open .stc-cream-accordion-head::after,
.stc-cream-accordion-item.is-open .stc-cream-accordion-head::after {
  transform: rotate(-135deg);
}
.m29-detail-sections .stc-cream-accordion-title,
.stc-cream-accordion-title {
  flex: 1;
  text-align: center;
}
.m29-detail-sections .stc-cream-accordion-head:hover,
.stc-cream-accordion-head:hover {
  opacity: 0.85;
}
.m29-detail-sections .stc-cream-accordion-icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 1px solid #1f2229;
  border-bottom: 1px solid #1f2229;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.25s ease;
}
.m29-detail-sections .stc-cream-accordion-item.is-open .stc-cream-accordion-icon {
  margin-top: 2px;
  transform: rotate(-135deg);
}
.m29-detail-sections .stc-cream-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  text-align: center;
}
.m29-detail-sections .stc-cream-accordion-item.is-open .stc-cream-accordion-body {
  max-height: 900px;
}
.m29-detail-sections .stc-cream-accordion-body p,
.m29-detail-sections .stc-cream-accordion-body ul {
  margin: 0 auto 24px;
  padding: 0 36px;
  max-width: 720px;
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.65;
  color: #30353f;
}
.m29-detail-sections .stc-cream-accordion-body > *:first-child {
  padding-top: 12px;
}
.m29-detail-sections .stc-cream-accordion-body p + p {
  margin-top: 12px;
}
.m29-detail-sections .stc-cream-accordion-body ul {
  margin-top: 14px;
}
.m29-detail-sections .stc-cream-ingredient-list {
  list-style: none;
  padding-left: 0;
}
.m29-detail-sections .stc-cream-ingredient-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 10px;
}
.m29-detail-sections .stc-cream-ingredient-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: #1f2229;
}

/* pagedetail: hero + container layout */
.page-detail-hero {
  background: #555555;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}
.page-detail-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-detail-shell {
  background: #f5f5f4;
  padding: 56px 16px 80px;
}
@media (min-width: 768px) {
  .page-detail-shell {
    padding: 72px 24px 96px;
  }
}

@media (min-width: 768px) {
  .page-detail-card {
    padding: 56px 64px;
  }
}
.page-detail-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.15;
  font-weight: 500;
  color: var(--m29-ink, #1f2229);
  letter-spacing: -0.005em;
  margin: 0 0 28px;
}
@media (min-width: 768px) {
  .page-detail-title {
    margin-bottom: 40px;
  }
}
/* Card içindeki .content-row, hazır padding'leri (24px) sıfırlamalı — card kendi padding'ini koyuyor. */
.page-detail-card .content-row {
  padding-left: 0;
  padding-right: 0;
}
.page-detail-footnote {
  margin-top: 2rem;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--m29-muted, #4f535a);
}
.page-detail-footnote a {
  color: inherit;
  text-decoration: underline;
}

/* pagedetail: sözleşme / metin sayfası okunabilirlik */
.contacts-index-index .content-row {
  padding-left: 24px;
  padding-right: 24px;
}
.contacts-index-index .content-row h2.txh2 {
  margin-bottom: 32px;
}
.content-row .page-detail-body {
  max-width: 72ch;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.7;
  color: var(--m29-ink);
  letter-spacing: 0.01em;
}
.content-row .page-detail-body p {
  margin: 0 0 1em;
}
.content-row .page-detail-body p + p {
  margin-top: 1.25em;
}
.content-row .page-detail-body h3,
.content-row .page-detail-body h4 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--m29-ink);
  line-height: 1.35;
}
.content-row .page-detail-body h3 {
  font-size: 1.25em;
}
.content-row .page-detail-body h4 {
  font-size: 1.1em;
}
.content-row .page-detail-body ul,
.content-row .page-detail-body ol {
  padding-left: 1.5em;
  margin: 0 0 1em;
}
.content-row .page-detail-body li {
  margin-bottom: 0.35em;
}
.content-row .page-detail-body strong {
  font-weight: 600;
  color: var(--m29-ink);
}
.content-row .page-detail-body div {
  margin-bottom: 0.75em;
}
.content-row .page-detail-body > *:first-child {
  margin-top: 0;
}

@media (max-width: 768px) {
  .contacts-index-index .content-row {
    padding-left: 16px;
    padding-right: 16px;
  }
  .content-row .page-detail-body {
    font-size: 16px;
    line-height: 1.65;
    padding-left: 0;
    padding-right: 0;
  }
}

/* pagedetail: contactform (İletişim Bilgilerimiz) tasarım */
.content-row .page-contact-block {
  margin-top: 2.5rem;
  font-family: var(--font-body);
}
.content-row .page-contact-block .col-md-8 h2 {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--m29-ink);
  margin: 0 0 0.75rem;
  line-height: 1.35;
}
.content-row .page-contact-block .col-md-8 h3 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--m29-muted);
  margin: 0 0 0.4rem;
}
.content-row .page-contact-block .col-md-8 hr {
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 1.25em 0;
}
.content-row .page-contact-block .contact-info {
  padding-top: 0;
}
.content-row .page-contact-block .contact-info h2.legend {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--m29-ink);
  margin: 0 0 1.25rem;
  line-height: 1.3;
}
.content-row .page-contact-block .contact-info h2.legend b {
  font-weight: 700;
  color: var(--m29-ink);
}
.content-row .page-contact-block .contact-info .row {
  margin-bottom: 1rem;
}
.content-row .page-contact-block .contact-info .row:last-child {
  margin-bottom: 0;
}
.content-row .page-contact-block .contact-info i {
  float: left;
  width: 42px;
  height: 42px;
  background-color: #29363c;
  color: #fff;
  line-height: 42px;
  text-align: center;
  font-size: 16px;
  border-radius: 8px;
  margin-bottom: 0;
}
.content-row .page-contact-block .contact-info p {
  margin-left: 58px;
  margin-bottom: 0;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.5;
  color: var(--m29-ink);
}
.content-row .page-contact-block .contact-info a {
  color: inherit;
  text-decoration: none;
}
.content-row .page-contact-block .contact-info a:hover {
  color: #29363c;
}

@media (max-width: 768px) {
  .content-row .page-contact-block {
    margin-top: 1.75rem;
  }
  .content-row .page-contact-block .col-md-8 h2 {
    font-size: 1.25rem;
  }
  .content-row .page-contact-block .contact-info .row {
    margin-bottom: 0.85rem;
  }
  .content-row .page-contact-block .contact-info i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
  }
  .content-row .page-contact-block .contact-info p {
    margin-left: 52px;
    font-size: 15px;
  }
}

/* === PDP Varyant Seçici === */
.pdp-variants {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pdp-variant-group__head {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
  margin-bottom: 0.75rem;
  gap: 0.5rem;
}
.pdp-variant-group__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #111;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}
.pdp-variant-group__value {
  font-size: 0.875rem;
  color: #6b7280;
  font-style: normal;
  text-align: right;
}

.pdp-variant-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.625rem;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x proximity;
}
.pdp-variant-strip::-webkit-scrollbar { display: none; }
.pdp-variant-strip > * { scroll-snap-align: start; flex-shrink: 0; }
.pdp-variant-strip--swatches { gap: 0.875rem; padding: 4px 0 8px 8px; }

.pdp-swatch {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #f3f4f6;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.pdp-swatch:hover { transform: scale(1.05); }
.pdp-swatch--active {
  outline: 1px solid #111;
  outline-offset: 4px;
}
.pdp-swatch:focus-visible {
  outline: 1px solid #111;
  outline-offset: 4px;
}
.pdp-swatch--disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.pdp-swatch--disabled::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(135deg, transparent 47%, rgba(0,0,0,0.45) 49%, rgba(0,0,0,0.45) 51%, transparent 53%);
  pointer-events: none;
}

.pdp-pill {
  min-width: 72px;
  padding: 0.5rem 1rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #4b5563;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
.pdp-pill:hover { border-color: #9ca3af; }
.pdp-pill--active {
  background: #6b7280;
  color: #fff;
  border-color: #6b7280;
}
.pdp-pill--active:hover { border-color: #6b7280; }
.pdp-pill--disabled {
  color: #d1d5db;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: #d1d5db;
}
.pdp-pill--disabled:hover { border-color: #e5e7eb; }

/* ===========================================================================
   İletişim sayfası (/iletisim) — hero + bilgiler + form + harita
   İskelet/grid markup'ta Tailwind; component görünümü burada (BEM vanilla).
   =========================================================================== */
.contact-hero {
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(41, 54, 60, 0.06), transparent 60%),
    linear-gradient(135deg, #f5f5f4 0%, #eceae6 100%);
  padding: 7rem 1.5rem 3rem;
  text-align: center;
}
.contact-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}
.contact-hero__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--m29-ink, #1f2229);
  margin: 0;
}
.contact-hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--m29-muted, #4f535a);
  margin: 1rem auto 0;
  max-width: 56ch;
}

.contact-shell {
  background: #ffffff;
  padding: 3.5rem 1.25rem 5rem;
}
.contact-shell__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.contact-intro {
  max-width: 72ch;
  margin: 2.5rem auto 0;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
  color: var(--m29-ink, #1f2229);
}
.contact-intro p { margin: 0 0 1em; }
.contact-intro > *:first-child { margin-top: 0; }

/* Sol kart — iletişim bilgileri */
.contact-info-card {
  background: #fafaf9;
  border: 1px solid #e7e5e1;
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.contact-info-card--full {
  width: 100%;
}
.contact-info-card--full .contact-rows {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem 1.5rem;
}
@media (min-width: 640px) {
  .contact-info-card--full .contact-rows {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .contact-info-card--full .contact-rows {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.contact-info-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--m29-ink, #1f2229);
  margin: 0 0 1.5rem;
}
.contact-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.contact-row__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--m29-deep-bg, #080d17);
  color: #ffffff;
}
.contact-row__icon svg {
  width: 19px;
  height: 19px;
}
.contact-row__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  padding-top: 2px;
}
.contact-row__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--m29-muted, #6b7280);
}
.contact-row__value {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.45;
  color: var(--m29-ink, #1f2229);
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s ease;
}
a.contact-row__value:hover { color: #29363c; }
.contact-row__value--multiline { white-space: pre-line; }

.contact-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e7e5e1;
}
.contact-social__link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #d8d6d1;
  color: var(--m29-ink, #1f2229);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.contact-social__link svg { width: 18px; height: 18px; }
.contact-social__link:hover {
  background: var(--m29-deep-bg, #080d17);
  border-color: var(--m29-deep-bg, #080d17);
  color: #ffffff;
}

/* Sağ kart — form */
.contact-form-card {
  background: #ffffff;
  border: 1px solid #e7e5e1;
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.contact-form-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--m29-ink, #1f2229);
  margin: 0 0 1.5rem;
}
.contact-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-field__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--m29-muted, #6b7280);
}
.contact-field__hint {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--m29-ink, #1f2229);
}
.contact-field__input--captcha {
  max-width: 8rem;
}
.contact-field__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--m29-ink, #1f2229);
  background: #ffffff;
  border: 1px solid #d8d6d1;
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-field__input:focus {
  outline: none;
  border-color: var(--m29-ink, #1f2229);
  box-shadow: 0 0 0 3px rgba(31, 34, 41, 0.08);
}
.contact-field__input--invalid {
  border-color: #b45309;
}
.contact-field__input--invalid:focus {
  border-color: #b45309;
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.12);
}
textarea.contact-field__input { resize: vertical; min-height: 120px; }

.contact-field__error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #b45309;
}

.contact-form__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contact-form__submit {
  align-self: flex-start;
  margin-top: 0.25rem;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--m29-deep-bg, #080d17);
  border: none;
  border-radius: 8px;
  padding: 0.85rem 2.25rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.contact-form__submit:hover { background: #1f2229; }
.contact-form-note {
  font-family: var(--font-body);
  font-size: 14px;
  margin: 0.25rem 0 0;
}
.contact-form-note--ok { color: #166534; }
.contact-form-note--warn { color: #92400e; }

/* Harita */
.contact-map {
  margin-top: 3rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e7e5e1;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 42vw, 440px);
  border: 0;
}

@media (max-width: 640px) {
  .contact-hero { padding-top: 6rem; }
  .contact-shell { padding-top: 2.5rem; }
}
