:root {
  --bg: #f5efe2;
  --surface: #fffaf0;
  --surface-2: #efe6d3;
  --fg: #1a1f2c;
  --muted: #5b6172;
  --border: #d9cfb8;
  --accent: #c9a14a;
  --accent-deep: #a8812f;
  --navy: #0f1a2c;
  --navy-2: #1c2942;
  --charcoal: #20242e;
  --success: #2f6e4a;
  --danger: #8a2230;
  --shadow: 0 10px 30px rgba(15, 26, 44, 0.12);
  --shadow-sm: 0 2px 10px rgba(15, 26, 44, 0.08);
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1180px;

  --font-display: 'Source Serif 4', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', 'Helvetica Neue', 'Segoe UI', Roboto, Arial, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 15% 8%, rgba(201, 161, 74, 0.08), transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(15, 26, 44, 0.07), transparent 40%);
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(32px, 4.5vw, 52px); letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 3vw, 36px); }
h3 { font-size: clamp(20px, 2vw, 24px); }

p { margin: 0 0 1rem; }

a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--accent-deep); }

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

ul { padding-left: 1.2rem; }

.yd-sr, .yd-skip {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.yd-skip:focus {
  position: fixed; top: 12px; left: 12px;
  width: auto; height: auto; padding: 12px 18px;
  clip: auto; background: var(--navy); color: var(--surface);
  z-index: 200; border-radius: 8px; font-weight: 600;
}

.yd-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.yd-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 26px;
  border-radius: 8px; border: 1px solid transparent;
  font-family: var(--font-body); font-size: 17px; font-weight: 600;
  letter-spacing: 0.01em; cursor: pointer;
  text-decoration: none; transition: all 0.18s ease;
}
.yd-btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.yd-btn-amber {
  background: var(--accent); color: var(--navy);
  box-shadow: 0 4px 0 var(--accent-deep);
}
.yd-btn-amber:hover { background: var(--accent-deep); color: var(--surface); box-shadow: 0 2px 0 #7c5e1d; transform: translateY(2px); }

.yd-btn-navy {
  background: var(--navy); color: var(--surface);
  box-shadow: 0 4px 0 #050a13;
}
.yd-btn-navy:hover { background: var(--navy-2); color: var(--accent); }

.yd-btn-ghost {
  background: transparent; color: var(--navy);
  border-color: var(--border);
}
.yd-btn-ghost:hover { border-color: var(--navy); background: var(--surface); }

.yd-btn-lg { min-height: 56px; font-size: 18px; padding: 14px 34px; }

.yd-eyebrow {
  display: inline-block; font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 12px;
}

.yd-header {
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 161, 74, 0.3);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}
.yd-header-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding-top: 14px; padding-bottom: 14px;
}
.yd-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--surface);
}
.yd-logo-mark { display: inline-flex; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.yd-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.yd-logo-text strong {
  font-family: var(--font-display); font-weight: 600;
  font-size: 20px; letter-spacing: 0.02em; color: var(--surface);
}
.yd-logo-text span {
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--accent); text-transform: uppercase;
}

.yd-main-nav {
  display: flex; align-items: center; gap: 22px;
}
.yd-main-nav a {
  color: var(--surface); text-decoration: none;
  font-size: 15px; font-weight: 500; letter-spacing: 0.01em;
  padding: 6px 2px; border-bottom: 2px solid transparent;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.yd-main-nav a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.yd-main-nav a[aria-current="page"] { color: var(--accent); border-bottom-color: var(--accent); }

.yd-nav-cart {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: var(--navy) !important;
  border-radius: 999px; padding: 6px 12px !important;
  border-bottom: none !important; font-weight: 600;
}
.yd-nav-cart:hover { background: var(--surface); color: var(--navy) !important; border-bottom: none !important; }
.yd-cart-count { font-variant-numeric: tabular-nums; font-size: 14px; min-width: 18px; text-align: center; }

.yd-nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: 1px solid var(--accent);
  padding: 10px; border-radius: 8px; cursor: pointer;
}
.yd-nav-toggle-bar { width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }
.yd-nav-toggle[aria-expanded="true"] .yd-nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.yd-nav-toggle[aria-expanded="true"] .yd-nav-toggle-bar:nth-child(2) { opacity: 0; }
.yd-nav-toggle[aria-expanded="true"] .yd-nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.yd-cookie-banner {
  background: var(--navy); color: var(--surface);
  border-top: 2px solid var(--accent);
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  padding: 14px 0;
}
.yd-cookie-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.yd-cookie-banner p { margin: 0; font-size: 15px; max-width: 80ch; }
.yd-cookie-banner a { color: var(--accent); }

.yd-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--surface);
  padding: 64px 0 72px;
  position: relative; overflow: hidden;
}
.yd-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(201,161,74,0.22), transparent 40%),
    radial-gradient(circle at 88% 78%, rgba(201,161,74,0.10), transparent 45%);
  pointer-events: none;
}
.yd-hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 40px; align-items: center;
}
.yd-hero h1 { color: var(--surface); margin-bottom: 18px; }
.yd-hero h1 span { color: var(--accent); display: block; font-style: italic; }
.yd-hero .yd-eyebrow { color: var(--accent); }
.yd-hero p { font-size: 19px; color: rgba(255, 250, 240, 0.85); max-width: 52ch; }
.yd-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

.yd-hero-visual { display: grid; gap: 18px; }
.yd-hero-visual > img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,161,74,0.35);
  box-shadow: var(--shadow);
  object-fit: cover; max-height: 320px;
}
.yd-inline-figure { margin: 0 0 28px; }
.yd-inline-figure img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.yd-hero-card {
  background: rgba(255, 250, 240, 0.04);
  border: 1px solid rgba(201, 161, 74, 0.35);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}
.yd-hero-card .yd-hero-card-row { display: flex; gap: 16px; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(201,161,74,0.18); }
.yd-hero-card .yd-hero-card-row:last-child { border-bottom: none; }
.yd-hero-card .yd-hero-card-row svg { color: var(--accent); flex-shrink: 0; }
.yd-hero-card strong { color: var(--surface); font-family: var(--font-display); font-weight: 600; font-size: 18px; }
.yd-hero-card small { display: block; color: rgba(255, 250, 240, 0.7); font-size: 14px; }

.yd-section { padding: 64px 0; }
.yd-section-head { text-align: center; max-width: 70ch; margin: 0 auto 36px; }
.yd-section-head p { color: var(--muted); font-size: 18px; }

.yd-categories {
  display: grid; gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}
.yd-category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none; color: inherit; display: block;
}
.yd-category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent); }
.yd-category-card .yd-cat-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--navy); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.yd-category-card h3 { margin: 0 0 6px; color: var(--navy); }
.yd-category-card p { margin: 0; color: var(--muted); font-size: 15px; }
.yd-category-card .yd-cat-link {
  margin-top: 14px; display: inline-block;
  color: var(--accent-deep); font-weight: 600; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
}

.yd-hit {
  background: var(--navy); color: var(--surface);
  border-radius: var(--radius-lg);
  padding: 56px 0; position: relative; overflow: hidden;
}
.yd-hit::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,161,74,0.18), transparent 70%);
}
.yd-hit .yd-container { position: relative; z-index: 1; }
.yd-hit h2 { color: var(--surface); }
.yd-hit .yd-eyebrow { color: var(--accent); }
.yd-hit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
.yd-hit-item {
  background: rgba(255, 250, 240, 0.05);
  border: 1px solid rgba(201, 161, 74, 0.3);
  border-radius: var(--radius);
  padding: 22px;
}
.yd-hit-item strong { color: var(--accent); font-family: var(--font-display); font-size: 19px; display: block; margin-bottom: 6px; }
.yd-hit-item p { margin: 0; color: rgba(255, 250, 240, 0.82); font-size: 15px; }

.yd-products-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.yd-product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.yd-product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.yd-product-card .yd-product-media {
  aspect-ratio: 4 / 3; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  padding: 28px; border-bottom: 1px solid var(--border);
}
.yd-product-card .yd-product-media img { max-height: 180px; width: auto; }
.yd-product-card .yd-product-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.yd-product-card h3 { font-size: 20px; margin: 0 0 6px; }
.yd-product-card .yd-product-cat { font-size: 12px; color: var(--accent-deep); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.yd-product-card .yd-product-desc { color: var(--muted); font-size: 15px; margin: 10px 0 16px; flex: 1; }
.yd-product-card .yd-product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.yd-product-price { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--navy); }
.yd-stock-badge { display: inline-block; font-size: 12px; color: var(--success); background: rgba(47,110,74,0.12); border-radius: 999px; padding: 4px 10px; font-weight: 600; }
.yd-stock-badge.out { color: var(--danger); background: rgba(138,34,48,0.12); }

.yd-filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 28px; padding: 14px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.yd-filter-btn {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  padding: 8px 14px; min-height: 40px;
  border: 1px solid var(--border); background: transparent;
  color: var(--navy); border-radius: 999px; cursor: pointer;
  letter-spacing: 0.02em;
}
.yd-filter-btn:hover { border-color: var(--accent); color: var(--accent-deep); }
.yd-filter-btn.is-active { background: var(--navy); color: var(--surface); border-color: var(--navy); }

.yd-product-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
}
.yd-product-gallery {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  display: flex; align-items: center; justify-content: center;
  min-height: 380px; position: sticky; top: 88px;
}
.yd-product-gallery img { max-height: 320px; }
.yd-product-info h1 { margin-bottom: 8px; }
.yd-product-info .yd-product-cat { color: var(--accent-deep); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px; }
.yd-product-info .yd-product-price-big {
  font-family: var(--font-display); font-size: clamp(34px, 4vw, 44px);
  font-weight: 600; color: var(--navy); margin: 18px 0 12px; letter-spacing: -0.01em;
}
.yd-product-info .yd-product-desc { font-size: 17px; color: var(--fg); margin: 18px 0; }
.yd-product-info .yd-product-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 18px; }
.yd-product-info .yd-product-actions .yd-stock-badge { font-size: 14px; padding: 6px 12px; }

.yd-cart-list { display: flex; flex-direction: column; gap: 14px; }
.yd-cart-item {
  display: grid; grid-template-columns: 70px 1fr auto auto auto;
  gap: 16px; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px;
}
.yd-cart-item .yd-cart-thumb { background: var(--surface-2); border-radius: 8px; padding: 6px; display: flex; align-items: center; justify-content: center; height: 70px; }
.yd-cart-item .yd-cart-thumb img { max-height: 58px; }
.yd-cart-item .yd-cart-name { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 17px; }
.yd-cart-item .yd-cart-unit { color: var(--muted); font-size: 14px; }
.yd-cart-qty { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.yd-cart-qty button { width: 38px; height: 40px; background: var(--surface); border: none; font-size: 18px; cursor: pointer; color: var(--navy); font-weight: 700; }
.yd-cart-qty button:hover { background: var(--surface-2); color: var(--accent-deep); }
.yd-cart-qty input { width: 44px; height: 40px; border: none; text-align: center; font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--navy); }
.yd-cart-line-price { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--navy); min-width: 110px; text-align: right; }
.yd-cart-remove { background: transparent; border: none; color: var(--danger); font-size: 13px; text-decoration: underline; cursor: pointer; padding: 6px; }

.yd-cart-summary {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px;
}
.yd-cart-summary h2 { font-size: 22px; margin-top: 0; }
.yd-cart-summary .yd-summary-row { display: flex; justify-content: space-between; padding: 6px 0; color: var(--fg); }
.yd-cart-summary .yd-summary-total {
  border-top: 2px solid var(--border); margin-top: 12px; padding-top: 14px;
  font-family: var(--font-display); font-weight: 600; font-size: 24px;
}
.yd-cart-summary .yd-summary-total .yd-summary-amount { color: var(--accent-deep); }

.yd-empty {
  text-align: center; padding: 60px 20px;
  background: var(--surface); border: 1px dashed var(--border); border-radius: var(--radius-lg);
}
.yd-empty h2 { margin-top: 0; }
.yd-empty p { color: var(--muted); max-width: 52ch; margin: 0 auto 22px; }

.yd-form { display: grid; gap: 18px; max-width: 720px; }
.yd-form-row { display: flex; flex-direction: column; gap: 6px; }
.yd-form-row label { font-weight: 600; color: var(--navy); font-size: 15px; letter-spacing: 0.01em; }
.yd-form-row input, .yd-form-row select, .yd-form-row textarea {
  font-family: var(--font-body); font-size: 17px;
  padding: 12px 14px; border: 1px solid var(--border);
  border-radius: 8px; background: var(--surface); color: var(--fg);
  min-height: 48px;
}
.yd-form-row input:focus, .yd-form-row select:focus, .yd-form-row textarea:focus {
  outline: 3px solid rgba(201,161,74,0.5); outline-offset: 0; border-color: var(--accent);
}
.yd-form-row textarea { min-height: 130px; resize: vertical; }
.yd-form-row .yd-help { color: var(--muted); font-size: 14px; }
.yd-form-check { display: flex; gap: 10px; align-items: flex-start; }
.yd-form-check input { width: 20px; height: 20px; min-height: 0; margin-top: 4px; accent-color: var(--accent-deep); }
.yd-form-check label { font-size: 15px; font-weight: 400; color: var(--fg); }
.yd-form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.yd-checkout-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; align-items: start; }

.yd-alert { padding: 14px 18px; border-radius: 8px; font-size: 15px; }
.yd-alert-error { background: rgba(138,34,48,0.08); border: 1px solid rgba(138,34,48,0.3); color: var(--danger); }
.yd-alert-success { background: rgba(47,110,74,0.1); border: 1px solid rgba(47,110,74,0.3); color: var(--success); }

.yd-order-summary { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; position: sticky; top: 88px; }
.yd-order-summary h2 { font-size: 20px; margin-top: 0; }
.yd-order-summary .yd-osf-item { display: flex; justify-content: space-between; gap: 10px; padding: 6px 0; font-size: 14px; color: var(--muted); }
.yd-order-summary .yd-osf-item span:last-child { color: var(--navy); font-variant-numeric: tabular-nums; }
.yd-order-summary .yd-osf-total { border-top: 2px solid var(--border); margin-top: 12px; padding-top: 12px; display: flex; justify-content: space-between; font-family: var(--font-display); font-weight: 600; font-size: 20px; }

.yd-thanks { text-align: center; padding: 60px 20px; }
.yd-thanks .yd-thanks-mark {
  width: 76px; height: 76px; margin: 0 auto 20px;
  border-radius: 50%; background: var(--navy); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.yd-thanks h1 { color: var(--navy); }
.yd-thanks .yd-order-id {
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  color: var(--accent-deep); margin: 12px 0 24px; letter-spacing: 0.04em;
}
.yd-thanks-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; max-width: 560px; margin: 22px auto 0; text-align: left; }
.yd-thanks-box h2 { font-size: 18px; }

.yd-content { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.yd-content h1 { margin-top: 0; }
.yd-content h2 { font-size: 22px; margin-top: 32px; }
.yd-content p, .yd-content li { font-size: 17px; line-height: 1.7; }
.yd-prose { max-width: 720px; }

.yd-faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.yd-faq-item details { padding: 0; }
.yd-faq-item summary {
  cursor: pointer; padding: 18px 22px; font-family: var(--font-display);
  font-weight: 600; font-size: 18px; color: var(--navy); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.yd-faq-item summary::-webkit-details-marker { display: none; }
.yd-faq-item summary::after {
  content: '+'; color: var(--accent-deep); font-size: 24px; font-weight: 400; line-height: 1;
}
.yd-faq-item details[open] summary::after { content: '–'; }
.yd-faq-item .yd-faq-answer { padding: 0 22px 20px; color: var(--fg); font-size: 16px; }

.yd-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: start; }
.yd-contact-info { background: var(--navy); color: var(--surface); border-radius: var(--radius-lg); padding: 30px; }
.yd-contact-info h2 { color: var(--surface); }
.yd-contact-info a { color: var(--accent); }
.yd-contact-info p { color: rgba(255,250,240,0.85); font-size: 16px; }
.yd-contact-info dt { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-top: 14px; font-weight: 600; }
.yd-contact-info dd { margin: 4px 0 0; }

.yd-trust-bar {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.yd-trust-item { display: flex; gap: 12px; align-items: center; }
.yd-trust-item svg { color: var(--accent-deep); flex-shrink: 0; }
.yd-trust-item strong { display: block; font-family: var(--font-display); font-size: 16px; color: var(--navy); }
.yd-trust-item small { display: block; color: var(--muted); font-size: 13px; }

.yd-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.yd-review { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.yd-review .yd-stars { color: var(--accent); display: inline-flex; gap: 3px; margin-bottom: 8px; }
.yd-review blockquote { margin: 0 0 12px; font-style: italic; color: var(--fg); }
.yd-review cite { color: var(--muted); font-size: 14px; font-style: normal; }

.yd-pdf-teaser {
  background: var(--surface-2); border-radius: var(--radius-lg);
  padding: 40px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center;
}
.yd-pdf-teaser .yd-pdf-stack { display: flex; gap: 10px; align-items: end; justify-content: center; }
.yd-pdf-teaser .yd-pdf-card {
  width: 120px; height: 160px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 6px;
  box-shadow: var(--shadow);
  padding: 12px; display: flex; flex-direction: column; gap: 4px;
}
.yd-pdf-teaser .yd-pdf-card:nth-child(2) { transform: translateY(-14px) rotate(-3deg); }
.yd-pdf-teaser .yd-pdf-card:nth-child(3) { transform: translateY(8px) rotate(2deg); }
.yd-pdf-teaser .yd-pdf-card-bar { height: 6px; background: var(--accent); border-radius: 2px; width: 70%; }
.yd-pdf-teaser .yd-pdf-card-bar:nth-child(2) { width: 50%; background: var(--navy); }
.yd-pdf-teaser .yd-pdf-card-bar:nth-child(3) { width: 35%; background: var(--muted); }

.yd-section-pdf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.yd-pdf-product { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; text-align: center; }
.yd-pdf-product .yd-pdf-icon { width: 64px; height: 80px; margin: 0 auto 14px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--accent-deep); font-family: var(--font-display); font-weight: 600; }
.yd-pdf-product h3 { font-size: 18px; margin: 0 0 6px; }
.yd-pdf-product p { color: var(--muted); font-size: 14px; }
.yd-pdf-product .yd-product-price { font-size: 18px; margin: 10px 0; }

.yd-breadcrumb { font-size: 14px; color: var(--muted); padding: 16px 0 0; }
.yd-breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.yd-breadcrumb li::after { content: '›'; margin-left: 8px; color: var(--muted); }
.yd-breadcrumb li:last-child::after { content: ''; }
.yd-breadcrumb a { color: var(--muted); text-decoration: none; }
.yd-breadcrumb a:hover { color: var(--accent-deep); }
.yd-breadcrumb [aria-current="page"] { color: var(--navy); font-weight: 600; }

.yd-footer { background: var(--navy); color: var(--surface); margin-top: 80px; }
.yd-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding: 54px 20px 30px; }
.yd-footer-col h2 { color: var(--accent); font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; margin-bottom: 14px; }
.yd-footer-col p, .yd-footer-col li { color: rgba(255,250,240,0.82); font-size: 14px; line-height: 1.6; }
.yd-footer-col a { color: var(--surface); text-decoration: none; }
.yd-footer-col a:hover { color: var(--accent); }
.yd-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.yd-footer-bottom { border-top: 1px solid rgba(255,250,240,0.1); padding: 18px 0; }
.yd-footer-bottom p { margin: 0; color: rgba(255,250,240,0.6); font-size: 13px; text-align: center; }

@media (max-width: 960px) {
  body { font-size: 17px; }
  .yd-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .yd-categories { grid-template-columns: repeat(2, 1fr); }
  .yd-products-grid, .yd-hit-grid, .yd-reviews, .yd-section-pdf-grid { grid-template-columns: repeat(2, 1fr); }
  .yd-trust-bar { grid-template-columns: repeat(2, 1fr); }
  .yd-product-detail { grid-template-columns: 1fr; }
  .yd-product-gallery { position: static; min-height: 280px; }
  .yd-checkout-layout { grid-template-columns: 1fr; }
  .yd-contact-grid, .yd-pdf-teaser { grid-template-columns: 1fr; gap: 24px; }
  .yd-footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}

@media (max-width: 680px) {
  .yd-nav-toggle { display: inline-flex; }
  .yd-main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy); flex-direction: column;
    gap: 0; padding: 10px 20px 20px;
    border-top: 1px solid rgba(201,161,74,0.2);
    display: none;
  }
  .yd-main-nav.is-open { display: flex; }
  .yd-main-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,250,240,0.1); }
  .yd-categories, .yd-products-grid, .yd-hit-grid, .yd-reviews, .yd-section-pdf-grid, .yd-trust-bar { grid-template-columns: 1fr; }
  .yd-footer-grid { grid-template-columns: 1fr; }
  .yd-form-grid-2 { grid-template-columns: 1fr; }
  .yd-cart-item { grid-template-columns: 56px 1fr; grid-template-areas: "thumb name" "thumb price" "qty remove"; row-gap: 10px; }
  .yd-cart-item .yd-cart-thumb { grid-area: thumb; }
  .yd-cart-item .yd-cart-name { grid-area: name; }
  .yd-cart-item .yd-cart-line-price { grid-area: price; text-align: left; }
  .yd-cart-item .yd-cart-qty { grid-area: qty; }
  .yd-cart-remove { grid-area: remove; text-align: right; }
  .yd-section { padding: 48px 0; }
  .yd-content { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

.yd-pdf-media{display:block;margin:0 0 14px;border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--border);background:#f3efe6}
.yd-pdf-media img{width:100%;height:auto;display:block;aspect-ratio:1;object-fit:cover}
.yd-pdf-product .yd-pdf-icon{display:none}
