/* YEKTEK UPDATE-004: cleaner visual system for utility, SEO and cart pages. */
:root {
  --yek-red: #d71920;
  --yek-red-dark: #aa141a;
  --yek-ink: #111827;
  --yek-ink-2: #263241;
  --yek-muted: #667085;
  --yek-line: #e5e7eb;
  --yek-soft: #f6f8fb;
  --yek-soft-2: #eef2f7;
  --yek-green: #107569;
  --yek-amber: #b54708;
}

.yek-page,
.yek-page * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.yek-page {
  color: var(--yek-ink);
  padding-bottom: 34px;
}

.yek-page a {
  text-decoration: none !important;
}

.yek-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 8px 0 14px;
  color: var(--yek-muted);
  font-size: 13px;
}

.yek-breadcrumb a {
  color: var(--yek-muted) !important;
}

.yek-shell {
  border: 1px solid var(--yek-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, .06);
  overflow: hidden;
  margin-bottom: 18px;
}

.yek-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 22px;
  align-items: stretch;
  padding: 28px;
  background: linear-gradient(180deg, #fff, #fafbfc);
  border-left: 5px solid var(--yek-red);
}

.yek-hero.compact {
  grid-template-columns: 1fr;
}

.yek-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid #ffd7db;
  border-radius: 999px;
  background: #fff5f6;
  color: var(--yek-red-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.yek-hero h1 {
  margin: 0 0 12px;
  max-width: 900px;
  color: var(--yek-ink) !important;
  font-size: 34px;
  line-height: 1.16;
  font-weight: 950;
}

.yek-hero p {
  margin: 0 0 18px;
  max-width: 860px;
  color: #475467;
  font-size: 16px;
  line-height: 1.68;
}

.yek-hero-panel {
  border-radius: 8px;
  background: var(--yek-ink);
  color: #fff;
  padding: 18px;
  display: grid;
  gap: 10px;
  align-content: center;
}

.yek-hero-panel span {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #eef2f7;
  font-size: 13px;
  line-height: 1.35;
}

.yek-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #fff;
  color: var(--yek-red);
  font-weight: 950;
  font-size: 12px;
}

.yek-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.yek-btn,
.yek-page button.yek-btn,
.yek-page .yek-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 15px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--yek-red);
  color: #fff !important;
  font-weight: 900;
  line-height: 1.2;
}

.yek-btn:hover {
  background: var(--yek-red-dark);
  color: #fff !important;
}

.yek-btn.secondary {
  background: #fff;
  border-color: #d0d5dd;
  color: var(--yek-ink) !important;
}

.yek-btn.dark {
  background: var(--yek-ink);
  color: #fff !important;
}

.yek-section {
  margin: 18px 0;
}

.yek-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin: 0 0 14px;
}

.yek-section-head h2 {
  margin: 0;
  color: var(--yek-ink);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 950;
}

.yek-section-head p {
  margin: 0;
  color: var(--yek-muted);
  font-size: 14px;
  line-height: 1.55;
}

.yek-tool-grid,
.yek-trust-grid,
.yek-guide-grid,
.yek-product-grid,
.yek-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.yek-trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yek-tool-card,
.yek-trust-card,
.yek-guide-card,
.yek-card,
.yek-link-card,
.yek-product-card {
  border: 1px solid var(--yek-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17,24,39,.05);
}

.yek-tool-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px;
  transition: border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.yek-tool-card:hover,
.yek-product-card:hover,
.yek-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(215,25,32,.45);
  box-shadow: 0 12px 30px rgba(17,24,39,.09);
}

.yek-tool-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.yek-tool-top .yek-mark {
  background: #fff5f6;
  border: 1px solid #ffd4d8;
}

.yek-tool-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #f8fafc;
  color: var(--yek-ink);
  font-size: 20px;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  transition: transform .16s ease;
}

.yek-tool-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.yek-tool-card .yek-tool-top > span:first-child:not(:has(svg)) {
  font-size: 0 !important;
  color: transparent !important;
}

.yek-tool-card .yek-tool-top > span:first-child:not(:has(svg))::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}

.yek-tool-card:nth-child(1) .yek-tool-top > span:first-child:not(:has(svg))::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='7' width='10' height='10' rx='2'/%3E%3Cpath d='M9 1v3M15 1v3M9 20v3M15 20v3M1 9h3M1 15h3M20 9h3M20 15h3M10 10h4v4h-4z'/%3E%3C/svg%3E");
}

.yek-tool-card:nth-child(2) .yek-tool-top > span:first-child:not(:has(svg))::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b54708' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 2 21h20L12 3z'/%3E%3Cpath d='M12 9v5M12 17h.01'/%3E%3C/svg%3E");
}

.yek-tool-card:nth-child(3) .yek-tool-top > span:first-child:not(:has(svg))::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234338ca' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='7.5' cy='14.5' r='4.5'/%3E%3Cpath d='M11 11l8-8M16 6l3 3M14 8l2 2'/%3E%3C/svg%3E");
}

.yek-tool-card:nth-child(4) .yek-tool-top > span:first-child:not(:has(svg))::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f766e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2h8v5H8zM7 7h10l-1 8H8L7 7zM10 15v4M14 15v4M9 22h6'/%3E%3Cpath d='M10 5h.01M14 5h.01'/%3E%3C/svg%3E");
}

.yek-tool-card:nth-child(5) .yek-tool-top > span:first-child:not(:has(svg))::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315803d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16l-6 7v6l-4 2v-8L4 4z'/%3E%3Cpath d='M7 4v4M12 4v7M17 4v4'/%3E%3C/svg%3E");
}

.yek-tool-card:nth-child(6) .yek-tool-top > span:first-child:not(:has(svg))::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l1.5-5h11L19 12M5 12h14v6H5zM7 18v2M17 18v2M7.5 15h.01M16.5 15h.01'/%3E%3C/svg%3E");
}

.yek-tool-icon.is-ecu {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.yek-tool-icon.is-dtc {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #b54708;
}

.yek-tool-icon.is-radio {
  border-color: #c7d2fe;
  background: #eef2ff;
  color: #4338ca;
}

.yek-tool-icon.is-obd {
  border-color: #99f6e4;
  background: #f0fdfa;
  color: #0f766e;
}

.yek-tool-icon.is-dpf {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #15803d;
}

.yek-tool-icon.is-vag {
  border-color: #cbd5e1;
  background: #f8fafc;
  color: #334155;
}

.yek-tool-card:hover .yek-tool-icon {
  transform: translateY(-1px);
}

.yek-tool-card h3,
.yek-guide-card h3,
.yek-card h2,
.yek-card h3,
.yek-product-card h3 {
  margin: 0 0 9px;
  color: var(--yek-ink);
  line-height: 1.25;
  font-weight: 950;
}

.yek-tool-card h3 {
  font-size: 19px;
}

.yek-tool-card p,
.yek-trust-card span,
.yek-guide-card p,
.yek-card p,
.yek-card li,
.yek-product-card p {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.62;
}

.yek-tool-card p {
  margin: 0 0 14px;
}

.yek-mini-list {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.yek-mini-list li {
  position: relative;
  padding-left: 18px;
  color: #475467;
  font-size: 14px;
}

.yek-mini-list li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--yek-red);
}

.yek-tool-card .yek-actions {
  margin-top: auto;
}

.yek-trust-card,
.yek-guide-card,
.yek-card {
  padding: 16px;
}

.yek-trust-card b {
  display: block;
  margin-bottom: 5px;
  color: var(--yek-ink);
  font-weight: 950;
}

.yek-form-panel {
  border: 1px solid var(--yek-line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(17,24,39,.06);
}

.yek-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.yek-input,
.yek-page input[type="text"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 11px 13px;
  color: var(--yek-ink);
  font-size: 16px;
  background: #fff;
}

.yek-input:focus,
.yek-page input[type="text"]:focus {
  border-color: var(--yek-red);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(215,25,32,.10);
}

.yek-helper-text {
  display: block;
  margin-top: 8px;
  color: var(--yek-muted);
  font-size: 13px;
  line-height: 1.45;
}

.yek-result {
  margin-top: 14px;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid var(--yek-line);
  background: #f9fafb;
}

.yek-result.ok {
  border-color: #abefc6;
  background: #ecfdf3;
  color: #067647;
}

.yek-result.err {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #9a3412;
}

.yek-big-code {
  display: block;
  margin-top: 4px;
  color: var(--yek-red);
  font-size: 38px;
  line-height: 1.05;
  font-weight: 950;
}

.yek-chip-row,
.yek-code-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.yek-chip-row a,
.yek-chip-row span,
.yek-code-cloud a,
.yek-code-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid #d0d5dd;
  border-radius: 999px;
  background: #fff;
  color: var(--yek-ink) !important;
  font-size: 13px;
  font-weight: 900;
}

.yek-code-cloud a:hover,
.yek-chip-row a:hover {
  border-color: var(--yek-red);
  color: var(--yek-red) !important;
}

.yek-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, .8fr);
  gap: 16px;
  align-items: start;
}

.yek-side-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--yek-line);
  color: var(--yek-ink) !important;
  font-weight: 850;
}

.yek-side-links a:first-child {
  border-top: 0;
}

.yek-review {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid #dbeafe;
  border-left: 5px solid #2563eb;
  border-radius: 8px;
  background: #f8fbff;
}

.yek-review b {
  display: block;
  margin-bottom: 4px;
  color: var(--yek-ink);
  font-size: 17px;
}

.yek-review span {
  display: block;
  color: #475467;
  line-height: 1.55;
}

.yek-dark-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  background: var(--yek-ink);
  color: #fff;
}

.yek-dark-band h2,
.yek-dark-band h3 {
  margin: 0 0 6px;
  color: #fff !important;
  font-size: 21px;
  font-weight: 950;
}

.yek-dark-band p {
  margin: 0;
  color: #e5e7eb;
  line-height: 1.55;
}

.yek-products-block {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--yek-line);
  border-radius: 8px;
  background: #fff;
}

.yek-products-block h2,
.yek-products-block h3 {
  margin: 0 0 14px;
  color: var(--yek-ink);
  font-size: 22px;
  font-weight: 950;
}

.yek-product-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.yek-product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.yek-product-media {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: #f8fafc;
  border-bottom: 1px solid var(--yek-line);
}

.yek-product-media img {
  max-width: 100%;
  max-height: 145px;
  object-fit: contain;
}

.yek-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.yek-product-card h3,
.yek-product-card strong {
  display: block;
  margin: 0 0 8px;
  color: var(--yek-ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 950;
}

.yek-price {
  display: inline-flex;
  width: max-content;
  margin: 0 0 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #fff7ed;
  color: var(--yek-amber);
  font-weight: 950;
  font-size: 13px;
}

.yek-product-card .yek-btn {
  width: 100%;
  margin-top: auto;
}

.yek-empty-brand {
  color: #c0c7d2;
  font-size: 26px;
  font-weight: 950;
}

.yek-dtc-result-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.yek-dtc-result-title h3 {
  margin: 0;
  font-size: 22px;
}

.yek-pill {
  display: inline-flex;
  align-items: center;
  margin: 8px 6px 0 0;
  padding: 6px 9px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  font-size: 12px;
  font-weight: 900;
}

#checkout-cart .yek-cart-summary {
  border: 1px solid var(--yek-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17,24,39,.05);
  overflow: hidden;
  margin-bottom: 16px;
}

#checkout-cart .yek-cart-summary-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 18px;
  background: #f8fafc;
  border-bottom: 1px solid var(--yek-line);
}

#checkout-cart .yek-cart-summary-head h2 {
  margin: 0 0 5px;
  font-size: 21px;
  line-height: 1.25;
  color: var(--yek-ink);
  font-weight: 950;
}

#checkout-cart .yek-cart-summary-head p {
  margin: 0;
  color: #475467;
  line-height: 1.55;
  font-size: 14px;
}

#checkout-cart .yek-cart-count {
  align-self: flex-start;
  white-space: nowrap;
  border-radius: 999px;
  background: var(--yek-ink);
  color: #fff;
  padding: 7px 11px;
  font-weight: 900;
  font-size: 13px;
}

#checkout-cart .yek-cart-summary .table {
  margin: 0;
}

#checkout-cart .yek-cart-summary .table td {
  border-left: 0;
  border-right: 0;
  padding: 11px 18px;
}

#checkout-cart .yek-cart-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 12px 18px 16px;
}

#checkout-cart .yek-cart-trust span {
  border: 1px solid var(--yek-line);
  border-radius: 8px;
  background: #fff;
  color: #334155;
  line-height: 1.35;
  font-size: 13px;
  min-height: 58px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(17,24,39,.04);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

#checkout-cart .yek-cart-trust span {
  padding: 11px 13px;
}

#checkout-cart .yek-cart-trust span:hover {
  border-color: #fecaca;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(17,24,39,.08);
}

#checkout-cart .yek-cart-trust span:before {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff1f2;
  color: #dc2626;
  font-weight: 950;
}

#checkout-cart .yek-cart-trust span:nth-child(1):before {
  content: "✓";
}

#checkout-cart .yek-cart-trust span:nth-child(2):before {
  content: "▣";
}

#checkout-cart .yek-cart-trust span:nth-child(3):before {
  content: "★";
}

#checkout-cart .yek-cart-options {
  margin-top: 14px;
  border: 1px solid var(--yek-line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

#checkout-cart .yek-cart-options .title {
  margin-top: 0;
  color: var(--yek-ink);
  font-size: 18px;
  font-weight: 950;
}

#checkout-cart .yek-cart-options p {
  color: #475467;
}

@media (max-width: 980px) {
  .yek-hero,
  .yek-two-col,
  .yek-dark-band,
  .yek-review,
  .yek-review {
    grid-template-columns: 1fr;
  }
  .yek-tool-grid,
  .yek-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .yek-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .yek-page {
    padding-bottom: 22px;
  }
  .yek-hero {
    padding: 20px;
  }
  .yek-hero h1 {
    font-size: 26px;
  }
  .yek-tool-grid,
  .yek-guide-grid,
  .yek-trust-grid,
  .yek-link-grid,
  .yek-search-row,
  #checkout-cart .yek-cart-trust {
    grid-template-columns: 1fr;
  }
  .yek-section-head {
    display: block;
  }
  .yek-actions,
  .yek-actions {
    align-items: stretch;
  }
  .yek-btn,
  .yek-page .yek-btn {
    width: 100%;
  }
  #checkout-cart .yek-cart-summary-head {
    display: block;
  }
  #checkout-cart .yek-cart-count {
    display: inline-flex;
    margin-top: 10px;
  }
}

/* Sepet v5: Journal3 yerlesimini bozmayan temiz, sade sepet ozeti. */
#checkout-cart .yek-cart-trust,
#checkout-cart .yek-cart-options {
  display: none !important;
}

#checkout-cart .yek-cart-summary {
  border: 1px solid #dfe5ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
  margin-bottom: 14px;
}

#checkout-cart .yek-cart-summary-head {
  padding: 14px 16px;
  background: #fff;
  border-bottom: 1px solid #e8edf3;
}

#checkout-cart .yek-cart-summary-head h2 {
  margin: 0 0 4px;
  font-size: 19px;
}

#checkout-cart .yek-cart-summary-head p {
  max-width: 360px;
  font-size: 13px;
  line-height: 1.45;
  color: #596575;
}

#checkout-cart .yek-cart-count {
  font-size: 12px;
  padding: 6px 9px;
  background: #111827;
}

#checkout-cart .yek-cart-installment {
  margin: 12px 14px;
  padding: 11px 12px;
  border: 1px solid #ffd4d7;
  border-left: 3px solid #d71920;
  border-radius: 8px;
  background: #fff8f8;
}

#checkout-cart .yek-cart-summary .yek-cart-installment:last-child {
  margin-bottom: 14px;
}

#checkout-cart .yek-cart-installment span,
#checkout-cart .yek-cart-installment small {
  display: block;
  color: #647084;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 800;
}

#checkout-cart .yek-cart-installment strong {
  display: block;
  margin: 3px 0;
  color: #111827;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 950;
}

#checkout-cart .yek-cart-summary .table {
  margin: 0;
  border: 0;
}

#checkout-cart .yek-cart-summary .table td {
  padding: 9px 14px;
  font-size: 13px;
  border-color: #edf1f5;
}

#checkout-cart .yek-cart-summary .table tr:last-child td {
  background: #f8fafc;
  color: #111827;
  font-size: 14px;
  font-weight: 900;
}

#checkout-cart .buttons .btn {
  min-height: 42px;
  border-radius: 999px;
  font-weight: 800;
}

#checkout-cart .buttons .btn-primary {
  background: #171b20;
  border-color: #171b20;
  color: #fff;
}

@media (max-width: 700px) {
  #checkout-cart .yek-cart-summary-head p {
    max-width: none;
  }
}

/* V43 - visual pages mobile tightening */
@media (max-width: 767px) {
  .yek-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 18px;
  }

  .yek-hero,
  .yek-section,
  .yek-dark-band,
  .yek-products-block,
  .yek-review {
    border-radius: 10px;
    padding: 14px;
  }

  .yek-hero,
  .yek-two-col,
  .yek-dark-band,
  .yek-review {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .yek-hero h1 {
    font-size: clamp(24px, 6.4vw, 31px);
    line-height: 1.15;
    letter-spacing: 0;
    margin-bottom: 8px;
  }

  .yek-hero p,
  .yek-section-head p,
  .yek-tool-card p,
  .yek-guide-card p,
  .yek-product-card p,
  .yek-dark-band p {
    font-size: 14px;
    line-height: 1.5;
  }

  .yek-section-head {
    gap: 8px;
    margin-bottom: 12px;
  }

  .yek-section-head h2 {
    font-size: clamp(21px, 5.5vw, 26px);
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .yek-tool-grid,
  .yek-guide-grid,
  .yek-trust-grid,
  .yek-product-grid,
  .yek-link-grid,
  .yek-search-row {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .yek-tool-card,
  .yek-trust-card,
  .yek-guide-card,
  .yek-link-card,
  .yek-product-card {
    border-radius: 10px;
    padding: 14px;
    min-width: 0;
  }

  .yek-tool-top {
    align-items: flex-start;
    gap: 10px;
  }

  .yek-tool-icon,
  .yek-tool-card .yek-tool-top > span:first-child:not(:has(svg)) {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 10px;
  }

  .yek-tool-icon svg {
    width: 24px;
    height: 24px;
  }

  .yek-tool-card h3,
  .yek-guide-card h3,
  .yek-product-card h3 {
    font-size: 18px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .yek-actions,
  .yek-tool-card .yek-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: stretch;
    width: 100%;
  }

  .yek-btn,
  .yek-page button.yek-btn,
  .yek-page .yek-btn {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .yek-page input[type="text"],
  .yek-page input[type="search"],
  .yek-page select {
    min-height: 42px;
    font-size: 16px;
    border-radius: 8px;
  }

  .yek-product-media {
    border-radius: 10px;
    min-height: 150px;
  }

  .yek-product-media img {
    max-height: 150px;
    object-fit: contain;
  }

  #checkout-cart .yek-cart-summary {
    border-radius: 8px;
  }

  #checkout-cart .yek-cart-summary-head,
  #checkout-cart .yek-cart-installment {
    margin-left: 0;
    margin-right: 0;
  }

  #checkout-cart .yek-cart-summary .table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 420px) {
  .yek-page {
    padding-left: 8px;
    padding-right: 8px;
  }

  .yek-hero,
  .yek-section,
  .yek-dark-band,
  .yek-products-block,
  .yek-review {
    padding: 12px;
  }

  .yek-tool-card,
  .yek-trust-card,
  .yek-guide-card,
  .yek-link-card,
  .yek-product-card {
    padding: 12px;
  }

  .yek-tool-icon,
  .yek-tool-card .yek-tool-top > span:first-child:not(:has(svg)) {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}
