/* style.css — stil PARTAJAT pentru paginile de detaliu Blum (catalog/blum-detalii/).
   Scris de mana (nu e generat). Derivat din catalog/hafele-detalii/style.css,
   cu extensii proprii Blum: galerie cu miniaturi, bloc descriere, documente PDF,
   produse inrudite. Clasele-cheie (.cta-btn, .vrow, .finish-chip, .spec-grid)
   raman IDENTICE cu Häfele ca sa functioneze oferta-cart.js. */
@import url("/fonts/redesign-2026.css");

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --orange: #FF8800; --orange-deep: #E67500; --orange-light: #FFA033;
  --cream-1: #F5E6BC; --cream-2: #FFF8E1;
  --dark: #1A1A1A; --text: #14110F; --text-soft: #4A4540; --text-mute: #6F675C;
  /* REDESIGN 2026: --serif = alias spre Space Grotesk (titlurile migreaza singure) */
  --serif: 'Space Grotesk', 'DM Sans', system-ui, sans-serif;
  --sans: 'Archivo', 'DM Sans', system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, Menlo, Consolas, monospace;
  --grotesk: 'Space Grotesk', 'DM Sans', system-ui, sans-serif;
  --rd-ink: #14110F; --rd-paper: #F5F2EC; --hair: rgba(20,17,15,0.14);
  --ease: cubic-bezier(.2,.85,.3,1);
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--rd-paper); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.has-topbar { padding-top: 38px; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

/* Topbar */
.topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 99; background: var(--dark); color: rgba(255,255,255,0.85); height: 38px; padding: 0 clamp(1rem, 4vw, 4rem); display: flex; align-items: center; justify-content: center; gap: 1.5rem; font-size: 13px; letter-spacing: 0.05em; border-bottom: 1px solid rgba(230,215,184,0.25); white-space: nowrap; }
.topbar-phone { color: rgba(255,255,255,0.85); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.25s; }
.topbar-phone:hover { color: var(--orange-light); }
.topbar-phone-label { color: var(--orange); font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; }
@media (max-width: 760px) {
  .topbar { gap: 0.8rem; font-size: 11px; padding: 0 0.8rem; }
  .topbar-phone-label { font-size: 10px; letter-spacing: 0.08em; }
}
/* 3 telefoane pe un rand: sub 700px etichetele nu mai incap — raman numerele */
@media (max-width: 700px) {
  .topbar { gap: 0.6rem; }
  .topbar-phone-label { display: none; }
}

/* ---- Skip to content (vizibil doar la focus cu tastatura) ---- */
.skip-link { position: absolute; left: 1rem; top: -120%; z-index: 10000; background: var(--dark); color: #fff; padding: 0.7rem 1.2rem; border-radius: 8px; font-family: var(--sans); font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: top 0.3s var(--ease); }
.skip-link:focus-visible { top: 1rem; }

/* Nav */
nav.site-nav { position: fixed; top: 38px; left: 0; right: 0; z-index: 90; display: flex; align-items: center; justify-content: space-between; padding: 1.1rem clamp(1rem, 4vw, 4rem); background: #FFFFFF; border-bottom: 1px solid rgba(0,0,0,0.06); transition: padding 0.35s, background 0.4s var(--ease), box-shadow 0.35s; }
nav.site-nav.scrolled { padding: 0.7rem clamp(1rem, 4vw, 4rem); box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-img { height: 65px; width: auto; transition: height 0.35s; }
nav.site-nav.scrolled .nav-logo-img { height: 52px; }
.nav-links { display: flex; list-style: none; gap: 1.7rem; align-items: center; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--text); text-decoration: none; transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--orange); transition: width 0.4s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { font-size: 0.86rem; font-weight: 600; color: #fff; background: var(--orange); padding: 0.72rem 1.5rem; text-decoration: none; transition: background 0.3s, transform 0.2s, box-shadow 0.3s; border-radius: var(--radius-sm, 6px); box-shadow: 0 8px 20px -8px rgba(230,117,0,.7); }
.nav-cta:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 12px 26px -8px rgba(230,117,0,.8); }
.menu-toggle { display: none; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--orange); transition: transform 0.35s, opacity 0.25s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); z-index: 100; padding: 6rem 2rem 2rem; display: none; flex-direction: column; overflow-y: auto; opacity: 0; pointer-events: none; transition: opacity 0.35s; }
.mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-menu a { display: block; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,136,0,0.15); font-size: 1.4rem; font-family: var(--serif); color: var(--text); text-decoration: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--orange); padding-left: 0.5rem; }
.mobile-menu-cta { margin-top: 2rem; text-align: center; padding: 1rem 2rem !important; background: var(--orange); color: #fff !important; border-bottom: none !important; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.85rem !important; font-family: var(--sans) !important; border-radius: var(--radius-sm, 6px); }
.mobile-menu-close { position: absolute; top: 1.2rem; right: 1.2rem; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--dark); transition: color 0.25s; }
.mobile-menu-close:hover { color: var(--orange); }
.mobile-menu-close svg { width: 24px; height: 24px; }
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: flex; }
  nav.site-nav { padding: 0.7rem 1.2rem; }
  .nav-logo-img { height: 48px; }
}

/* Breadcrumb + back link */
.breadcrumb { max-width: 1200px; margin: 0 auto; padding: 9.5rem clamp(1.2rem, 5vw, 4rem) 0.4rem; font-size: 11.5px; color: var(--text-mute); font-family: var(--mono); letter-spacing: 0.14em; text-transform: uppercase; }
.breadcrumb a { color: var(--text-mute); text-decoration: none; transition: color 0.25s; }
.breadcrumb a:hover { color: var(--orange); }
.back-link { display: inline-flex; align-items: center; gap: 0.4rem; margin: 0.8rem clamp(1.2rem, 5vw, 4rem) 0; font-size: 11px; color: var(--orange-deep); text-decoration: none; transition: color 0.25s, transform 0.25s; font-family: var(--mono); letter-spacing: 0.12em; text-transform: uppercase; }
.back-link:hover { color: var(--orange); transform: translateX(-2px); }
.back-wrap { max-width: 1200px; margin: 0 auto; }

/* Layout detaliu */
main { max-width: 1200px; margin: 0 auto; padding: 1.2rem clamp(1.2rem, 5vw, 4rem) 4rem; }
.detail-wrap { display: grid; grid-template-columns: minmax(280px, 480px) 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; margin-top: 1rem; }
.gallery-col { position: sticky; top: 150px; }
.gallery-main { aspect-ratio: 1; background: #fff; border: 1px solid rgba(20,17,15,0.1); border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.gallery-main img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 1.6rem; }
.gallery-thumbs { display: flex; gap: 0.5rem; margin-top: 0.6rem; flex-wrap: wrap; }
.gallery-thumbs button { width: 62px; height: 62px; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; background: #fff; padding: 4px; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, box-shadow 0.2s; }
.gallery-thumbs button img { max-width: 100%; max-height: 100%; object-fit: contain; }
.gallery-thumbs button:hover { border-color: var(--orange); }
.gallery-thumbs button.active { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange); }
.info { min-width: 0; }
.info-supplier { display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: #B4530A; background: rgba(255,136,0,0.1); padding: 0.3rem 0.7rem; border-radius: 999px; font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; }
.info h1 { font-family: var(--grotesk); font-size: clamp(1.5rem, 3.2vw, 2.3rem); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 0.7rem; }
.info-code { font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.04em; color: var(--text-mute); margin-bottom: 0.9rem; }
.info-code strong { color: #B4530A; font-weight: 700; font-variant-numeric: tabular-nums; }
.badges { display: flex; gap: 0.35rem; flex-wrap: wrap; margin-bottom: 1.3rem; }
.badge { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.65rem; border-radius: 50px; font-weight: 700; }
.badge-dark { background: var(--dark); color: #fff; }
.badge-outline { border: 1px solid rgba(0,0,0,0.15); color: var(--text-soft); background: #fff; }
.cta-btn { display: inline-block; background: #14110F; color: #F5F2EC; padding: 0.65rem 1.4rem; border-radius: 8px; text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: background 0.3s, color 0.3s, transform 0.2s; margin-bottom: 1.6rem; }
.cta-btn:hover { background: var(--orange); color: #14110F; transform: translateY(-2px); }
.tech-logos { display: flex; gap: 0.9rem; flex-wrap: wrap; align-items: center; margin: 0 0 1.2rem; }
.tech-logos img { height: 22px; width: auto; opacity: 0.85; }

/* Sectiuni */
.section { margin-top: 1.6rem; }
.section h2 { font-family: var(--grotesk); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.7rem; padding-bottom: 0.45rem; border-bottom: 1px solid rgba(20,17,15,0.12); position: relative; }
.section h2::after { content: ''; position: absolute; left: 0; bottom: -1px; width: 56px; height: 2px; background: #FF8800; }

/* Descriere oficiala */
.desc-block { font-size: 0.92rem; color: var(--text-soft); line-height: 1.7; }
.desc-block strong { color: var(--text); }

/* Specificatii */
.spec-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); column-gap: 1.8rem; }
.spec-item { display: flex; flex-direction: column; gap: 0.1rem; padding: 0.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.spec-item dt { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); }
.spec-item dd { font-size: 0.92rem; color: var(--text); }

/* Selector de variante: marime + culoare (cerinta Yosua: alegi dimensiunea pe pagina) */
.vax { margin: 0.9rem 0; }
.vax-label { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 0.45rem; }
.vax-opts { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.vax-opt { padding: 0.42rem 0.85rem; border: 1px solid rgba(0,0,0,0.16); border-radius: 6px; background: #fff; font-size: 0.84rem; color: var(--text); transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s; }
.vax-opt:hover { border-color: var(--orange); color: var(--orange-deep); }
.vax-opt.active { background: #14110F; border-color: #14110F; color: #fff; }
.vax-opt:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

/* Variante */
.variants-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.variants-table th, .variants-table td { text-align: left; padding: 0.5rem 0.65rem; border-bottom: 1px solid rgba(0,0,0,0.06); white-space: nowrap; }
.variants-table thead th { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); font-weight: 500; border-bottom: 2px solid var(--cream-1); }
.variants-table td:first-child { font-family: var(--mono); font-size: 0.8rem; color: #B4530A; font-weight: 700; font-variant-numeric: tabular-nums; }
.variants-table tr.main-row td { background: var(--cream-2); }
.variants-wrap { overflow-x: auto; }
.variants-table tr.vrow { cursor: pointer; }
.variants-table tr.vrow:hover td { background: #FFF6E9; }
.variants-table tr.vrow.active td { background: #FFF0DA; }

/* Tabelul complet sta ascuns sub un rand discret (nativ <details>, fara JS) */
.variants-details { margin-top: 0.9rem; }
.variants-details summary { display: inline-flex; align-items: center; gap: 0.4rem; cursor: pointer; list-style: none; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-deep); padding: 0.3rem 0; transition: color 0.2s; user-select: none; }
.variants-details summary::-webkit-details-marker { display: none; }
.variants-details summary::before { content: '+'; font-size: 1rem; line-height: 1; color: var(--orange); }
.variants-details[open] summary::before { content: '−'; }
.variants-details summary:hover { color: var(--orange); }
.variants-details[open] { margin-bottom: 0.4rem; }
.variants-details .variants-wrap { margin-top: 0.6rem; max-height: 420px; overflow-y: auto; border: 1px solid rgba(0,0,0,0.07); border-radius: 8px; }
.variants-details .variants-table th, .variants-details .variants-table td { padding: 0.45rem 0.7rem; }

/* Documente PDF */
.docs-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 0.7rem; }
.doc-row { display: flex; align-items: center; gap: 0.8rem; padding: 0.75rem 0.95rem; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; text-decoration: none; color: var(--text); transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.doc-row:hover { border-color: rgba(255,136,0,0.45); box-shadow: 0 8px 22px rgba(0,0,0,0.08); transform: translateY(-1px); }
.doc-ico { flex: none; width: 38px; height: 38px; border-radius: 8px; background: rgba(255,136,0,0.1); color: #B4530A; display: flex; align-items: center; justify-content: center; }
.doc-ico svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.doc-name { font-size: 0.85rem; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.doc-kind { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); display: block; margin-top: 0.15rem; }

/* Video montaj (carduri click-to-play) */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 0.9rem; }
.video-card { display: block; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; overflow: hidden; text-decoration: none; color: var(--text); transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.video-card:hover { border-color: rgba(255,136,0,0.45); box-shadow: 0 8px 22px rgba(0,0,0,0.08); transform: translateY(-1px); }
.video-thumb { position: relative; display: block; aspect-ratio: 40 / 17; background: #14110F; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.video-play svg { width: 44px; height: 44px; padding: 11px; box-sizing: content-box; border-radius: 50%; background: rgba(20,17,15,0.72); fill: #fff; transition: background 0.2s, transform 0.2s; }
.video-card:hover .video-play svg { background: var(--orange); transform: scale(1.06); }
.video-card video { width: 100%; aspect-ratio: 40 / 17; display: block; background: #000; }
.video-meta { display: block; padding: 0.6rem 0.8rem; }
.video-name { font-size: 0.85rem; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.video-kind { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); display: block; margin-top: 0.15rem; }
.video-more { display: inline-block; margin-top: 0.7rem; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-deep); text-decoration: none; transition: color 0.2s; }
.video-more:hover { color: var(--orange); }

/* Produse inrudite */
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 0.9rem; }
.rel-card { display: flex; flex-direction: column; background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 6px; overflow: hidden; text-decoration: none; color: var(--text); transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s; }
.rel-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0,0,0,0.11); border-color: rgba(255,136,0,0.3); }
.rel-img { aspect-ratio: 1; background: #fff; border-bottom: 1px solid rgba(0,0,0,0.04); display: flex; align-items: center; justify-content: center; }
.rel-img img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 10px; }
.rel-name { font-family: var(--serif); font-size: 0.9rem; line-height: 1.3; padding: 0.7rem 0.8rem 0.3rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rel-code { font-family: var(--mono); font-size: 0.68rem; color: #B4530A; font-weight: 700; padding: 0 0.8rem 0.8rem; margin-top: auto; }

.note { margin-top: 1.6rem; padding-top: 0.9rem; border-top: 1px solid rgba(20,17,15,0.1); font-size: 0.85rem; color: var(--text-mute); line-height: 1.55; }
.note a { color: var(--orange-deep); }

@media (max-width: 800px) {
  .detail-wrap { grid-template-columns: 1fr; }
  .gallery-col { position: relative; top: 0; max-width: 420px; }
  .breadcrumb { padding-top: 8rem; }
}

/* Footer */
footer.site-footer { background: var(--dark); color: rgba(255,255,255,0.85); padding: 4rem clamp(1.5rem, 6vw, 6rem) 2rem; }
.footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 60px; width: auto; margin-bottom: 1.2rem; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; max-width: 320px; }
.footer-col h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; color: #fff; margin-bottom: 1.2rem; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.7); text-decoration: none; margin-bottom: 0.7rem; transition: color 0.3s, padding-left 0.3s; }
.footer-col a:hover { color: var(--orange); padding-left: 6px; }
.footer-program { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 0.7rem; }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.footer-legal { display: flex; gap: 1.2rem; }
.footer-legal a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: var(--orange); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* Cookie consent */
#otto-consent { position: fixed; bottom: 0; left: 0; right: 0; z-index: 99999; background: #1A1A1A; color: #fff; padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; font-size: 14px; box-shadow: 0 -4px 24px rgba(0,0,0,0.35); transform: translateY(100%); transition: transform 0.4s cubic-bezier(.16,1,.3,1); }
#otto-consent.vis { transform: translateY(0); }
#otto-consent p { margin: 0; color: #bbb; line-height: 1.5; flex: 1; }
#otto-consent a { color: #FF8800; text-decoration: underline; }
#otto-cb { display: flex; gap: .75rem; flex-shrink: 0; }
#otto-ca { background: #FF8800; color: #fff; padding: .6rem 1.5rem; border-radius: var(--radius-sm, 6px); font-size: 13px; font-weight: 600; transition: background .2s; }
#otto-ca:hover { background: #E67500; }
#otto-cr { background: transparent; color: #bbb; border: 1px solid #444; padding: .6rem 1.5rem; border-radius: var(--radius-sm, 6px); font-size: 13px; transition: border-color .2s, color .2s; }
#otto-cr:hover { border-color: #999; color: #fff; }
@media (max-width: 600px) { #otto-consent { flex-direction: column; align-items: flex-start; padding: 1rem 1.2rem; gap: 1rem; } #otto-cb { width: 100%; } #otto-ca, #otto-cr { flex: 1; text-align: center; } }

/* ---- REDESIGN 2026 TOTAL (2026-07-18) — aliniat cu blum-cat/catalog.css ----
   Paper #F5F2EC, Space Grotesk 700 UPPERCASE pe titluri, Archivo body, Space
   Mono pe etichete, radius 8, hairline + hover accent. Strat aditiv: nu
   redenumeste clase (.cta-btn/.vrow/.spec-grid raman contractul cu
   oferta-cart.js, doar stilul se schimba). */
.breadcrumb { font-size: 11px; letter-spacing: 0.16em; }
.info-supplier { background: transparent; border: 1px solid var(--hair); border-radius: 6px; color: #A85100; letter-spacing: 0.18em; }
.info h1 { text-transform: uppercase; font-weight: 700; letter-spacing: -0.01em; }
.section h2 { text-transform: uppercase; font-weight: 700; letter-spacing: 0.02em; font-size: 1.15rem; border-bottom-color: var(--hair); }
.section h2::after { height: 3px; }
.gallery-main { border-color: var(--hair); }
.gallery-thumbs button { border-color: var(--hair); border-radius: 8px; }
.gallery-thumbs button:hover, .gallery-thumbs button.active { border-color: var(--orange); }
.badge { border-radius: 6px; }
.badge-outline { border-color: var(--hair); }
.vax-opt { border-radius: 8px; border-color: var(--hair); }
.vax-opt.active { background: var(--rd-ink); border-color: var(--rd-ink); }
.variants-table thead th { border-bottom: 2px solid var(--hair); }
.variants-table tr.main-row td { background: rgba(255,136,0,0.08); }
.variants-table tr.vrow:hover td { background: rgba(255,136,0,0.06); }
.variants-table tr.vrow.active td { background: rgba(255,136,0,0.14); }
.variants-details .variants-wrap { border-color: var(--hair); border-radius: 8px; }
.doc-row, .video-card { border-radius: 8px; border-color: var(--hair); }
.doc-row:hover, .video-card:hover { border-color: var(--orange); box-shadow: 0 12px 28px rgba(20,17,15,0.10); }
.doc-ico { border-radius: 6px; }
.rel-card { border-radius: 8px; border-color: var(--hair); }
.rel-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(20,17,15,0.10); border-color: var(--orange); }
.rel-name { font-family: var(--sans); font-weight: 600; line-height: 1.35; }
.note { border-top-color: var(--hair); }
