/** Shopify CDN: Minification failed

Line 69:21 Unexpected "*"
Line 970:8 Expected identifier but found whitespace
Line 970:9 Unexpected "#2c2c2c"

**/
/* ============================================
   LAMITHRA CUSTOM CSS - Genel Iyilestirmeler
   Bu dosyayi assets/ klasorune yukleyin.
   theme.liquid'de base.css satirindan SONRA ekleyin:
   {{ 'lamithra-custom.css' | asset_url | stylesheet_tag }}
   ============================================ */

/* ---- GENEL PERFORMANS ---- */
/* [ASAMA 3.2] Performans iyilestirmeleri */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-heading-family: 'Outfit', sans-serif;
  --premium-accent: #bfa37e;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  content-visibility: auto;
}

/* [ASAMA 3.2] GPU hizlandirma: Hover animasyonlu elemanlar */
.card-wrapper,
.product-form__submit,
.cart__checkout-button,
.drawer__inner {
  will-change: transform;
  contain: layout style;
}

/* [ASAMA 3.2] Gorunmeyen section'lari tarayici icin optimize et */
.shopify-section:not(:first-child):not(:nth-child(2)):not(:nth-child(3)) {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* ---- MOBiL UYUMLULUK ---- */

/* Mobilde daha iyi dokunma alanlari */
@media screen and (max-width: 749px) {
  /* Butonlar mobilde daha buyuk */
  .button,
  .shopify-challenge__button,
  .customer button {
    min-height: 5.2rem;
    padding: 1.6rem 3.2rem;
    font-size: 1.4rem;
  }

  /* Mobilde page padding ayari */
  .page-width {
    padding: 0 1.2rem;
  }

  /* Mobilde section spacing */
  .section-template--*-padding,
  .shopify-section {
    scroll-margin-top: 6rem;
  }

  /* Mobilde urun kartlari arasi bosluk */
  .grid--2-col-tablet-down .grid__item {
    padding-bottom: 0.5rem;
  }

  /* Mobilde header daha kompakt */
  .section-header {
    position: sticky;
    top: 0;
    z-index: 4;
  }

  /* Mobilde footer daha okunakli */
  .footer-block--menu .footer-block__details-content {
    padding-bottom: 1.5rem;
  }

  /* Mobilde arama cubugu daha buyuk */
  .search__input {
    min-height: 4.4rem;
    font-size: 1.6rem;
  }

  /* Mobilde menu drawer iyilestirmesi */
  .menu-drawer__menu-item {
    padding: 1.2rem 0;
    font-size: 1.6rem;
  }

  /* Mobilde quantity input daha kolay dokunulabilir */
  .quantity__button {
    min-width: 4rem;
    min-height: 4rem;
  }

  .quantity__input {
    min-width: 4rem;
    font-size: 1.6rem;
  }

  /* Mobilde slideshow text daha okunakli */
  .banner__heading {
    font-size: 2.4rem;
  }

  .banner__text {
    font-size: 1.4rem;
  }
}

/* Tablet iyilestirmeleri */
@media screen and (min-width: 750px) and (max-width: 989px) {
  .page-width {
    padding: 0 2rem;
  }

  .grid--3-col-tablet .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }
}

/* ---- URUN SAYFASI IYILESTIRMELERI ---- */

/* Urun gorselleri daha iyi gosterim */
.product__media-wrapper .media {
  border-radius: var(--media-radius);
  overflow: hidden;
}

/* Fiyat daha belirgin */
.price-item--regular {
  font-weight: 700;
}

.price-item--sale {
  color: #c0392b;
  font-weight: 700;
}

.price-item--regular.price-item--last:not(:only-child) {
  text-decoration: line-through;
  opacity: 0.6;
}

/* Sepete ekle butonu vurgulu - Premium Donusum Odakli */
.product-form__submit {
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.6rem;
  padding: 1.8rem 3rem;
  background: #2c2c2c; /* Ana renk - Siyah/Koyu Gri */
  color: #fff;
  border: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.product-form__submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.product-form__submit:not([disabled]):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  background: #000;
}

.product-form__submit:not([disabled]):hover::after {
  left: 100%;
}

.product-form__submit[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Sepete Ekle Butonu - Mobil Vurgu */
@media screen and (max-width: 749px) {
  .product-form__submit {
    font-size: 1.5rem;
    padding: 1.6rem 2.4rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  }
}

/* Urun bilgileri bolumleri arasi cizgi */
.product__info-container > * + * {
  margin-top: 1rem;
}

.product__info-container .product__accordion {
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
  padding-top: 1.5rem;
}

/* Urun varyant secimi daha belirgin */
.product-form__input label {
  font-weight: 600;
  margin-bottom: 0.8rem;
}

/* Variant butonlari hover efekti */
.product-form__input input[type="radio"] + label {
  transition: all 0.2s ease;
}

.product-form__input input[type="radio"] + label:hover {
  border-color: rgb(var(--color-foreground));
}

/* Urun aciklamasi okunakli */
.product__description .rte {
  line-height: 1.8;
}

.product__description .rte p + p {
  margin-top: 1.2rem;
}

/* ---- SEPET VE CART DRAWER IYILESTIRMELERI ---- */

/* Cart drawer acilis animasyonu */
.cart-drawer {
  transition: visibility 0.3s, opacity 0.3s;
}

.drawer__inner {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Cart item hover efekti */
.cart-item {
  transition: background-color 0.2s ease;
}

.cart-item:hover {
  background-color: rgba(var(--color-foreground), 0.02);
}

/* Checkout butonu vurgulu */
.cart__checkout-button {
  width: 100%;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-weight: 700;
  min-height: 5rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.cart__checkout-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Cart drawer footer sticky */
.drawer__footer {
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
  padding-top: 1.5rem;
}

/* Sepet toplam daha belirgin */
.totals__total-value {
  font-weight: 700;
  font-size: 1.8rem;
}

/* Bos sepet daha guzel */
.cart__empty-text {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Indirim badge daha belirgin */
.discounts__discount {
  color: #27ae60;
  font-weight: 600;
}

/* ---- ANA SAYFA TASARIM IYILESTIRMELERI ---- */

/* Slideshow iyilestirmesi */
.slideshow .banner__content {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Koleksiyon kartlari hover efekti */
.card-wrapper {
  transition: transform 0.3s ease;
}

.card-wrapper:hover {
  transform: translateY(-4px);
}

.card-wrapper:hover .card {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Urun kartlari iyilestirmesi */
.card__heading a {
  transition: color 0.2s ease;
}

.card__heading a:hover {
  opacity: 0.8;
}

/* Badge (etiketler) iyilestirmesi */
.card__badge .badge {
  font-weight: 700;
  letter-spacing: 0.05rem;
  padding: 0.4rem 0.8rem;
}

/* Section baslik stili */
.section-header .title {
  position: relative;
}

/* Rich text section */
.rich-text .rich-text__text {
  line-height: 1.8;
}

/* Image with text section */
.image-with-text .image-with-text__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Multicolumn daha esit yukseklik */
.multicolumn-card {
  height: 100%;
}

/* ---- GENEL UX IYILESTIRMELERI ---- */

/* Link hover efektleri */
a:focus-visible {
  outline: 2px solid rgb(var(--color-foreground));
  outline-offset: 3px;
  border-radius: 3px;
}

/* Form elementleri */
.field__input:focus,
.select__select:focus {
  border-color: rgb(var(--color-foreground));
  box-shadow: 0 0 0 1px rgb(var(--color-foreground));
}

/* Animasyonlar daha yumusak */
@media (prefers-reduced-motion: no-preference) {
  .scroll-trigger.animate--slide-in {
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}

/* Reduced motion tercihi */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* [ASAMA 3.2] Reduced motion'da will-change kaldir */
  .card-wrapper,
  .product-form__submit,
  .cart__checkout-button,
  .drawer__inner {
    will-change: auto;
  }
}

/* Loading spinner daha gorunur */
.loading__spinner {
  opacity: 0.7;
}

/* Newsletter section daha cekici */
.newsletter-form__field-wrapper {
  max-width: 40rem;
  margin: 0 auto;
}

/* Footer iyilestirmesi */
.footer__content-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
}

/* Announcement bar */
.announcement-bar {
  font-weight: 600;
  letter-spacing: 0.05rem;
}

/* ---- ERISILEBILIRLIK ---- */

/* Skip to content link */
.skip-to-content-link:focus {
  z-index: 9999;
  position: fixed;
  top: 1rem;
  left: 1rem;
  padding: 1rem 2rem;
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  border-radius: var(--buttons-radius);
}

/* Daha iyi focus gostergesi */
:focus-visible {
  outline: 2px solid rgb(var(--color-foreground));
  outline-offset: 2px;
}

/* Screen reader only - gelismis */
.visually-hidden:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* ---- [ASAMA 2 & 3] PREMIUM GORSEL VE ETKILESIM IYILESTIRMELERI ---- */

/* Smooth Hover Effect for Product Cards */
.media--hover-effect > img + img {
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
  will-change: opacity, transform;
}

.card-wrapper:hover .media--hover-effect > img:first-child:not(:only-child) {
  opacity: 0;
  transform: scale(1.05);
}

.card-wrapper:hover .media--hover-effect > img + img {
  opacity: 1;
  transform: scale(1.08);
}

/* Add to Cart Micro-interaction */
.quick-add__submit.is-success {
  background-color: #28a745 !important;
  color: white !important;
  border-color: #28a745 !important;
  transform: scale(1.02);
  transition: all 0.3s ease;
}

.quick-add__submit.is-success span {
  display: none !important;
}

.quick-add__submit.is-success::before {
  content: '✓ Sepete Eklendi';
  display: inline-block;
  animation: checkmark-pop 0.4s ease forwards;
}

@keyframes checkmark-pop {
  0% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* LCP Optimization - Critical CSS Preload Readiness */
.motion-reduce {
  transition: none !important;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-reduce {
    transition: transform 0.3s ease !important;
  }
}

/* Mobile optimizations for Hover (Disable scales to prevent jumpiness) */
@media screen and (max-width: 749px) {
  .card-wrapper:hover {
    transform: none !important;
  }
  .card-wrapper:hover .media--hover-effect > img + img {
    transform: none !important;
  }
}

/* --- MOBILE PRODUCT PAGE UX (BOOST ABOVE THE FOLD) --- */
@media screen and (max-width: 749px) {
  /* Fix black/white gaps and force aspect ratio with safe gallery padding */
  .product__media-gallery .media img {
    object-fit: contain !important;
    padding: 2% !important;
    background-color: rgb(var(--color-background)) !important;
  }

  .product__media-gallery .media {
    aspect-ratio: 4 / 5 !important;
    padding-bottom: 0 !important; /* Overriding Dawn's default padding-based ratios */
    background-color: rgb(var(--color-background)) !important;
  }

  /* Limit height to ensure title and button are visible */
  .product__media-wrapper {
    max-height: 48vh !important;
    overflow: hidden;
    margin-bottom: 1.5rem !important; /* Tighten gap between image and info */
  }

  /* Optimize Product Info Spacing */
  .product__info-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .product__title {
    margin-top: 0.5rem !important;
    margin-bottom: 1rem !important;
  }

  .product__title h1 {
    font-size: 2.2rem !important; /* Slightly smaller for better line-fitting */
    line-height: 1.2;
  }

  .product__info-wrapper {
    margin-top: -1rem !important; /* Pull content up */
  }

  /* Success micro-interaction placement */
  .product-form__buttons {
    margin-top: 1.5rem !important;
  }
}

/* --- FOOTER TRUST BADGES (PREMIUM MONOCHROME) --- */
.footer__trust-badges {
  margin-top: 2.5rem;
}

.footer__trust-title {
  margin: 0 0 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  opacity: 0.8;
  font-size: 1.1rem;
}

.footer__trust-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-icon {
  height: 20px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: grayscale(1) brightness(2); /* Force monochrome white/light grey */
}

.trust-icon:hover {
  opacity: 1;
}

.iyzico-logo {
  max-width: 90px;
  height: auto;
}

.troy-logo {
  height: 18px;
}

@media screen and (max-width: 749px) {
  .footer__trust-badges {
    margin-top: 3rem;
    text-align: left;
  }
  
  .footer__trust-icons {
    gap: 1.2rem;
  }
  
  .trust-icon {
    height: 16px;
  }
  
  .iyzico-logo {
    max-width: 80px;
  }
}

/* --- SANATSEVER DENEYIMLERI (GOOGLE REVIEWS) --- */
.section-e9b400eb-14b3-4632-ac8d-4ba617c59325-padding .multicolumn-card {
  position: relative;
  overflow: visible !important;
}

.section-e9b400eb-14b3-4632-ac8d-4ba617c59325-padding .multicolumn-card::before {
  content: '✓ Verified Google Review';
  position: absolute;
  top: -10px;
  right: 20px;
  background: #34A853;
  color: white;
  font-size: 1rem;
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(52, 168, 83, 0.3);
  z-index: 2;
}

.section-e9b400eb-14b3-4632-ac8d-4ba617c59325-padding h3 {
  color: #ffcc00 !important; /* Premium Gold Stars */
  font-size: 1.8rem !important;
  margin-bottom: 2rem !important;
}

.section-e9b400eb-14b3-4632-ac8d-4ba617c59325-padding .rte {
  font-style: italic;
  line-height: 1.8;
  opacity: 0.95;
}

.section-e9b400eb-14b3-4632-ac8d-4ba617c59325-padding b {
  display: block;
  margin-top: 1.5rem;
  color: rgba(var(--color-foreground), 0.7);
  letter-spacing: 0.05rem;
}

@media screen and (max-width: 749px) {
  .section-e9b400eb-14b3-4632-ac8d-4ba617c59325-padding .multicolumn-list {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .section-e9b400eb-14b3-4632-ac8d-4ba617c59325-padding .multicolumn-list__item {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 2rem;
  }
  
  .section-e9b400eb-14b3-4632-ac8d-4ba617c59325-padding .multicolumn-card {
    padding: 20px !important;
    margin: 0 auto !important;
    max-width: 100% !important;
  }
  
  .section-e9b400eb-14b3-4632-ac8d-4ba617c59325-padding .multicolumn-card::before {
    right: 10px;
    font-size: 0.8rem;
  }
}

/* --- MOBILE STICKY ADD TO CART BAR --- */
.sticky-atc-bar {
  display: none; /* Hidden on desktop by default */
}

@media screen and (max-width: 749px) {
  .sticky-atc-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Premium Dark Glassmorphism */
    background: rgba(10, 10, 10, 0.9) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 1rem 1.5rem calc(1rem + env(safe-area-inset-bottom));
    z-index: 1000;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5) !important;
    align-items: center;
    gap: 1.2rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
    visibility: hidden;
  }

  .sticky-atc-bar.active {
    transform: translateY(0);
    visibility: visible;
  }

  .sticky-atc-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
    background: #111;
    border: 1px solid #333;
  }

  .sticky-atc-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .sticky-atc-title {
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    color: #fff;
  }

  .sticky-atc-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
  }

  .sticky-atc-button {
    flex: 1.4;
    background: var(--premium-accent);
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 1.2rem;
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  body.has-sticky-atc {
    padding-bottom: 90px !important;
  }
}

/* --- PREMIUM CONVERSION & UX UPGRADES --- */

/* 1. Product Title Badge (Ar-Ge / 3D Modelleme) */
.product-premium-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.8rem 1.2rem;
  background-color: #111;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: 1.2rem;
  color: #ccc;
}
/* --- [PDP OVERHAUL] SPECS BLUF & PREMIUM BLOCKS --- */
.product-specs-bluf {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: #111;
  border-left: 4px solid var(--premium-accent);
  border-radius: 4px;
}

.specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.specs-list li {
  font-size: 1.4rem;
  line-height: 1.4;
  color: #ccc;
}

.specs-list li strong {
  display: block;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05rem;
}

/* Premium Fallback for Production Method */
.process-fallback {
  background: linear-gradient(135deg, #111 0%, #000 100%);
  border: 1px solid #333;
  position: relative;
  overflow: hidden;
}

.process-fallback::before {
  content: '%100 EL YAPIMI';
  position: absolute;
  top: 10px;
  right: -25px;
  background: var(--premium-accent);
  color: white;
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1rem;
}

/* CLS Stabilization */
.product__description {
  min-height: 200px; /* Placeholder to prevent height jump */
}

@media screen and (max-width: 749px) {
  .product-specs-bluf {
    padding: 1.5rem;
  }
  .specs-list {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .product__description {
    min-height: auto;
  }
}
.premium-badge-text {
  font-weight: 500;
  letter-spacing: 0.05rem;
}
.premium-badge-divider {
  color: #ccc;
}
.premium-badge-patent {
  font-weight: 700;
  color: #bfa37e;
}

/* --- ARTIST BIOGRAPHY SECTION --- */
.artist-bio-section {
  margin-top: 4rem;
  padding: 3rem;
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  display: flex;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.artist-bio-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--premium-accent);
}

.artist-bio-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.artist-bio-content {
  flex-grow: 1;
}

.artist-bio-content h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading-family);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.artist-bio-content .artist-title {
  display: block;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--premium-accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.artist-bio-text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #ccc;
  margin: 0;
}

@media screen and (max-width: 749px) {
  .artist-bio-section {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
  }
  
  .artist-bio-section::before {
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
  }
}
  color: #2c2c2c;
  display: inline-flex;
  align-items: center;
}

/* 2. Süreç Bilgilendirme Bloğu (Bir Eserin Doğuşu) */
.product-process-wrapper {
  margin: 3rem 0;
  padding: 2.5rem;
  border-radius: 8px;
  background-color: #111;
  border-left: 4px solid #bfa37e;
}
.product-process-header {
  margin-bottom: 2rem;
}
.product-process-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.1rem;
  color: #fff;
}
.product-process-subtitle {
  font-size: 1.3rem;
  color: #ddd;
  margin: 0;
  font-style: italic;
}
.product-process-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.process-icon {
  color: #bfa37e;
  flex-shrink: 0;
}
.process-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.4rem 0;
  color: #eee;
}
.process-desc {
  font-size: 1.25rem;
  color: #eee;
  margin: 0;
  line-height: 1.6;
}

/* 3. Sepet Güvenlik Mühürleri (Security Seals) */
.cart-security-seals {
  margin-top: 1.5rem;
  text-align: center;
  padding: 1rem;
  background-color: #111;
  border: 1px solid #333;
  border-radius: 4px;
}
.security-seal-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: #ccc;
  margin-bottom: 0.5rem;
}
.security-seal-item svg {
  color: #12b76a; /* Trust Green */
}
.security-seal-item:last-child {
  margin-bottom: 0;
}

/* 4. Mobil Buton Optimizasyonu (Finger-friendly Checkout) */
@media screen and (max-width: 749px) {
  .product-form__submit, 
  .cart__checkout-button {
    width: 100% !important;
    padding: 1.6rem !important; /* Extremely finger friendly */
    font-size: 1.5rem !important;
  }
}/* --- QUICK ADD BUTTONS PREMIUM OVERRIDE --- */
.quick-add__submit {
  background: #2c2c2c !important;
  color: #fff !important;
  border: 1px solid #444 !important;
  border-radius: 4px !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  font-weight: 700 !important;
  letter-spacing: 0.12rem !important;
  text-transform: uppercase !important;
  min-height: 4.4rem !important;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
  margin-top: 1rem !important;
}

.quick-add__submit:hover {
  background: #000 !important;
  border-color: var(--premium-accent) !important;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3) !important;
  transform: translateY(-2px) !important;
}

/* Accessibility: Better focus states */
.quick-add__submit:focus-visible {
  outline: 2px solid var(--premium-accent) !important;
  outline-offset: 3px !important;
}
/* --- CARD PRODUCT BUTTONS --- */
.card__content .button {
  background: #2c2c2c !important;
  color: #fff !important;
  border: 1px solid #444 !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  font-size: 1.2rem !important;
  padding: 0.8rem 1.5rem !important;
  transition: all 0.3s ease !important;
  margin-top: 1rem !important;
}

.card__content .button:hover {
  background: #000 !important;
  border-color: var(--premium-accent) !important;
  transform: translateY(-2px) !important;
}

/* Hide the individual author bio card in blog posts */
.artist-bio-section {
  display: none !important;
}

/* ==========================================================================
   CRO & UX GELİŞTİRMELERİ - KİŞİSELLEŞTİRME, İYZİCO TAKSİT & GÜVEN ROZETLERİ
   ========================================================================== */

/* --- 1. KİŞİSELLEŞTİRME ALANI (CUSTOM LINE-ITEM PROPERTIES) --- */
.custom-product-fields {
  margin: 1.8rem 0 2.2rem 0;
  padding: 1.6rem 1.8rem;
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.85) 0%, rgba(18, 18, 18, 0.95) 100%);
  border: 1px solid rgba(191, 163, 126, 0.25);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.custom-field-group {
  margin-bottom: 1.4rem;
}

.custom-field-group:last-of-type {
  margin-bottom: 0.8rem;
}

.custom-field-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 0.7rem;
  letter-spacing: 0.02rem;
}

.custom-field-icon {
  display: inline-flex;
  align-items: center;
  color: var(--premium-accent, #bfa37e);
}

.custom-field-required {
  color: #e57373;
  font-weight: bold;
}

.custom-field-badge {
  margin-left: auto;
  font-size: 1.05rem;
  font-weight: 600;
  color: #bfa37e;
  background: rgba(191, 163, 126, 0.12);
  border: 1px solid rgba(191, 163, 126, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.05rem;
}

.custom-field-input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: #0f0f0f;
  color: #fff;
  border: 1px solid #333;
  border-radius: 6px;
  font-size: 1.4rem;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.custom-field-input:focus {
  border-color: var(--premium-accent, #bfa37e);
  box-shadow: 0 0 0 3px rgba(191, 163, 126, 0.2);
  background: #141414;
}

.custom-field-input::placeholder {
  color: #666;
  font-size: 1.3rem;
}

/* Dosya Yükleme Özel Alanı */
.custom-file-upload-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #0f0f0f;
  border: 1px dashed rgba(191, 163, 126, 0.4);
  border-radius: 6px;
  padding: 1rem 1.4rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.custom-file-upload-box:hover {
  border-color: var(--premium-accent, #bfa37e);
  background: rgba(191, 163, 126, 0.04);
}

.custom-file-upload-box.has-file {
  border-style: solid;
  border-color: rgba(191, 163, 126, 0.7);
  background: rgba(191, 163, 126, 0.08);
}

.custom-file-native-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.custom-file-custom-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  cursor: pointer;
  pointer-events: none;
}

.custom-file-icon {
  color: var(--premium-accent, #bfa37e);
  display: flex;
  align-items: center;
}

.custom-file-text {
  font-size: 1.3rem;
  color: #bbb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 40px);
}

.custom-file-upload-box.has-file .custom-file-text {
  color: #fff;
  font-weight: 500;
}

.custom-file-remove-btn {
  position: relative;
  z-index: 3;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
  transition: background 0.2s ease;
}

.custom-file-remove-btn:hover {
  background: #e53935;
}

.custom-field-helper {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  color: #888;
  margin-top: 0.8rem;
  line-height: 1.4;
}

.custom-field-helper svg {
  color: var(--premium-accent, #bfa37e);
  flex-shrink: 0;
}

/* --- 2. İYZİCO TAKSİT ROZETİ VE MODAL ENTEGRASYONU --- */
.iyzco-installment-wrapper {
  margin: 1.2rem 0 1.6rem 0;
}

.iyzco-installment-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  background: linear-gradient(135deg, rgba(191, 163, 126, 0.09) 0%, rgba(20, 20, 20, 0.7) 100%);
  border: 1px solid rgba(191, 163, 126, 0.35);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  user-select: none;
}

.iyzco-installment-badge:hover {
  border-color: var(--premium-accent, #bfa37e);
  background: linear-gradient(135deg, rgba(191, 163, 126, 0.16) 0%, rgba(30, 30, 30, 0.85) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.iyzco-badge-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.iyzco-badge-icon {
  color: var(--premium-accent, #bfa37e);
  display: flex;
  align-items: center;
}

.iyzco-badge-text {
  font-size: 1.3rem;
  color: #e5e5e5;
}

.iyzco-badge-text strong {
  color: #fff;
  font-weight: 700;
}

.iyzco-badge-right {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.iyzco-badge-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--premium-accent, #bfa37e);
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.02rem;
}

.iyzco-arrow-icon {
  color: var(--premium-accent, #bfa37e);
  transition: transform 0.2s ease;
}

.iyzco-installment-badge:hover .iyzco-arrow-icon {
  transform: translateX(3px);
}

/* iyzco Modal */
.iyzco-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  animation: iyzcoFadeIn 0.25s ease-out;
}

@keyframes iyzcoFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.iyzco-modal-dialog {
  background: #141414;
  border: 1px solid rgba(191, 163, 126, 0.35);
  border-radius: 14px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  animation: iyzcoScaleUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes iyzcoScaleUp {
  from { transform: scale(0.95) translateY(10px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.iyzco-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 2rem;
  border-bottom: 1px solid #262626;
}

.iyzco-header-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.iyzco-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #1e1e1e;
  border: 1px solid #333;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}

.iyzco-logo-text {
  font-weight: 800;
  font-size: 1.3rem;
  color: #1a73e8;
  letter-spacing: -0.03rem;
}

.iyzco-header-titles {
  display: flex;
  flex-direction: column;
}

.iyzco-modal-title {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
}

.iyzco-modal-subtitle {
  font-size: 1.15rem;
  color: #888;
  margin-top: 0.2rem;
}

.iyzco-modal-close {
  background: transparent;
  border: none;
  color: #aaa;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.iyzco-modal-close:hover {
  color: #fff;
  background: #252525;
}

.iyzco-modal-body {
  padding: 2rem;
}

.iyzco-price-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1c1c1c;
  border: 1px solid #2d2d2d;
  padding: 1.2rem 1.6rem;
  border-radius: 8px;
  margin-bottom: 1.6rem;
}

.iyzco-price-summary-label {
  font-size: 1.35rem;
  color: #aaa;
  font-weight: 500;
}

.iyzco-price-summary-val {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--premium-accent, #bfa37e);
}

.iyzco-bank-tabs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.8rem;
  margin-bottom: 1.6rem;
  scrollbar-width: thin;
}

.iyzco-bank-tab {
  flex-shrink: 0;
  background: #1e1e1e;
  border: 1px solid #333;
  color: #bbb;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.iyzco-bank-tab:hover {
  background: #282828;
  color: #fff;
  border-color: #444;
}

.iyzco-bank-tab.active {
  background: rgba(191, 163, 126, 0.18);
  border-color: var(--premium-accent, #bfa37e);
  color: #fff;
}

.iyzco-table-container {
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.6rem;
}

.iyzco-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.iyzco-table th {
  background: #1e1e1e;
  color: #aaa;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.iyzco-table td {
  padding: 1.1rem 1.4rem;
  font-size: 1.35rem;
  color: #ddd;
  border-bottom: 1px solid #222;
}

.iyzco-table tr:last-child td {
  border-bottom: none;
}

.iyzco-col-count {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.iyzco-tag-free {
  font-size: 1.05rem;
  background: rgba(76, 175, 80, 0.15);
  color: #81c784;
  border: 1px solid rgba(76, 175, 80, 0.4);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.iyzco-highlight-row {
  background: rgba(191, 163, 126, 0.08);
}

.iyzco-highlight-row td {
  color: #fff;
}

.iyzco-security-notice {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #111;
  border: 1px solid #242424;
  padding: 1rem 1.4rem;
  border-radius: 8px;
}

.iyzco-sec-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.iyzco-sec-text {
  font-size: 1.2rem;
  color: #999;
  line-height: 1.4;
}

.iyzco-sec-text strong {
  color: #ccc;
}

/* --- 3. LÜKS GÜVEN ROZETLERİ BLOĞU (3 MADDELİK CRO TRUST BOX) --- */
.lamithra-trust-box {
  margin: 2.2rem 0;
  padding: 2rem;
  background: linear-gradient(180deg, #161616 0%, #0e0e0e 100%);
  border: 1px solid rgba(191, 163, 126, 0.3);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.lamithra-trust-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.lamithra-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease;
}

.lamithra-trust-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lamithra-trust-item:hover {
  transform: translateX(4px);
}

.lamithra-trust-icon-box {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(191, 163, 126, 0.12);
  border: 1px solid rgba(191, 163, 126, 0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-accent, #bfa37e);
}

.lamithra-trust-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.lamithra-trust-title {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02rem;
}

.lamithra-trust-desc {
  margin: 0;
  font-size: 1.25rem;
  color: #aaa;
  line-height: 1.45;
}

.lamithra-trust-footer {
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(191, 163, 126, 0.2);
  text-align: center;
}

.lamithra-trademark-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #d1b894;
  letter-spacing: 0.05rem;
  margin-bottom: 1.2rem;
}

.lamithra-payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.lamithra-payment-icons svg,
.lamithra-payment-icons img {
  height: 24px;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lamithra-payment-icons svg:hover,
.lamithra-payment-icons img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* --- 4. AKORDEON VE SEKME DETAYLARI (PRODUCT TABS) --- */
.product__accordion {
  border-top: 1px solid rgba(191, 163, 126, 0.2) !important;
  margin-top: 0 !important;
}

.product__accordion:last-of-type {
  border-bottom: 1px solid rgba(191, 163, 126, 0.2) !important;
}

.product__accordion details {
  transition: background-color 0.3s ease;
}

.product__accordion details[open] {
  background: rgba(191, 163, 126, 0.03);
}

.product__accordion summary {
  padding: 1.6rem 0 !important;
  cursor: pointer;
}

.product__accordion summary .summary__title {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.product__accordion summary .summary__title svg {
  color: var(--premium-accent, #bfa37e);
  width: 20px;
  height: 20px;
}

.product__accordion .accordion__title {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  letter-spacing: 0.03rem !important;
}

.product__accordion .accordion__content {
  padding: 0 0 1.8rem 3.2rem !important;
  color: #bbb;
  font-size: 1.35rem;
  line-height: 1.6;
}

.product__accordion .icon-caret {
  color: var(--premium-accent, #bfa37e) !important;
}

/* ==========================================================================
   5. MOBİL OPTİMİZASYONLARI & MOBİL CRO GELİŞTİRMELERİ
   ========================================================================== */

/* Mobil Sabit Satın Alma Çubuğu (Sticky Add to Cart - Mobile Only) */
.sticky-atc-bar {
  display: none;
}

@media screen and (max-width: 768px) {
  .sticky-atc-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(14, 14, 14, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(191, 163, 126, 0.35);
    padding: 0.9rem 1.4rem;
    padding-bottom: calc(0.9rem + env(safe-area-inset-bottom, 0px));
    z-index: 9999;
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    transform: translateY(120%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    opacity: 0;
    pointer-events: none;
  }

  .sticky-atc-bar.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .sticky-atc-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
  }

  .sticky-atc-image {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid rgba(191, 163, 126, 0.3);
    flex-shrink: 0;
  }

  .sticky-atc-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .sticky-atc-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f5f5f5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
  }

  .sticky-atc-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--premium-accent, #bfa37e);
    margin-top: 0.2rem;
    line-height: 1.2;
  }

  .sticky-atc-button {
    flex-shrink: 0;
    min-height: 46px;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, #bfa37e 0%, #a88d67 100%);
    color: #111;
    border: none;
    border-radius: 6px;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.03rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(191, 163, 126, 0.3);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
  }

  .sticky-atc-button:active {
    transform: scale(0.97);
    background: #997e59;
  }

  /* Body padding bottom when sticky bar is active */
  body.has-sticky-atc {
    padding-bottom: 75px !important;
  }

  /* --- MOBİL İYZİCO MODAL (BOTTOM SHEET) --- */
  .iyzco-modal-backdrop {
    padding: 0 !important;
    align-items: flex-end !important;
    background: rgba(0, 0, 0, 0.82) !important;
  }

  .iyzco-modal-dialog {
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 22px 22px 0 0 !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    max-height: 85vh !important;
    animation: iyzcoBottomSheetUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 15px)) !important;
  }

  @keyframes iyzcoBottomSheetUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .iyzco-modal-handle-bar {
    width: 44px;
    height: 5px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    margin: 1rem auto 0 auto;
    display: block;
  }

  .iyzco-modal-header {
    padding: 1.2rem 1.6rem !important;
  }

  .iyzco-modal-body {
    padding: 1.4rem 1.6rem !important;
  }

  .iyzco-modal-title {
    font-size: 1.55rem !important;
  }

  .iyzco-price-summary {
    padding: 1rem 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }

  .iyzco-price-summary-val {
    font-size: 1.55rem !important;
  }

  /* Mobilde Yatay Kaydırılabilir Banka Sekmeleri */
  .iyzco-bank-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    gap: 0.6rem !important;
    padding-bottom: 0.8rem !important;
    margin-bottom: 1.2rem !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .iyzco-bank-tabs::-webkit-scrollbar {
    display: none !important;
  }

  .iyzco-bank-tab {
    padding: 0.8rem 1.4rem !important;
    font-size: 1.25rem !important;
    min-height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }

  .iyzco-table th, 
  .iyzco-table td {
    padding: 0.9rem 1rem !important;
    font-size: 1.25rem !important;
  }

  /* --- FORM & DOKUNMATİK ALAN OPTİMİZASYONLARI (MIN 48PX) --- */
  .custom-product-fields {
    padding: 1.4rem 1.2rem !important;
    margin: 1.4rem 0 1.8rem 0 !important;
  }

  .custom-field-label {
    font-size: 1.3rem !important;
    margin-bottom: 0.8rem !important;
  }

  .custom-field-input {
    min-height: 48px !important;
    font-size: 16px !important; /* iOS otomatik zoom yapmasını engeller */
    padding: 1.2rem 1.4rem !important;
    border-radius: 8px !important;
  }

  .custom-file-upload-box {
    min-height: 50px !important;
    padding: 1.2rem 1.4rem !important;
    border-radius: 8px !important;
  }

  .custom-file-text {
    font-size: 1.3rem !important;
  }

  .custom-file-remove-btn {
    width: 32px !important;
    height: 32px !important;
  }

  .custom-field-group {
    margin-bottom: 1.6rem !important;
  }

  /* --- GÜVEN ROZETLERİ MOBİL SIKIŞTIRMASI --- */
  .lamithra-trust-box {
    padding: 1.4rem 1.2rem !important;
    margin: 1.6rem 0 !important;
  }

  .lamithra-trust-list {
    gap: 1.1rem !important;
  }

  .lamithra-trust-item {
    gap: 1.1rem !important;
    padding-bottom: 1.1rem !important;
  }

  .lamithra-trust-icon-box {
    width: 38px !important;
    height: 38px !important;
    border-radius: 8px !important;
  }

  .lamithra-trust-icon-box svg {
    width: 19px !important;
    height: 19px !important;
  }

  .lamithra-trust-title {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
  }

  .lamithra-trust-desc {
    font-size: 1.18rem !important;
    line-height: 1.35 !important;
  }

  .lamithra-trust-footer {
    margin-top: 1.2rem !important;
    padding-top: 1rem !important;
  }

  .lamithra-trademark-text {
    font-size: 1.12rem !important;
    margin-bottom: 0.8rem !important;
  }

  .lamithra-payment-icons svg,
  .lamithra-payment-icons img {
    height: 20px !important;
  }

  .iyzco-installment-badge {
    padding: 1rem 1.2rem !important;
    min-height: 48px !important;
  }

  .iyzco-badge-text {
    font-size: 1.22rem !important;
  }

  .iyzco-badge-link {
    font-size: 1.2rem !important;
  }

  .product__accordion .accordion__content {
    padding-left: 0 !important;
  }
}

/* ==========================================================================
   6. KURUMSAL VIP HEDİYELİK (B2B) & VİDEO HERO LANDING PAGE STİLLERİ
   ========================================================================== */

.corporate-landing-section {
  position: relative;
  overflow: hidden;
  background-color: #0c0c0c;
  color: #fff;
  padding-bottom: 8rem;
}

/* 1. Video Hero Vitrin Bloğu */
.corporate-hero-wrapper {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem;
  overflow: hidden;
}

.corporate-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.corporate-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65) contrast(1.1);
}

.corporate-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(14, 14, 14, 0.4) 0%, rgba(10, 10, 10, 0.88) 85%);
  z-index: 2;
}

.corporate-hero-content {
  position: relative;
  z-index: 3;
  max-width: 960px;
  text-align: center;
  margin: 0 auto;
}

.corporate-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(191, 163, 126, 0.15);
  border: 1px solid rgba(191, 163, 126, 0.4);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.6rem;
  border-radius: 30px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12rem;
  color: var(--premium-accent, #bfa37e);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.corporate-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #12b76a;
  box-shadow: 0 0 10px #12b76a;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.corporate-hero-title {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 2rem 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.corporate-hero-subtitle {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin: 0 auto 3.5rem auto;
  max-width: 780px;
  font-weight: 400;
}

.corporate-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.corporate-cta-btn {
  background: linear-gradient(135deg, #bfa37e 0%, #a88d67 100%) !important;
  color: #111 !important;
  border: none !important;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  padding: 1.4rem 3rem !important;
  border-radius: 8px !important;
  box-shadow: 0 6px 20px rgba(191, 163, 126, 0.35) !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 1rem !important;
  text-decoration: none !important;
}

.corporate-cta-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(191, 163, 126, 0.5) !important;
  background: #d4b893 !important;
}

.corporate-explore-btn {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  font-weight: 600 !important;
  font-size: 1.5rem !important;
  padding: 1.4rem 2.8rem !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.corporate-explore-btn:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: var(--premium-accent, #bfa37e) !important;
  color: var(--premium-accent, #bfa37e) !important;
  transform: translateY(-3px) !important;
}

/* 2. B2B Katma Değer Rozetleri (4 Maddelik Grid) */
.corporate-badges-wrapper {
  margin: -4rem auto 6rem auto;
  position: relative;
  z-index: 4;
}

.corporate-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.corporate-badge-card {
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(191, 163, 126, 0.25);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.corporate-badge-card:hover {
  border-color: rgba(191, 163, 126, 0.6);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(191, 163, 126, 0.15);
  background: rgba(26, 26, 26, 0.95);
}

.corporate-badge-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(191, 163, 126, 0.12);
  border: 1px solid rgba(191, 163, 126, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-accent, #bfa37e);
}

.corporate-badge-heading {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.8rem 0;
  line-height: 1.3;
}

.corporate-badge-desc {
  font-size: 1.35rem;
  color: #bbb;
  margin: 0;
  line-height: 1.55;
}

/* 3. B2B Lead Form Kartı */
.corporate-form-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.corporate-form-card {
  background: #131313;
  border: 1px solid rgba(191, 163, 126, 0.35);
  border-radius: 16px;
  padding: 4.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  position: relative;
}

.corporate-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #bfa37e, transparent);
}

.corporate-form-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.corporate-form-tag {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--premium-accent, #bfa37e);
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
}

.corporate-form-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.2rem 0;
  letter-spacing: -0.01em;
}

.corporate-form-subtitle {
  font-size: 1.5rem;
  color: #aaa;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.corporate-form-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.corporate-field-full {
  grid-column: 1 / -1;
}

.corporate-field-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.corporate-field-label {
  font-size: 1.35rem;
  font-weight: 600;
  color: #e0e0e0;
}

.corporate-field-label .required {
  color: #e57373;
}

.corporate-input,
.corporate-select,
.corporate-textarea {
  width: 100%;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 1.3rem 1.6rem;
  color: #fff;
  font-size: 1.45rem;
  font-family: inherit;
  transition: all 0.25s ease;
  min-height: 48px;
  box-sizing: border-box;
}

.corporate-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23bfa37e' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.4rem center;
  padding-right: 3.5rem;
  cursor: pointer;
}

.corporate-select option {
  background: #1a1a1a;
  color: #fff;
}

.corporate-textarea {
  resize: vertical;
  min-height: 110px;
}

.corporate-input:focus,
.corporate-select:focus,
.corporate-textarea:focus {
  outline: none;
  border-color: var(--premium-accent, #bfa37e);
  box-shadow: 0 0 0 3px rgba(191, 163, 126, 0.2);
  background: #222;
}

.corporate-input::placeholder,
.corporate-textarea::placeholder {
  color: #777;
  font-size: 1.35rem;
}

.corporate-form-submit-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.corporate-submit-btn {
  width: 100%;
  min-height: 52px;
  background: linear-gradient(135deg, #bfa37e 0%, #a88d67 100%) !important;
  color: #111 !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05rem !important;
  cursor: pointer !important;
  box-shadow: 0 6px 20px rgba(191, 163, 126, 0.35) !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1rem !important;
}

.corporate-submit-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(191, 163, 126, 0.5) !important;
  background: #d4b893 !important;
}

.corporate-privacy-note {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.25rem;
  color: #888;
  text-align: center;
}

.corporate-form-success {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid #4caf50;
  border-radius: 8px;
  padding: 1.8rem;
  margin-bottom: 2.5rem;
  color: #c8e6c9;
}

.corporate-form-success h4 {
  color: #81c784;
  margin: 0 0 0.4rem 0;
  font-size: 1.6rem;
}

.corporate-form-success p {
  margin: 0;
  font-size: 1.35rem;
}

.corporate-form-error {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(229, 57, 53, 0.12);
  border: 1px solid #e53935;
  border-radius: 8px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 2.5rem;
  color: #ef9a9a;
  font-size: 1.35rem;
}

.corporate-nda-wrapper {
  margin-top: 0.8rem;
  padding: 1.4rem 1.8rem;
  background: rgba(191, 163, 126, 0.08);
  border: 1px dashed rgba(191, 163, 126, 0.4);
  border-radius: 8px;
  transition: background-color 0.25s ease;
}

.corporate-nda-wrapper:hover {
  background: rgba(191, 163, 126, 0.14);
}

.corporate-nda-label {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  cursor: pointer;
  user-select: none;
}

.corporate-nda-checkbox {
  width: 20px;
  height: 20px;
  accent-color: #bfa37e;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.corporate-nda-text {
  font-size: 1.38rem;
  color: #e5e5e5;
  line-height: 1.5;
}

.corporate-nda-text strong {
  color: var(--premium-accent, #bfa37e);
}

/* Responsive Düzenlemeler (Tablet & Mobil) */
@media screen and (max-width: 989px) {
  .corporate-hero-title {
    font-size: 3.2rem;
  }

  .corporate-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .corporate-badges-wrapper {
    margin-top: -2rem;
  }
}

@media screen and (max-width: 749px) {
  .corporate-hero-wrapper {
    min-height: 65vh;
    padding: 5rem 1.5rem;
  }

  .corporate-hero-title {
    font-size: 2.6rem;
  }

  .corporate-hero-subtitle {
    font-size: 1.45rem;
    margin-bottom: 2.5rem;
  }

  .corporate-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .corporate-cta-btn,
  .corporate-explore-btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .corporate-badges-wrapper {
    margin-top: 2rem;
    margin-bottom: 4rem;
  }

  .corporate-badges-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .corporate-badge-card {
    padding: 2rem 1.6rem;
  }

  .corporate-form-card {
    padding: 2.5rem 1.6rem;
    border-radius: 12px;
  }

  .corporate-form-title {
    font-size: 2.3rem;
  }

  .corporate-form-fields-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .corporate-input,
  .corporate-select,
  .corporate-textarea {
    font-size: 16px; /* iOS zoom engelleme */
  }
}

/* ==========================================================================
   7. REFERANS LOGOLARI & İŞ BİRLİKLERİ (BRAND GRID / CAROUSEL) STİLLERİ
   ========================================================================== */

.brand-logos-section {
  padding: 6.5rem 0;
  background-color: #0b0b0b;
  border-top: 1px solid rgba(191, 163, 126, 0.15);
  border-bottom: 1px solid rgba(191, 163, 126, 0.15);
  position: relative;
}

.brand-logos-header {
  margin-bottom: 4rem;
}

.brand-logos-tag {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--premium-accent, #bfa37e);
  letter-spacing: 0.15rem;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.brand-logos-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.2rem 0;
  letter-spacing: -0.01em;
}

.brand-logos-subtitle {
  font-size: 1.5rem;
  color: #aaa;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

.brand-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.brand-logo-item {
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(191, 163, 126, 0.2);
  border-radius: 12px;
  padding: 2.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  filter: grayscale(100%) opacity(0.75);
  cursor: pointer;
  min-height: 100px;
}

.brand-logo-item:hover {
  filter: grayscale(0%) opacity(1);
  border-color: rgba(191, 163, 126, 0.65);
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(191, 163, 126, 0.2);
  background: rgba(28, 28, 28, 0.95);
}

.brand-logo-img {
  max-width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(0.9) opacity(0.8);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.brand-logo-item:hover .brand-logo-img {
  filter: brightness(1) invert(0) opacity(1);
  transform: scale(1.05);
}

.brand-vector-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d0d0d0;
  transition: all 0.35s ease;
}

.brand-vector-svg {
  width: 100%;
  max-width: 200px;
  height: auto;
  max-height: 48px;
}

.brand-logo-item:hover .brand-vector-box {
  color: var(--premium-accent, #bfa37e);
  filter: drop-shadow(0 0 14px rgba(191, 163, 126, 0.45));
}

.brand-logo-text-badge {
  text-align: center;
  padding: 0.4rem;
}

.brand-logo-name {
  font-size: 1.65rem;
  font-weight: 700;
  color: #e0e0e0;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
  font-family: inherit;
}

.brand-logo-item:hover .brand-logo-name {
  color: var(--premium-accent, #bfa37e);
}

@media screen and (max-width: 989px) {
  .brand-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media screen and (max-width: 749px) {
  .brand-logos-section {
    padding: 4.5rem 0;
  }

  .brand-logos-title {
    font-size: 2.4rem;
  }

  .brand-logos-subtitle {
    font-size: 1.35rem;
  }

  .brand-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }

  .brand-logo-item {
    padding: 1.8rem 1.2rem;
    min-height: 80px;
  }

  .brand-logo-name {
    font-size: 1.35rem;
  }
}




