:root {
  --mint: #18b8ad;
  --mint-dark: #0d8d86;
  --mint-soft: #e8fffb;
  --cream: #fff8ef;
  --paper: #ffffff;
  --page: #fffdfa;
  --ink: #0b2430;
  --muted: #61717b;
  --line: #e5ecef;
  --coral: #ff7a45;
  --coral-dark: #df5f2f;
  --navy: #0b3b4a;
  --green: #69bd71;
  --shadow: 0 18px 45px rgba(11, 36, 48, .10);
  --shadow-soft: 0 10px 25px rgba(11, 36, 48, .08);
  --radius: 24px;
  --radius-lg: 32px;
  --container: 1180px;
  --space: clamp(28px, 6vw, 72px);
  --header-h: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--page);
  line-height: 1.55;
  overflow-x: hidden;
}
body.has-sticky-atc, body:has(.sticky-atc) { padding-bottom: 78px; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
button:disabled { opacity: .55; cursor: not-allowed; }
:focus-visible { outline: 3px solid rgba(24, 184, 173, .35); outline-offset: 3px; }

.container { width: min(var(--container), calc(100% - 32px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 1000; background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 12px; }

.announce { background: var(--navy); color: #fff; text-align: center; font-size: 13px; padding: 8px 12px; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,253,250,.94); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.header-inner { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.logo { min-width: 0; display: inline-flex; align-items: center; gap: 10px; font-weight: 950; font-size: 19px; letter-spacing: -.02em; }
.logo-mark { flex: 0 0 auto; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 14px; color: #fff; background: linear-gradient(135deg, var(--mint), #8ee8d9); box-shadow: var(--shadow-soft); }
.desktop-nav { display: none; align-items: center; gap: 22px; font-weight: 800; font-size: 14px; }
.desktop-nav a, .mobile-nav a { color: #173844; }
.desktop-nav a:hover, .mobile-nav a:hover { color: var(--mint-dark); }
.is-active { color: var(--mint-dark) !important; }
.header-actions { flex: 0 0 auto; display: flex; align-items: center; gap: 8px; }
.icon-btn { border: 1px solid var(--line); background: #fff; color: var(--ink); border-radius: 14px; min-width: 44px; min-height: 44px; display: inline-grid; place-items: center; position: relative; box-shadow: 0 4px 12px rgba(11,36,48,.04); }
.icon-btn:hover { border-color: rgba(24,184,173,.45); }
.cart-btn b { position: absolute; right: -5px; top: -6px; background: var(--coral); color: #fff; border-radius: 99px; font-size: 11px; min-width: 20px; height: 20px; display: grid; place-items: center; border: 2px solid #fff; }
.mobile-nav { display: none; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px 16px 18px; border-top: 1px solid var(--line); }
.mobile-nav.is-open { display: grid; }
.mobile-nav a { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px; font-weight: 850; }

.section { padding-block: var(--space); }
.eyebrow { margin: 0 0 8px; letter-spacing: .08em; text-transform: uppercase; color: var(--mint-dark); font-weight: 950; font-size: 12px; }
h1, h2, h3 { line-height: 1.08; margin: 0 0 12px; letter-spacing: -.03em; }
h1 { font-size: clamp(32px, 8vw, 64px); }
h2 { font-size: clamp(25px, 5vw, 42px); }
h3 { font-size: 20px; }
p { color: var(--muted); margin: 0 0 16px; }
ul, ol { color: var(--muted); }
small { color: var(--muted); }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 18px; border-radius: 16px; border: 1px solid transparent; font-weight: 950; line-height: 1.1; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; gap: 8px; text-align: center; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 10px 25px rgba(255, 122, 69, .25); }
.btn--primary:hover { background: var(--coral-dark); }
.btn--secondary { background: var(--mint); color: #fff; }
.btn--dark { background: var(--navy); color: #fff; }
.btn--outline { background: #fff; color: var(--navy); border-color: var(--line); }
.btn--ghost { background: transparent; color: var(--navy); }
.btn--block { width: 100%; }
.btn--small { min-height: 40px; padding: 9px 13px; border-radius: 13px; font-size: 14px; }

.hero { background: radial-gradient(circle at 85% 15%, #d8fff7, transparent 38%), linear-gradient(180deg, #fff8ef, #fffdfa); padding: 34px 0; }
.hero-grid { display: grid; gap: 28px; align-items: center; }
.hero-copy > p:not(.eyebrow) { font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.hero-actions .btn { flex: 1 1 170px; }
.mini-proof, .trust-mini { display: flex; gap: 8px; flex-wrap: wrap; }
.mini-proof span, .trust-mini span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 12px; font-size: 13px; font-weight: 850; }
.hero-media img, .category-card img, .blog-card img, .article-hero { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); background: #fff; }

.category-split { display: grid; gap: 16px; }
.category-card { min-width: 0; display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 14px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow-soft); }
.category-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.category-card img { border-radius: 18px; }
.category-card span { font-weight: 950; color: var(--coral); }

.section-head, .page-head, .sort-row { display: grid; gap: 10px; margin-bottom: 20px; }
.section-head a { font-weight: 950; color: var(--mint-dark); }
.page-head > div { min-width: 0; }
.inline-search, .search-box form { display: grid; gap: 10px; }

.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.product-card { min-width: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); display: grid; }
.product-card:hover { box-shadow: var(--shadow); }
.product-card__image { position: relative; background: var(--cream); display: block; overflow: hidden; }
.product-card__image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-card__badge { position: absolute; top: 10px; left: 10px; max-width: calc(100% - 20px); background: #fff; border-radius: 999px; padding: 6px 9px; font-size: 11px; font-weight: 950; color: var(--navy); box-shadow: var(--shadow-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-card__body { display: grid; padding: 12px; }
.product-card__body h3 { font-size: 15.5px; min-height: 36px; }
.product-card__body p { font-size: 13px; margin-bottom: 10px; }
.rating { color: #ffb020; font-weight: 950; font-size: 13px; }
.rating span { color: var(--muted); font-weight: 750; }
.product-card__footer { display: grid; gap: 9px; margin-top: 10px; align-self: end; }
.product-card__footer strong, .price { font-weight: 950; color: var(--navy); font-size: 20px; }

.need-grid, .tag-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.need-grid a, .tag-row a { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 16px; font-weight: 950; box-shadow: var(--shadow-soft); }
.tag-row a { cursor: pointer; }

.trust-bar { width: min(var(--container), calc(100% - 32px)); margin: var(--space) auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.trust-bar div { min-width: 0; background: var(--navy); color: #fff; border-radius: 20px; padding: 14px; display: grid; gap: 2px; }
.trust-bar small { color: #c7dde5; }
.summary-card .trust-bar { width: 100%; margin: 16px 0 0; grid-template-columns: 1fr 1fr; }
.summary-card .trust-bar div { padding: 12px; }

.why-grid, .info-cta, .contact-grid, .cart-layout, .checkout-grid, .shop-layout, .product-detail { display: grid; gap: 22px; }
.feature-list { display: grid; gap: 12px; }
.feature-list article, .content-card, .summary-card, .filters, .warning-box, .success-card, .map-placeholder, .toc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-soft); }
.content-card > *:last-child, .summary-card > *:last-child { margin-bottom: 0; }
.review-row, .review-grid { display: grid; gap: 12px; }
.review-row blockquote, .review-grid blockquote { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-soft); }
cite { display: block; color: var(--muted); margin-top: 10px; }

.blog-grid { display: grid; gap: 16px; margin-top: 18px; }
.blog-card a { display: block; height: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.blog-card span, .blog-card h3, .blog-card p { margin-left: 14px; margin-right: 14px; }
.blog-card span { display: inline-block; margin-top: 14px; color: var(--mint-dark); font-weight: 950; font-size: 12px; }
.newsletter { background: linear-gradient(135deg, #e9fffb, #fff4e8); }
.newsletter-card { display: grid; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow); }
.newsletter form, .footer-newsletter { display: grid; gap: 10px; }

input, textarea, select { width: 100%; min-height: 46px; border: 1px solid var(--line); border-radius: 14px; padding: 12px; background: #fff; color: var(--ink); }
textarea { min-height: 110px; resize: vertical; }
input[type="checkbox"], input[type="radio"] { width: auto; min-width: 18px; min-height: 18px; padding: 0; accent-color: var(--mint); }
label { display: grid; gap: 6px; font-weight: 850; color: var(--ink); margin-bottom: 12px; }
label:has(input[type="checkbox"]), label:has(input[type="radio"]), .checkbox { display: flex; align-items: flex-start; gap: 10px; font-weight: 800; }
fieldset { border: 1px solid var(--line); border-radius: 18px; padding: 16px; margin: 0 0 16px; min-width: 0; }
legend { font-weight: 950; padding: 0 6px; }
.two-col { display: grid; gap: 12px; }

.breadcrumb { width: min(var(--container), calc(100% - 32px)); margin: 18px auto 0; font-size: 13px; }
.breadcrumb ol { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--muted); }
.breadcrumb a { color: var(--mint-dark); font-weight: 850; }
.filters { display: none; }
.filters.is-open { display: block; }
.sort-row { background: #fff; border: 1px solid var(--line); padding: 12px; border-radius: 18px; align-items: center; }
.category-hero, .campaign-hero { background: linear-gradient(180deg, #eefdfb, #fffdfa); padding: 34px 0; }

.product-gallery { display: grid; gap: 12px; align-content: start; }
.product-gallery > img { 
  width: 100%; 
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff; 
  border: 1px solid var(--line); 
  border-radius: var(--radius-lg); 
  box-shadow: var(--shadow-soft); 
  cursor: zoom-in;
}
.thumb-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
.thumb-row button { flex: 0 0 auto; border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 6px; }
.thumb-row img { width: 70px; height: 70px; object-fit: cover; border-radius: 10px; }
.product-info { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow); align-self: start; }
.qty { display: grid; grid-template-columns: 44px minmax(0, 1fr) 44px; gap: 8px; margin: 14px 0; }
.qty button { border: 1px solid var(--line); border-radius: 12px; background: #fff; font-weight: 950; }
.qty input { text-align: center; }
.sticky-atc { position: fixed; left: 0; right: 0; bottom: 0; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -10px 30px rgba(11,36,48,.10); padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); display: flex; align-items: center; justify-content: space-between; gap: 12px; z-index: 40; }
.sticky-atc span { display: block; font-size: 12px; color: var(--muted); }
.sticky-atc .btn { flex: 0 0 auto; }
.detail-tabs { display: grid; grid-template-columns: 1fr; gap: 14px; }
.detail-tabs article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 18px; overflow: hidden; }
th, td { border: 1px solid var(--line); padding: 12px; text-align: left; vertical-align: top; }

.cart-list { display: grid; gap: 12px; min-width: 0; }
.cart-item { min-width: 0; display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 12px; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 10px; }
.cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 14px; background: var(--cream); }
.cart-item > div { min-width: 0; }
.cart-item > div:last-child { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid var(--line); padding-top: 10px; }
.cart-item button { border: 1px solid var(--line); background: #fff; border-radius: 10px; padding: 8px; }
.cart-item .qty { grid-template-columns: 38px minmax(54px, 90px) 38px; margin: 10px 0 0; }
.summary-card { position: relative; min-width: 0; overflow: hidden; }
.summary-card > div:not(.trust-bar) { display: flex; justify-content: space-between; gap: 10px; align-items: center; margin-bottom: 12px; }
/* checkout-summary kendi içinde block düzende olmalı, flex kuralını iptal et */
[data-checkout-summary] { display: block !important; width: 100%; margin-bottom: 0; }
.checkout-forms { min-width: 0; }
.checkout { padding-top: 28px; }
.success-page { text-align: center; }
.success-card { max-width: 720px; margin: auto; }
.article { max-width: 860px; }
.article section { margin-block: 28px; }
.toc { display: grid; gap: 8px; margin: 18px 0; }
.warning-box { border-left: 6px solid var(--coral); background: #fff8f2; }
.contact-cards { display: grid; gap: 10px; }
.contact-cards > * { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 14px; font-weight: 950; }
.map-placeholder { min-height: 220px; display: grid; place-items: center; color: var(--muted); }
.legal { max-width: 900px; }
.not-found { text-align: center; }
.rating-summary { display: grid; gap: 8px; align-content: start; text-align: center; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 16px; margin: 10px 0; box-shadow: var(--shadow-soft); }
.faq-list summary { cursor: pointer; font-weight: 950; color: var(--ink); }

.search-overlay, .mini-cart { position: fixed; inset: 0; background: rgba(11,36,48,.42); z-index: 80; display: none; }
.search-overlay.is-open, .mini-cart.is-open { display: block; }
.search-box { background: #fff; border-radius: 0 0 var(--radius-lg) var(--radius-lg); padding: 24px; width: min(760px, 100%); margin: auto; box-shadow: var(--shadow); }
.search-close { float: right; }
.quick-searches { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; align-items: center; }
.quick-searches a { background: var(--cream); border-radius: 999px; padding: 8px 12px; font-weight: 850; }
.mini-cart__panel { position: absolute; right: 0; top: 0; bottom: 0; width: min(430px, 100%); background: #fff; padding: 18px; display: grid; grid-template-rows: auto 1fr auto; box-shadow: var(--shadow); }
.mini-cart__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mini-cart__items { overflow: auto; display: grid; gap: 10px; align-content: start; padding: 6px 0; }
.mini-cart__foot { border-top: 1px solid var(--line); padding-top: 14px; padding-bottom: calc(14px + env(safe-area-inset-bottom)); display: grid; gap: 10px; }
.mini-cart__foot > div { display: flex; justify-content: space-between; gap: 12px; }
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 16px; box-shadow: var(--shadow); z-index: 90; display: none; gap: 12px; }
.cookie-banner.is-visible { display: grid; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.site-footer { background: #082a35; color: #fff; margin-top: 40px; padding: 38px 0 18px; }
.site-footer p, .site-footer a, .footer-bottom { color: #c7dde5; }
.footer-grid { display: grid; gap: 24px; }
.footer-grid a { display: block; margin: 8px 0; }
.footer-grid h3 { color: #fff; }
.footer-logo { color: #fff; }
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 22px; padding-top: 14px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(11, 36, 48, 0.6); backdrop-filter: blur(4px);
  z-index: 200; display: none; place-items: center; padding: 20px;
}
.modal-overlay.is-open { display: grid; }
.modal-container {
  background: #fff; width: min(800px, 100%); max-height: 85vh; border-radius: 24px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; overflow: hidden;
}
.modal-header {
  padding: 16px 24px; border-bottom: 1px solid var(--line); display: flex;
  justify-content: space-between; align-items: center; background: #fafafa;
}
.modal-header h3 { margin: 0; font-size: 1.1rem; }
.modal-close {
  background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--muted);
  line-height: 1; padding: 0;
}
.modal-body { padding: 24px; overflow-y: auto; font-size: 0.95rem; line-height: 1.6; }
.modal-body h2 { font-size: 1.2rem; margin-top: 1.5rem; }
.modal-body p { margin-bottom: 1rem; }
.loader-box { padding: 40px; text-align: center; color: var(--muted); }

/* Search Suggestions */
/* Review Enhancements */
.review-filters { display: flex; flex-wrap: wrap; gap: 15px; align-items: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.filter-btn { border: 1px solid var(--line); background: #fff; padding: 6px 12px; border-radius: 99px; font-size: 0.85rem; font-weight: 800; cursor: pointer; transition: all 0.2s; }
.filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.filter-btn:hover:not(.active) { border-color: var(--mint); color: var(--mint-dark); }

.review-image-grid { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.review-image-thumb { width: 80px; height: 80px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); cursor: zoom-in; }
.review-image-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.review-image-thumb:hover img { transform: scale(1.1); }

/* Lightbox */
.muv-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px; }
.muv-lightbox.active { display: flex; }
.muv-lightbox-content { max-width: 90%; max-height: 90%; position: relative; }
.muv-lightbox-content img { max-width: 100%; max-height: 90vh; border-radius: 8px; box-shadow: 0 0 30px rgba(0,0,0,0.5); }
.muv-lightbox-close { position: absolute; top: -40px; right: 0; color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none; }

.ty-reviews {
  --ty-orange: #f27a1a;
  --ty-orange-soft: #fff3e8;
  --ty-line: #e6e8ec;
}

.ty-review-header,
.ty-review-panel,
.ty-review-toolbar,
.ty-photo-strip,
.ty-review-card {
  background: #fff;
  border: 1px solid var(--ty-line);
  border-radius: 8px;
}

.ty-review-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  margin-bottom: 12px;
}

.ty-review-header h2 {
  margin: 0;
  font-size: 22px;
}

.ty-write-review {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ty-orange);
  border-radius: 8px;
  color: #fff;
  background: var(--ty-orange);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.ty-review-panel {
  display: grid;
  grid-template-columns: 180px minmax(220px, 1fr) 1.1fr;
  gap: 22px;
  padding: 20px;
  margin-bottom: 12px;
}

.ty-score-box {
  display: grid;
  place-items: center;
  align-content: center;
  padding: 16px;
  background: var(--ty-orange-soft);
  border-radius: 8px;
  text-align: center;
}

.ty-score-box strong {
  color: var(--ty-orange);
  font-size: 44px;
  line-height: 1;
}

.ty-score-box p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.ty-stars {
  display: inline-flex;
  gap: 1px;
  color: var(--ty-orange);
  font-size: 18px;
  line-height: 1;
}

.ty-stars--small {
  font-size: 14px;
}

.ty-rating-bars {
  display: grid;
  gap: 9px;
  align-content: center;
}

.ty-rating-bar {
  display: grid;
  grid-template-columns: 62px minmax(90px, 1fr) 28px;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  text-decoration: none;
}

.ty-rating-bar i {
  height: 7px;
  overflow: hidden;
  background: #eef0f3;
  border-radius: 999px;
}

.ty-rating-bar b {
  display: block;
  height: 100%;
  background: var(--ty-orange);
}

.ty-rating-bar em {
  color: var(--muted);
  font-style: normal;
  text-align: right;
}

.ty-summary-box {
  min-width: 0;
  padding: 15px;
  background: #f8fafc;
  border: 1px solid #eef1f5;
  border-radius: 8px;
}

.ty-summary-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 900;
}

.ty-summary-box p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.ty-photo-strip {
  padding: 16px 18px;
  margin-bottom: 12px;
}

.ty-photo-strip-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.ty-photo-strip-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.ty-photo-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.ty-photo-thumb,
.ty-review-card-photos button {
  flex: 0 0 auto;
  width: 76px;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  background: #f7f7f8;
  border: 1px solid var(--ty-line);
  border-radius: 8px;
  cursor: zoom-in;
}

.ty-photo-thumb img,
.ty-review-card-photos img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .18s ease;
}

.ty-photo-thumb:hover img,
.ty-review-card-photos button:hover img {
  transform: scale(1.06);
}

.ty-review-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  margin-bottom: 12px;
}

.ty-filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ty-filter-pills a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--ink);
  background: #f8f9fb;
  border: 1px solid var(--ty-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.ty-filter-pills a.is-active {
  color: var(--ty-orange);
  background: var(--ty-orange-soft);
  border-color: rgba(242, 122, 26, .35);
}

.ty-sort label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.ty-sort select {
  min-height: 36px;
  padding: 0 34px 0 10px;
  border: 1px solid var(--ty-line);
  border-radius: 8px;
  background: #fff;
}

.ty-review-list {
  display: grid;
  gap: 10px;
}

.ty-review-card {
  padding: 17px 18px;
}

.ty-review-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.ty-review-meta div:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ty-review-meta strong {
  font-size: 14px;
}

.ty-review-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.ty-review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.65;
}

.ty-buyer-badge {
  width: max-content;
  margin-top: 10px;
  padding: 4px 9px;
  color: #0f7a45;
  background: #ecfdf3;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.ty-review-card-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.ty-empty-review {
  padding: 34px;
  color: var(--muted);
  text-align: center;
  background: #fff;
  border: 1px dashed var(--ty-line);
  border-radius: 8px;
}

.ty-review-pages {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.ty-review-pages a {
  min-width: 34px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--ty-line);
  border-radius: 8px;
  background: #fff;
  font-weight: 850;
}

.ty-review-pages a.is-active {
  color: #fff;
  background: var(--ty-orange);
  border-color: var(--ty-orange);
}

.ty-review-drawer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  justify-content: flex-end;
  background: rgba(8, 24, 35, .52);
}

.ty-review-drawer.is-open {
  display: flex;
}

.ty-review-drawer__panel {
  width: min(520px, 100%);
  height: 100%;
  overflow: auto;
  padding: 24px;
  background: #fff;
  box-shadow: -20px 0 50px rgba(0,0,0,.18);
}

.ty-review-close {
  float: right;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #f2f4f7;
  font-size: 24px;
  cursor: pointer;
}

.ty-review-field {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  font-weight: 850;
}

.ty-review-field textarea,
.ty-review-field input[type="file"] {
  width: 100%;
  border: 1px solid var(--ty-line);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
}

.ty-write-stars {
  gap: 4px;
  color: #ddd;
  font-size: 32px;
  cursor: pointer;
}

.ty-upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.ty-upload-preview img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 1px solid var(--ty-line);
  border-radius: 8px;
}

.ty-lightbox {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: none;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 10px;
  padding: 24px;
  background: rgba(0, 0, 0, .86);
}

.ty-lightbox.active {
  display: grid;
}

.ty-lightbox figure {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 16px;
  align-items: stretch;
  margin: 0;
}

.ty-lightbox img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  background: #111;
  border-radius: 8px;
}

.ty-lightbox figcaption {
  padding: 18px;
  overflow: auto;
  background: #fff;
  border-radius: 8px;
}

.ty-lightbox figcaption strong,
.ty-lightbox figcaption small,
.ty-lightbox figcaption span {
  display: block;
  margin-bottom: 8px;
}

.ty-lightbox figcaption span {
  color: var(--ty-orange);
}

.ty-lightbox-close,
.ty-lightbox-nav {
  border: 0;
  color: #fff;
  background: rgba(255,255,255,.14);
  cursor: pointer;
}

.ty-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 28px;
}

.ty-lightbox-nav {
  width: 48px;
  height: 72px;
  border-radius: 999px;
  font-size: 44px;
}

.search-suggest { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border: 1px solid var(--line); border-radius: 0 0 12px 12px; box-shadow: var(--shadow-strong); z-index: 1000; display: none; }
.search-suggest-item { display: flex; align-items: center; padding: 12px; text-decoration: none; color: inherit; border-bottom: 1px solid var(--line); transition: background 0.2s; }
.search-suggest-item:last-child { border-bottom: none; }
.search-suggest-item:hover { background: #f8f9fa; }
.search-suggest-item img { width: 40px; height: 40px; border-radius: 4px; object-fit: cover; margin-right: 12px; }
.search-suggest-item .info strong { display: block; font-size: 0.9rem; color: var(--ink); }
.search-suggest-item .info span { font-size: 0.8rem; color: var(--muted); }

/* ── Checkout Sipariş Özeti (Shopify tarzı) ─────────────── */
[data-checkout-summary] { display: block; width: 100%; }

.co-items { display: grid; gap: 0; margin-bottom: 20px; }

.co-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.co-item:last-child { border-bottom: none; }

.co-item__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  grid-column: 1;
}
.co-item__qty {
  font-size: 12px;
  color: var(--muted);
  grid-column: 1;
}
.co-item__price {
  font-size: 14px;
  font-weight: 950;
  color: var(--navy);
  white-space: nowrap;
  grid-row: 1 / 3;
  grid-column: 2;
  text-align: right;
}

.co-totals {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--line);
  padding-top: 4px;
  width: 100%;
  overflow: hidden;
}
.co-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  min-width: 0;
}
.co-row:last-child { border-bottom: none; }
.co-row__label {
  color: var(--muted);
  font-weight: 600;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.co-row__value {
  font-weight: 800;
  flex-shrink: 0;
  white-space: nowrap;
  text-align: right;
  margin-left: 8px;
}
.co-row--discount .co-row__label,
.co-row--discount .co-row__value { color: #18b8ad; }
.co-row--total {
  padding: 14px 0 4px;
  border-top: 2px solid var(--line);
  margin-top: 4px;
}
.co-row--total .co-row__label { font-size: 15px; font-weight: 800; color: var(--navy); }
.co-row--total .co-row__value { font-size: 22px; font-weight: 950; color: var(--coral); }

@media (max-width: 420px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .header-actions { gap: 6px; }
  .icon-btn { min-width: 42px; min-height: 42px; border-radius: 13px; }
  .header-actions a[aria-label="Hesabım"] { display: none; }
  .logo { font-size: 18px; gap: 8px; }
  .logo-mark { width: 36px; height: 36px; }
  .product-grid { gap: 10px; }
  .product-card__body { padding: 10px; }
  .product-card__footer strong, .price { font-size: 18px; }
  .btn--small { width: 100%; padding-inline: 10px; }
  .category-card { grid-template-columns: 84px minmax(0, 1fr); }
  .summary-card .trust-bar { grid-template-columns: 1fr; }
}

@media (min-width: 560px) {
  .cart-item { grid-template-columns: 78px minmax(0, 1fr) auto; align-items: center; }
  .cart-item img { width: 78px; height: 78px; }
  .cart-item > div:last-child { grid-column: auto; display: grid; justify-items: end; border-top: 0; padding-top: 0; }
  .two-col { grid-template-columns: 1fr 1fr; }
  .inline-search, .search-box form { grid-template-columns: minmax(0, 1fr) auto; align-items: end; }
}

@media (min-width: 760px) {
  body.has-sticky-atc, body:has(.sticky-atc) { padding-bottom: 0; }
  .desktop-nav { display: flex; }
  .menu-btn { display: none; }
  .hero { padding: 54px 0; }
  .hero-grid, .why-grid, .info-cta, .contact-grid { grid-template-columns: 1fr 1fr; }
  .product-detail { grid-template-columns: minmax(0, 500px) 1fr; }
  .category-split { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
  .product-grid--shop { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .need-grid, .tag-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .trust-bar { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .review-row, .review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .newsletter-card { grid-template-columns: 1fr 1fr; align-items: center; padding: 30px; }
  .section-head, .page-head, .sort-row { display: flex; align-items: end; justify-content: space-between; gap: 18px; }
  .section-head { flex-wrap: wrap; }
  .filters { display: block; position: sticky; top: calc(var(--header-h) + 24px); align-self: start; }
  .filter-toggle { display: none; }
  .shop-layout { grid-template-columns: 260px minmax(0, 1fr); align-items: start; }
  .cart-layout { grid-template-columns: minmax(0, 1fr) 360px; align-items: start; }
  .checkout-grid { grid-template-columns: minmax(0, 1fr) 380px; align-items: start; }
  .summary-card { position: sticky; top: calc(var(--header-h) + 24px); }
  .detail-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sticky-atc { display: none; }
  .footer-grid { grid-template-columns: 1.3fr .8fr .8fr .8fr 1.2fr; }
  .mini-cart__panel { border-radius: 26px 0 0 26px; }
  .search-box { margin-top: 5vh; border-radius: var(--radius-lg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ======================================================================
   Final visual breathing pass: improves spacing, hierarchy, and mobile flow
   ====================================================================== */
main > .container:first-child,
main > .section:first-child,
main > .category-hero:first-child,
main > .campaign-hero:first-child {
  margin-top: clamp(10px, 2vw, 18px);
}

.breadcrumb {
  margin-top: clamp(18px, 2.4vw, 30px);
  margin-bottom: clamp(18px, 2.6vw, 34px);
  color: var(--muted);
}
.breadcrumb ol { row-gap: 6px; }
.breadcrumb li { line-height: 1.45; }

.section {
  padding-block: clamp(40px, 6vw, 84px);
}
.section-head,
.page-head,
.sort-row {
  margin-bottom: clamp(24px, 3vw, 34px);
}
.page-head { padding-top: 4px; }
.page-head p { max-width: 680px; }

.hero { padding: clamp(42px, 7vw, 72px) 0; }
.hero-grid { gap: clamp(30px, 5vw, 56px); }
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy > p:not(.eyebrow) { max-width: 620px; }
.hero-actions { margin: 24px 0 18px; }
.hero-media img { overflow: hidden; }

.category-split,
.why-grid,
.info-cta,
.contact-grid,
.cart-layout,
.checkout-grid,
.shop-layout,
.product-detail {
  gap: clamp(22px, 3.5vw, 38px);
}
.category-card {
  padding: clamp(16px, 2.4vw, 22px);
  gap: clamp(14px, 2vw, 20px);
}
.category-card h2,
.category-card h3 { margin-bottom: 8px; }

.product-grid {
  gap: clamp(16px, 2.8vw, 26px);
}
.product-card {
  border-radius: 28px;
  transition: box-shadow .18s ease, transform .18s ease;
}
.product-card:hover { transform: translateY(-2px); }
.product-card__image { min-height: 0; }
.product-card__image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.product-card__body {
  padding: clamp(14px, 2vw, 18px);
  gap: 4px;
}
.product-card__body h3 {
  min-height: auto;
  margin-top: 2px;
  margin-bottom: 8px;
}
.product-card__footer {
  gap: 12px;
  margin-top: 12px;
}
.product-card__badge { top: 12px; left: 12px; }

.need-grid,
.tag-row { gap: clamp(12px, 2vw, 18px); }
.need-grid a,
.tag-row a { padding: 18px 20px; }
.trust-bar { gap: clamp(12px, 2vw, 18px); }
.trust-bar div { padding: 18px; }

.product-detail.container {
  margin-top: clamp(4px, 1vw, 10px);
  margin-bottom: clamp(22px, 4vw, 40px);
}
.product-gallery {
  gap: clamp(14px, 2.2vw, 20px);
}
.product-gallery > img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  overflow: hidden;
}
.thumb-row {
  gap: 12px;
  padding-top: 2px;
  padding-bottom: 8px;
}
.thumb-row button {
  padding: 8px;
  box-shadow: 0 6px 16px rgba(11,36,48,.05);
}
.product-info {
  padding: clamp(22px, 3.2vw, 34px);
}
.product-info .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 7px 11px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--mint-soft);
  border: 1px solid rgba(24,184,173,.18);
  letter-spacing: .07em;
}
.product-info h1 {
  margin-bottom: clamp(14px, 2vw, 20px);
}
.product-info > p:not(.eyebrow) {
  margin-bottom: 18px;
  max-width: 620px;
}
.product-info .rating { margin-bottom: 4px; }
.product-info .price {
  margin: 4px 0 18px;
}
.product-info .btn + .btn { margin-top: 10px; }
.trust-mini {
  margin-top: 16px;
  row-gap: 10px;
}
.trust-mini span {
  padding: 10px 13px;
}
.qty { margin: 16px 0 18px; }
.detail-tabs { gap: clamp(18px, 2.8vw, 28px); }
.detail-tabs article {
  padding: clamp(22px, 3vw, 30px);
}
.review-row,
.review-grid { gap: clamp(14px, 2vw, 22px); }
.review-row blockquote,
.review-grid blockquote { padding: 22px; }
.faq-list details { margin: 12px 0; padding: 18px 20px; }

.blog-grid { gap: clamp(18px, 3vw, 28px); }
.blog-card a { border-radius: 28px; }
.blog-card span,
.blog-card h3,
.blog-card p {
  margin-left: 18px;
  margin-right: 18px;
}
.blog-card p { margin-bottom: 18px; }
.newsletter-card { gap: 22px; }

.feature-list,
.cart-list,
.contact-cards { gap: clamp(14px, 2vw, 20px); }
.feature-list article,
.content-card,
.summary-card,
.filters,
.warning-box,
.success-card,
.map-placeholder,
.toc {
  padding: clamp(22px, 3vw, 30px);
}
.filters label:last-child { margin-bottom: 0; }
.cart-item { padding: 14px; gap: 14px; }
.checkout { padding-top: clamp(8px, 2vw, 28px); }
fieldset { padding: clamp(18px, 2.5vw, 24px); margin-bottom: 22px; }
legend { margin-left: 4px; }
label { margin-bottom: 14px; }

.site-footer {
  margin-top: clamp(48px, 6vw, 86px);
  padding-top: clamp(42px, 6vw, 68px);
}
.footer-grid { gap: clamp(28px, 4vw, 44px); }
.footer-grid a { margin: 10px 0; }
.footer-newsletter { gap: 12px; }

@media (max-width: 559px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .announce { font-size: 12px; padding-block: 7px; }
  .header-inner { min-height: 66px; }
  .section { padding-block: 44px; }
  .breadcrumb {
    margin-top: 16px;
    margin-bottom: 20px;
    font-size: 12px;
  }
  .hero { padding: 36px 0 42px; }
  .hero-grid { gap: 24px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .mini-proof span,
  .trust-mini span { font-size: 12px; }
  .category-card { grid-template-columns: 86px minmax(0, 1fr); }
  .page-head { margin-bottom: 22px; }
  .sort-row { margin-bottom: 20px; }
  .product-grid { gap: 14px; }
  .product-card { border-radius: 22px; }
  .product-card__body { padding: 13px; }
  .product-card__body h3 { font-size: 15px; line-height: 1.18; }
  .product-card__body p { line-height: 1.45; }
  .product-card__footer { gap: 10px; }
  .btn--small { min-height: 42px; }
  .product-detail.container {
    gap: 20px;
    margin-top: 0;
    margin-bottom: 12px;
  }
  .product-info { padding: 20px; }
  .product-info .eyebrow {
    margin-bottom: 14px;
    font-size: 10.5px;
  }
  .product-info h1 { font-size: clamp(28px, 8vw, 36px); }
  .product-info .price { margin-bottom: 14px; }
  .trust-mini { display: grid; grid-template-columns: 1fr; }
  .trust-mini span { width: 100%; }
  .detail-tabs article,
  .feature-list article,
  .content-card,
  .summary-card,
  .filters,
  .warning-box,
  .success-card,
  .map-placeholder,
  .toc {
    padding: 20px;
  }
  .review-row blockquote,
  .review-grid blockquote { padding: 18px; }
  .footer-grid { gap: 30px; }
  .site-footer { margin-top: 44px; }
}

@media (min-width: 760px) {
  .product-detail.container {
    align-items: start;
  }
  .product-info {
    position: sticky;
    top: calc(var(--header-h) + 34px);
  }
  .section + .section { padding-top: clamp(44px, 5vw, 72px); }
  .product-grid--shop { gap: 24px; }
}

@media (min-width: 1024px) {
  .product-detail.container {
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  }
  .product-grid { gap: 24px; }
}

/* Mobile sticky CTA should support conversion without visually crowding the hero area. */
.sticky-atc {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
  transition: opacity .2s ease, transform .2s ease;
}
.sticky-atc.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (min-width: 760px) {
  .sticky-atc,
  .sticky-atc.is-visible { display: none; }
}

.product-grid--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 420px;
  margin-inline: auto;
}
.campaign-product-section {
  padding-top: clamp(38px, 5vw, 68px);
}
@media (max-width: 900px) {
  .ty-review-header,
  .ty-review-toolbar,
  .ty-review-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .ty-review-panel {
    grid-template-columns: 1fr;
  }

  .ty-score-box {
    place-items: start;
    text-align: left;
  }

  .ty-photo-list {
    margin-right: -16px;
  }

  .ty-sort,
  .ty-sort label,
  .ty-sort select,
  .ty-write-review {
    width: 100%;
  }

  .ty-lightbox {
    grid-template-columns: 1fr;
    padding: 56px 12px 12px;
  }

  .ty-lightbox figure {
    grid-template-columns: 1fr;
  }

  .ty-lightbox-nav {
    position: absolute;
    top: 45%;
    width: 42px;
    height: 58px;
    font-size: 34px;
  }

  .ty-lightbox-prev {
    left: 8px;
  }

  .ty-lightbox-next {
    right: 8px;
  }

  .ty-lightbox figcaption {
    max-height: 32vh;
  }
}
@media (min-width: 760px) {
  .product-grid--single {
    grid-template-columns: minmax(0, 420px);
    justify-content: center;
  }
}
