:root {
  --brand: #f7931e;
  --brand-hover: #ffaa3d;
  --brand-dark: #a85c0e;
  --ink: #f5f7fa;
  --muted: #b8c0cc;
  --quiet: #7e8794;
  --bg: #0d0f12;
  --bg-soft: #15181d;
  --surface: #1d2229;
  --surface-2: #262c35;
  --line: #343b46;
  --success: #32d583;
  --info: #60a5fa;
  --warning: #facc15;
  --danger: #f97066;
  --radius: 8px;
}

/* Homepage showcase */
.home-page .section {
  padding: 82px 0;
}

.home-pathways {
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: #171b20;
}

.home-pathways .page-shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-pathways a {
  position: relative;
  min-height: 138px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 24px 50px 24px 22px;
  border-right: 1px solid rgba(255, 255, 255, .09);
  color: var(--ink);
  text-decoration: none;
  transition: background .2s ease;
}

.home-pathways a:first-child {
  border-left: 1px solid rgba(255, 255, 255, .09);
}

.home-pathways a:hover,
.home-pathways a:focus-visible {
  background: rgba(247, 147, 30, .09);
}

.home-pathways a > span {
  color: var(--brand-hover);
  font-size: .74rem;
  font-weight: 950;
}

.home-pathways strong {
  font-size: 1.06rem;
}

.home-pathways small {
  color: var(--quiet);
  line-height: 1.4;
}

.home-pathways b {
  position: absolute;
  right: 20px;
  top: 50%;
  font-size: 1.25rem;
  transform: translateY(-50%);
}

.home-activity-grid,
.home-client-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
}

.home-activity-copy {
  position: sticky;
  top: 110px;
}

.home-activity-copy h2,
.home-section-head h2,
.home-topics h2 {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.5vw, 3.65rem);
  line-height: 1.02;
  font-weight: 950;
}

.home-section-lead,
.home-section-head p,
.home-topics p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--brand-hover);
  font-weight: 900;
}

.home-service-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, .11);
}

.home-service-list a {
  position: relative;
  display: grid;
  grid-template-columns: 100px minmax(200px, .85fr) minmax(220px, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 132px;
  padding: 24px 38px 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  color: var(--ink);
  text-decoration: none;
}

.home-service-list a::after {
  content: "â†’";
  position: absolute;
  right: 4px;
  color: var(--brand-hover);
  font-size: 1.3rem;
}

.home-service-list span {
  color: var(--brand-hover);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-service-list strong {
  font-size: 1.15rem;
  line-height: 1.3;
}

.home-service-list small {
  color: var(--quiet);
  line-height: 1.55;
}

.home-service-list a:hover strong {
  color: var(--brand-hover);
}

.home-section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
}

.home-section-head > div {
  max-width: 800px;
}

.home-section-head p:last-child {
  margin-bottom: 0;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius);
  background: #1d2229;
  transition: border-color .2s ease, transform .2s ease;
}

.home-product-card:hover {
  border-color: rgba(247, 147, 30, .42);
  transform: translateY(-3px);
}

.home-product-image {
  display: block;
  height: 230px;
  overflow: hidden;
  background: #f5f5f3;
}

.home-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform .25s ease;
}

.home-product-image img.fallback {
  padding: 70px;
}

.home-product-card:hover .home-product-image img {
  transform: scale(1.025);
}

.home-product-body {
  display: flex;
  min-height: 255px;
  flex-direction: column;
  padding: 20px;
}

.home-product-meta {
  display: flex;
  min-height: 30px;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.home-product-meta > span:first-child {
  color: var(--quiet);
  font-size: .78rem;
  font-weight: 850;
}

.home-product-meta .availability {
  padding: 5px 8px;
  border-radius: 5px;
  background: rgba(96, 165, 250, .16);
  color: #a8d0ff;
  font-size: .72rem;
  font-weight: 900;
}

.home-product-body h3 {
  margin: 16px 0 9px;
  font-size: 1.18rem;
  line-height: 1.28;
}

.home-product-body h3 a {
  color: var(--ink);
}

.home-product-body > p {
  color: var(--muted);
  line-height: 1.55;
}

.home-product-body footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.home-product-body .shop-price {
  display: grid;
}

.home-card-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(247, 147, 30, .4);
  border-radius: 6px;
  color: var(--brand-hover);
  font-size: 1.2rem;
}

.home-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  list-style: none;
}

.home-process li {
  min-height: 210px;
  padding: 26px 24px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.home-process li:first-child {
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.home-process span {
  color: var(--brand-hover);
  font-size: .76rem;
  font-weight: 950;
}

.home-process strong {
  display: block;
  margin-top: 36px;
  font-size: 1.25rem;
}

.home-process p {
  margin: 9px 0 0;
  color: var(--quiet);
  line-height: 1.55;
}

.home-expertise-grid {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(340px, 1.1fr) 266px;
  gap: clamp(26px, 3vw, 42px);
  align-items: start;
}

.home-expertise-intro h2 {
  max-width: 420px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 2.9vw, 3rem);
  line-height: 1.04;
  font-weight: 950;
  text-wrap: balance;
}

.home-expertise-intro > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.72;
}

.home-expertise-points {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.home-expertise-points article {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.home-expertise-points span {
  color: var(--brand-hover);
  font-size: .75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-expertise-points strong {
  display: block;
  margin-top: 8px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.home-expertise-points p {
  margin: 8px 0 0;
  color: var(--quiet);
  line-height: 1.55;
}

.home-google-review {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: #1d2229;
}

.home-google-label {
  color: var(--quiet);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-google-review > strong {
  display: block;
  margin: 16px 0 4px;
  font-size: 2.4rem;
  line-height: 1;
}

.home-stars {
  color: #facc15;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.home-google-review p {
  margin: 18px 0;
  color: var(--muted);
  line-height: 1.55;
}

.home-google-review .btn {
  width: 100%;
}

.home-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 18px;
}

.home-news-lead {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background-image: linear-gradient(180deg, rgba(8, 10, 13, .18), rgba(8, 10, 13, .92)), var(--news-image);
  background-position: center;
  background-size: cover;
}

.home-news-lead.no-image {
  background: linear-gradient(145deg, #292f38, #111419);
}

.home-news-lead > a {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(24px, 5vw, 46px);
  color: var(--ink);
}

.home-news-lead span,
.home-news-side article > div > span {
  color: var(--brand-hover);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-news-lead h3 {
  max-width: 760px;
  margin: 14px 0 12px;
  font-size: clamp(1.9rem, 3.3vw, 3.25rem);
  line-height: 1.04;
}

.home-news-lead p {
  max-width: 720px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.6;
}

.home-news-lead small,
.home-news-side small {
  color: rgba(255, 255, 255, .62);
}

.home-news-side {
  display: grid;
  gap: 18px;
}

.home-news-side article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 246px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius);
  background: #1d2229;
}

.home-news-thumb {
  background: #111419;
}

.home-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-news-side article > div {
  display: flex;
  flex-direction: column;
  padding: 22px 18px;
}

.home-news-side h3 {
  margin: 14px 0;
  font-size: 1.15rem;
  line-height: 1.3;
}

.home-news-side h3 a {
  color: var(--ink);
}

.home-news-side small {
  margin-top: auto;
}

.home-topics-grid {
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(0, 1.45fr);
  gap: 60px;
  align-items: start;
}

.home-topics nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-topics nav a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
  background: rgba(255, 255, 255, .035);
  color: var(--ink);
  font-weight: 850;
}

.home-topics nav a:hover {
  border-color: rgba(247, 147, 30, .48);
  color: var(--brand-hover);
}

.home-topics nav span {
  color: var(--brand-hover);
}

.home-client-grid {
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
}

.home-client-grid .home-activity-copy {
  position: static;
}

.home-client-preview {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: #1d2229;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .28);
}

.home-client-top {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: #111419;
}

.home-client-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--danger);
}

.home-client-top span:nth-child(2) { background: var(--warning); }
.home-client-top span:nth-child(3) { background: var(--success); }
.home-client-top strong { margin-left: auto; color: var(--quiet); font-size: .82rem; }

.home-client-status {
  display: grid;
  gap: 7px;
  padding: 28px 28px 18px;
}

.home-client-status small { color: var(--quiet); }
.home-client-status strong { font-size: 1.45rem; }
.home-client-status span { color: #a8d0ff; }

.home-client-progress {
  height: 8px;
  margin: 4px 28px 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.home-client-progress i {
  display: block;
  width: 70%;
  height: 100%;
  background: var(--brand);
}

.home-client-message {
  margin: 0 28px 28px;
  padding: 16px;
  border-left: 3px solid #60a5fa;
  background: rgba(96, 165, 250, .09);
}

.home-client-message span { color: #a8d0ff; font-size: .76rem; font-weight: 900; }
.home-client-message p { margin: 6px 0 0; color: var(--muted); line-height: 1.5; }

@media (max-width: 1060px) {
  .home-pathways .page-shell,
  .home-process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-activity-grid,
  .home-client-grid,
  .home-topics-grid,
  .home-news-grid,
  .home-expertise-grid { grid-template-columns: 1fr; }
  .home-activity-copy { position: static; }
  .home-service-list a { grid-template-columns: 90px minmax(200px, .8fr) minmax(220px, 1fr); }
  .home-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-product-card:last-child { display: none; }
  .home-news-side { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-news-side article { grid-template-columns: 1fr; }
  .home-news-thumb { min-height: 170px; }
}

@media (min-width: 1061px) and (max-width: 1220px) {
  .home-expertise-grid {
    grid-template-columns: minmax(320px, .85fr) minmax(360px, 1.15fr);
  }

  .home-google-review {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 16px 22px;
    align-items: center;
  }

  .home-google-review > strong,
  .home-google-review p {
    margin: 0;
  }

  .home-google-review .btn {
    width: auto;
  }
}

@media (max-width: 760px) {
  .home-page .section { padding: 62px 0; }
  .home-pathways .page-shell,
  .home-product-grid,
  .home-process,
  .home-news-side { grid-template-columns: 1fr; }
  .home-pathways a { min-height: 104px; border-left: 1px solid rgba(255,255,255,.09); border-bottom: 1px solid rgba(255,255,255,.09); }
  .home-service-list a { grid-template-columns: 1fr; gap: 7px; padding-right: 42px; }
  .home-section-head { align-items: start; flex-direction: column; }
  .home-section-head .btn { width: 100%; }
  .home-product-card:last-child { display: block; }
  .home-product-image { height: 210px; }
  .home-process li { min-height: 170px; border-left: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
  .home-process strong { margin-top: 24px; }
  .home-news-lead { min-height: 450px; }
  .home-news-lead p { display: none; }
  .home-news-side article { grid-template-columns: 120px minmax(0,1fr); min-height: 190px; }
  .home-news-thumb { min-height: 0; }
  .home-topics-grid { gap: 26px; }
  .home-expertise-grid { grid-template-columns: 1fr; }
  .home-google-review { display: block; }
  .home-google-review > strong { margin: 16px 0 4px; }
  .home-google-review p { margin: 18px 0; }
  .home-google-review .btn { width: 100%; }
}

/* Electronic withdrawal flow */
.withdrawal-footer-link {
  color: var(--brand, #ff9818) !important;
  font-weight: 800;
}

.compact-legal-hero {
  padding-block: 44px;
}

.compact-legal-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.withdrawal-shell {
  max-width: 920px;
}

.withdrawal-panel {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: #1d2229;
}

.withdrawal-panel h1,
.withdrawal-panel h2 {
  margin-bottom: 14px;
}

.withdrawal-lines {
  margin: 24px 0;
  border-block: 1px solid rgba(255, 255, 255, .12);
}

.withdrawal-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
}

.withdrawal-statement,
.withdrawal-receipt blockquote {
  margin: 24px 0;
  padding: 18px;
  border-left: 4px solid var(--brand, #ff9818);
  background: rgba(255, 152, 24, .08);
}

.withdrawal-receipt dl {
  margin: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.withdrawal-receipt dl div {
  display: grid;
  grid-template-columns: minmax(180px, .7fr) 1fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.withdrawal-receipt dt { color: #aeb5c0; }
.withdrawal-receipt dd { margin: 0; font-weight: 800; }
.checkout-legal-consents { margin-top: 18px; padding: 18px; border: 1px solid rgba(255, 152, 24, .35); border-radius: 6px; background: rgba(255, 152, 24, .06); }
.checkout-legal-consents .checkout-consent + .checkout-consent { margin-top: 12px; }
.client-order-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; margin-top: 10px; }

@media print {
  .top-strip, .site-header, .site-footer, .site-sticky-credit, .site-help-chat, .cookie-consent, .no-print { display: none !important; }
  body, .band, .withdrawal-panel { color: #111 !important; background: #fff !important; }
  .withdrawal-panel { border-color: #bbb; }
}

@media (max-width: 640px) {
  .withdrawal-lines > div, .withdrawal-receipt dl div { grid-template-columns: 1fr; flex-direction: column; gap: 4px; }
}

/* Editorial blog */
.blog-masthead { position:relative; min-height:220px; display:grid; align-items:center; overflow:hidden; isolation:isolate; padding:32px 0; border-bottom:1px solid rgba(255,255,255,.1); background:#111419; }
.blog-masthead.has-cover { background-image:var(--blog-cover); background-position:center 45%; background-size:cover; }
.blog-masthead.has-cover::before { content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(90deg,rgba(10,12,15,.94) 0%,rgba(10,12,15,.78) 54%,rgba(10,12,15,.52) 100%); }
.blog-masthead .page-shell { width:100%; display:grid; grid-template-columns:minmax(0,1fr) minmax(300px,.55fr); gap:42px; align-items:center; }
.blog-masthead .eyebrow { margin-bottom:8px; }
.blog-masthead h1 { max-width:680px; margin:0 0 9px; font-size:clamp(2rem,3.7vw,3.6rem); line-height:1; text-shadow:0 3px 24px rgba(0,0,0,.46); }
.blog-masthead p { max-width:620px; margin:0; color:rgba(255,255,255,.78); }
.blog-search { display:grid; grid-template-columns:1fr auto; gap:8px; }
.blog-search input { width:100%; min-height:48px; border:1px solid rgba(255,255,255,.16); border-radius:5px; background:#1b2027; padding:0 14px; color:#fff; }
.blog-category-bar { position:sticky; top:0; z-index:10; border-bottom:1px solid rgba(255,255,255,.1); background:rgba(17,20,25,.95); backdrop-filter:blur(12px); }
.blog-category-bar .page-shell { display:flex; gap:6px; overflow-x:auto; padding-block:8px; }
.blog-category-bar a { display:flex; gap:7px; align-items:center; flex:0 0 auto; padding:7px 10px; border-radius:4px; color:var(--muted); font-size:.86rem; font-weight:800; text-decoration:none; }
.blog-category-bar a.active,.blog-category-bar a:hover { background:#2a3038; color:#fff; }
.blog-category-bar small { color:var(--brand); }
.section.blog-list-section { padding-top:28px; }
.blog-directory-layout { display:grid; grid-template-columns:minmax(0,1fr) 260px; gap:26px; align-items:start; }
.blog-directory-content { min-width:0; }
.blog-directory-content .blog-card-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
.blog-sidebar { position:sticky; top:116px; display:grid; gap:24px; padding:20px; border:1px solid rgba(255,255,255,.11); border-radius:8px; background:#1d2229; }
.blog-sidebar section { display:grid; gap:10px; }
.blog-sidebar .eyebrow { margin:0; }
.blog-sidebar-search { display:grid; grid-template-columns:minmax(0,1fr) 42px; gap:7px; }
.blog-sidebar-search input { width:100%; min-width:0; min-height:42px; border:1px solid rgba(255,255,255,.14); border-radius:6px; background:#111419; padding:9px 11px; color:var(--ink); outline:none; }
.blog-sidebar-search input:focus { border-color:rgba(247,147,30,.65); box-shadow:0 0 0 3px rgba(247,147,30,.1); }
.blog-sidebar-search .btn { width:42px; min-height:42px; padding:0; font-size:1.2rem; }
.blog-sidebar-categories { display:grid; border-top:1px solid rgba(255,255,255,.1); }
.blog-sidebar-categories a { display:flex; justify-content:space-between; gap:12px; padding:10px 2px; border-bottom:1px solid rgba(255,255,255,.08); color:var(--muted); font-size:.86rem; font-weight:800; }
.blog-sidebar-categories a:hover,.blog-sidebar-categories a.active { color:var(--brand-hover); }
.blog-sidebar-categories small { color:var(--quiet); }
.blog-clear-filters { color:#fca5a5; font-size:.82rem; font-weight:850; }
.blog-featured { display:grid; grid-template-columns:minmax(0,1.2fr) minmax(320px,.9fr); min-height:285px; margin-bottom:24px; overflow:hidden; border:1px solid rgba(255,255,255,.14); border-radius:8px; background:#1d2229; }
.blog-featured img { width:100%; height:100%; min-height:285px; object-fit:cover; }
.blog-featured > div { display:flex; flex-direction:column; justify-content:center; padding:clamp(24px,3vw,38px); }
.blog-featured h2 { margin:11px 0; font-size:clamp(1.55rem,2.5vw,2.25rem); line-height:1.08; }
.blog-featured h2 a,.blog-card h2 a { color:#fff; text-decoration:none; }
.blog-featured p,.blog-card p { color:var(--muted); }
.blog-category { align-self:flex-start; border-left:4px solid var(--category-color); padding-left:9px; color:var(--category-color); font-size:.75rem; font-weight:900; text-transform:uppercase; }
.blog-card-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.blog-card { overflow:hidden; border:1px solid rgba(255,255,255,.13); border-radius:7px; background:#1d2229; }
.blog-card-image { display:block; aspect-ratio:16/9; overflow:hidden; background:#111419; }
.blog-card-image img { width:100%; height:100%; object-fit:cover; transition:transform .25s ease; }
.blog-card:hover img { transform:scale(1.025); }
.blog-card > div { padding:20px; }
.blog-card h2 { margin:12px 0 10px; font-size:1.35rem; line-height:1.15; }
.blog-card footer { display:flex; justify-content:space-between; margin-top:18px; color:var(--quiet); font-size:.78rem; }
.blog-pagination { display:flex; justify-content:center; gap:10px; margin-top:28px; }
.article-header { position:relative; display:grid; min-height:430px; padding:62px 0 52px; overflow:hidden; isolation:isolate; background:#111419; }
.article-header.has-cover { background-image:var(--article-cover); background-position:center; background-size:cover; }
.article-header.has-cover::before { content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(180deg,rgba(8,10,13,.52),rgba(8,10,13,.78)); }
.article-header .page-shell { width:100%; max-width:1080px; display:flex; flex-direction:column; justify-content:center; align-items:flex-start; }
.article-header nav { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:auto; color:rgba(255,255,255,.72); }
.article-header nav a { color:rgba(255,255,255,.86); }
.article-header .blog-category { margin-top:42px; }
.article-header h1 { max-width:1000px; margin:18px 0; font-size:clamp(2.5rem,5vw,4.8rem); line-height:1.02; text-wrap:balance; text-shadow:0 3px 24px rgba(0,0,0,.48); }
.article-header > div > p { max-width:850px; color:rgba(255,255,255,.88); font-size:1.16rem; text-shadow:0 2px 12px rgba(0,0,0,.55); }
.article-meta { display:flex; flex-wrap:wrap; gap:18px; margin-top:22px; color:rgba(255,255,255,.72); }
.article-layout { display:grid; grid-template-columns:minmax(0,760px) 180px; justify-content:center; gap:70px; align-items:start; }
.article-content { font-size:1.08rem; line-height:1.8; }
.article-content h2 { margin:2.2em 0 .7em; font-size:2rem; }.article-content h3 { margin:1.8em 0 .6em; font-size:1.45rem; }
.article-content p,.article-content ul,.article-content ol { margin-bottom:1.3em; }.article-content img { max-width:100%; height:auto; border-radius:6px; }.article-content blockquote { margin:2em 0; padding:18px 22px; border-left:4px solid var(--brand); background:#1d2229; font-size:1.15rem; }
.article-share { position:sticky; top:82px; display:grid; gap:8px; }
.article-share a,.article-share button { border:1px solid rgba(255,255,255,.14); border-radius:4px; background:#222831; padding:10px; color:#fff; text-align:left; text-decoration:none; }
@media(max-width:900px){.blog-masthead .page-shell,.blog-featured,.article-layout,.blog-directory-layout{grid-template-columns:1fr}.blog-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.article-share{position:static;grid-template-columns:repeat(2,1fr)}.blog-sidebar{position:static;grid-row:1;grid-template-columns:1fr 1fr}.blog-directory-content{grid-row:2}}
@media(max-width:600px){.blog-card-grid,.blog-directory-content .blog-card-grid{grid-template-columns:1fr}.blog-featured{min-height:0}.blog-featured img{min-height:210px}.blog-search{grid-template-columns:1fr}.article-share{grid-template-columns:1fr}.blog-masthead h1,.article-header h1{font-size:2.35rem}.article-header{min-height:390px;padding:34px 0}.article-header .blog-category{margin-top:34px}.article-header>div>p{font-size:1rem}.article-meta{gap:9px 14px}.blog-sidebar{grid-template-columns:1fr}}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.top-strip {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: #090b0d;
  color: var(--muted);
  font-size: .86rem;
}

.top-strip .page-shell {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-strip a {
  color: var(--brand-hover);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 15, 18, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-promo-banner {
  border-top: 1px solid rgba(255, 152, 26, .18);
  border-bottom: 1px solid rgba(255, 152, 26, .18);
  background: rgba(255, 152, 26, .11);
  color: #ffb044;
  font-weight: 900;
  font-size: .92rem;
  letter-spacing: 0;
}

.site-promo-banner .page-shell {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-social-strip {
  border-top: 1px solid rgba(255, 255, 255, .065);
  background: rgba(9, 11, 13, .82);
}

.site-social-strip .page-shell {
  min-height: 29px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.site-social-strip span {
  color: var(--quiet);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-social-strip nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-social-strip a {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.site-social-strip a:hover,
.site-social-strip a:focus-visible {
  color: var(--brand-hover);
}

.site-social-strip svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-social-strip svg .fill,
.site-social-strip a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.main-nav {
  padding: 14px 0;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, .2);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: #fff url('../images/brand-logo.png') center / contain no-repeat;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
}

.brand-monogram {
  display: none;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: .78rem;
}

.nav-link {
  color: var(--muted);
  font-weight: 600;
  font-size: .95rem;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--ink);
}

.nav-link.active {
  color: var(--brand-hover) !important;
  background: rgba(247, 147, 30, .12);
  border-radius: var(--radius);
}

.btn {
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
}

.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #101214;
}

.btn-brand:hover,
.btn-brand:focus {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #101214;
}

.btn-soft {
  background: rgba(247, 147, 30, .12);
  border-color: rgba(247, 147, 30, .36);
  color: var(--brand-hover);
}

.btn-soft:hover,
.btn-soft:focus {
  background: rgba(247, 147, 30, .2);
  border-color: rgba(247, 147, 30, .55);
  color: #ffd29b;
}

.btn-ghost {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .14);
  color: var(--ink);
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
}

.nav-cta {
  color: var(--ink);
  border-color: rgba(255, 255, 255, .28);
}

.site-nav-tool-item {
  display: flex;
  align-items: center;
}

.site-nav-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  flex: 0 0 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 7px;
  background: rgba(255, 255, 255, .035);
  color: var(--ink);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.site-nav-icon:hover,
.site-nav-icon:focus-visible,
.site-account-menu[open] > .site-nav-icon {
  border-color: rgba(247, 147, 30, .58);
  background: rgba(247, 147, 30, .12);
  color: var(--brand-hover);
}

.site-nav-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border: 2px solid #0d0f12;
  border-radius: 10px;
  background: var(--brand);
  color: #101214;
  font-size: .66rem;
  font-weight: 950;
}

.site-account-menu {
  position: relative;
}

.site-account-menu summary {
  list-style: none;
}

.site-account-menu summary::-webkit-details-marker {
  display: none;
}

.site-account-initials {
  font-size: .78rem;
  font-weight: 950;
}

.site-account-menu .signed-in {
  border-color: rgba(247, 147, 30, .42);
  background: rgba(247, 147, 30, .12);
  color: var(--brand-hover);
}

.site-account-dropdown {
  position: absolute;
  z-index: 40;
  top: calc(100% + 11px);
  right: 0;
  width: 250px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: #1d2229;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .48);
}

.site-account-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 13px;
  width: 11px;
  height: 11px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-left: 1px solid rgba(255, 255, 255, .14);
  background: #1d2229;
  transform: rotate(45deg);
}

.site-account-dropdown-head {
  display: grid;
  gap: 2px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.site-account-dropdown-head small,
.site-account-dropdown a small {
  color: var(--quiet);
  font-size: .74rem;
  font-weight: 600;
}

.site-account-dropdown a {
  display: grid;
  gap: 2px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: var(--ink);
}

.site-account-dropdown a:hover,
.site-account-dropdown a:focus-visible {
  background: rgba(247, 147, 30, .1);
  color: var(--brand-hover);
}

.site-account-dropdown a.logout {
  color: #fca5a5;
}

@media (max-width: 991px) {
  .main-nav .navbar-nav {
    gap: 4px;
    padding-top: 14px;
  }

  .site-nav-tool-item {
    margin-top: 5px;
  }

  .site-account-menu {
    width: 100%;
  }

  .site-account-dropdown {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }

  .site-account-dropdown::before {
    display: none;
  }

  .main-nav .navbar-nav > .nav-item:last-child .btn {
    width: 100%;
    margin-top: 5px;
  }
}

.hero-section {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 54px 0 38px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(247, 147, 30, .22), transparent 28%),
    linear-gradient(130deg, rgba(255, 255, 255, .06), transparent 35%),
    linear-gradient(180deg, #111419 0%, #0d0f12 78%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, .72fr);
  align-items: start;
  gap: 52px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-hover);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
  line-height: .96;
  font-weight: 900;
  margin-bottom: 24px;
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 30px;
}

.home-page .hero-section h1 {
  font-size: clamp(1.55rem, 2.45vw, 2.55rem);
  line-height: 1.12;
  max-width: 760px;
}
.home-dynamic-title span {
  display: block;
  color: #ff9a1f !important;
  font-size: clamp(.95rem, 1.2vw, 1.18rem);
  line-height: 1.25;
  margin-bottom: 12px;
}
.home-dynamic-title strong {
  display: inline;
  color: #f5f6f8;
  font-size: clamp(1.65rem, 2.8vw, 2.9rem);
  line-height: 1.08;
}
.home-dynamic-title strong::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: .9em;
  margin-left: .12em;
  background: #ff9a1f;
  animation: homeCaretBlink .82s steps(1) infinite;
  vertical-align: -.08em;
}
.home-dynamic-title i {
  display: none;
}
@keyframes homeCaretBlink { 50% { opacity: 0; } }

.home-page .hero-section .hero-lead {
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
  max-width: 720px;
}

.trust-row div {
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .045);
  border-radius: var(--radius);
  padding: 16px;
}

.trust-row strong {
  display: block;
  font-size: 1.35rem;
}

.trust-row span {
  color: var(--muted);
  font-size: .9rem;
}

.hero-panel {
  display: grid;
  gap: 14px;
  padding-top: 58px;
}

.brand-card,
.quick-card,
.team-card,
.mini-dashboard,
.erp-window,
.contact-card,
.area-card {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(29, 34, 41, .86);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.brand-card {
  padding: 18px;
}

.brand-card img {
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
  padding: 12px;
}

.quick-card {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.quick-card div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.quick-card .opening-status {
  color: var(--ink);
  font-weight: 850;
}

.opening-detail {
  color: var(--muted);
  margin-top: -6px;
}

.quick-card strong {
  font-size: 1.2rem;
}

.quick-card a {
  color: var(--brand-hover);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.team-card {
  overflow: hidden;
  padding: 0;
}

.team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(50, 213, 131, .12);
}

.status-dot.warning {
  background: var(--warning);
  box-shadow: 0 0 0 6px rgba(250, 204, 21, .12);
}

.status-dot.closed {
  background: var(--danger);
  box-shadow: 0 0 0 6px rgba(249, 112, 102, .12);
}

.mini-dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.mini-dashboard div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.mini-dashboard div:last-child {
  border-right: 0;
}

.mini-dashboard span {
  color: var(--quiet);
  font-size: .8rem;
}

.mini-dashboard strong {
  display: block;
  margin-top: 4px;
  font-size: .96rem;
}

.section {
  padding: 92px 0;
}

.page-hero {
  padding: 64px 0 54px;
  background:
    radial-gradient(circle at 78% 8%, rgba(247, 147, 30, .2), transparent 28%),
    linear-gradient(180deg, #111419 0%, var(--bg) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.35rem, 4.4vw, 4.35rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
}

.tracking-hero {
  padding: 38px 0 34px;
}

.tracking-hero h1 {
  max-width: 760px;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  margin-bottom: 12px;
}

.tracking-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.55;
}

.band {
  background: var(--bg-soft);
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.pro-grid h2,
.contact-grid h2 {
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 18px;
}

.section-heading p,
.pro-grid p,
.contact-grid p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.compact {
  margin-bottom: 0;
}

.service-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.shop-preview article,
.news-grid article {
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
}

.service-card span,
.news-grid span {
  color: var(--brand-hover);
  font-weight: 900;
}

.service-card h3,
.shop-preview h3,
.news-grid h3 {
  margin: 22px 0 12px;
  font-size: 1.35rem;
  font-weight: 900;
}

.service-card p,
.shop-preview p {
  color: var(--muted);
  line-height: 1.65;
}

.split-layout,
.app-preview,
.pro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 42px;
  align-items: center;
}

.shop-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.shop-preview article {
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02)),
    var(--surface);
}

.product-badge,
.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  color: #101214;
  background: var(--brand);
  font-weight: 900;
  font-size: .78rem;
}

.product-badge.alt {
  color: var(--ink);
  background: rgba(96, 165, 250, .22);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline div {
  position: relative;
  min-height: 180px;
  padding: 22px;
  border-radius: var(--radius);
  background: #111419;
  border: 1px solid rgba(255, 255, 255, .1);
}

.timeline div::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--brand);
  margin-bottom: 24px;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline span {
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.6;
}

.erp-window {
  padding: 0;
  overflow: hidden;
}

.window-bar {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: #111419;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--danger);
}

.window-bar span:nth-child(2) {
  background: var(--warning);
}

.window-bar span:nth-child(3) {
  background: var(--success);
}

.window-bar strong {
  margin-left: auto;
  color: var(--muted);
  font-size: .9rem;
}

.repair-status {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 26px;
}

.repair-status span {
  display: block;
  color: var(--quiet);
  font-weight: 800;
}

.repair-status strong {
  display: block;
  margin-top: 4px;
  font-size: 1.45rem;
}

.repair-status p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
}

.message-line {
  margin: 0 26px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  color: var(--muted);
}

.quote-preview {
  display: grid;
  gap: 5px;
}

.quote-preview strong,
.quote-preview span,
.quote-preview small {
  display: block;
}

.quote-preview strong {
  color: var(--ink);
}

.quote-preview small {
  color: var(--quiet);
}

.progress-track {
  height: 12px;
  margin: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 55%;
  height: 100%;
  background: var(--brand);
}

.tracking-mini-timeline {
  display: grid;
  gap: 10px;
  margin: 0 26px 26px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .08);
}

.tracking-mini-timeline div {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(120px, .7fr) 1fr;
  gap: 12px;
  align-items: baseline;
  padding-left: 18px;
}

.tracking-mini-timeline div::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--quiet);
}

.tracking-mini-timeline div.current::before,
.tracking-mini-timeline div.quote::before {
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(247, 147, 30, .13);
}

.tracking-mini-timeline time {
  color: var(--quiet);
  font-size: .78rem;
  font-weight: 800;
}

.tracking-mini-timeline span {
  color: var(--ink);
  font-weight: 900;
}

.tracking-mini-timeline small {
  color: var(--muted);
  line-height: 1.45;
}

.area-card,
.contact-card {
  padding: 28px;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list div,
.catalog-grid article,
.lookup-card,
.contact-form {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  color: var(--muted);
  margin-top: 6px;
}

.shop-toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.shop-toolbar input,
.lookup-card input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: #111419;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.shop-toolbar input:focus,
.lookup-card input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(247, 147, 30, .7);
  box-shadow: 0 0 0 4px rgba(247, 147, 30, .12);
}

.contact-form-alert {
  margin: 0 0 .25rem;
}

.contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.catalog-grid article {
  min-height: 220px;
}

.catalog-grid h3 {
  margin: 22px 0 12px;
  font-weight: 900;
}

.catalog-grid p {
  color: var(--muted);
}

.shop-hero {
  padding: 48px 0 36px;
  background:
    linear-gradient(135deg, rgba(247, 147, 30, .16), transparent 34%),
    linear-gradient(180deg, #111419 0%, var(--bg) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.shop-hero-grid,
.shop-layout,
.cart-layout {
  display: grid;
  gap: 28px;
}

.shop-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, .34fr);
  align-items: center;
}

.shop-hero h1 {
  max-width: 740px;
  font-size: clamp(2.2rem, 4.1vw, 4rem);
  line-height: 1.02;
  margin-bottom: 16px;
}

.shop-hero p:not(.eyebrow),
.shop-advice-panel p,
.cart-summary p {
  color: var(--muted);
  line-height: 1.7;
}

.shop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.shop-hero-actions .btn {
  min-height: 38px;
  padding: 8px 13px;
  font-size: .92rem;
}

.shop-advice-panel,
.filter-card,
.cart-summary {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(29, 34, 41, .92);
  padding: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
}

.cart-save-status {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 750;
}

.cart-save-status.error {
  color: #ff9c9c;
}

.shop-advice-panel h2,
.cart-summary h2 {
  margin: 14px 0 8px;
  font-size: 1.32rem;
  font-weight: 950;
}

.shop-benefits {
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: #101317;
}

.shop-benefits .page-shell {
  min-height: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.shop-benefits span {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 850;
  text-align: center;
}

.shop-flash {
  margin-bottom: 18px;
  border: 1px solid rgba(50, 213, 131, .34);
  border-radius: var(--radius);
  background: rgba(50, 213, 131, .12);
  color: #b8ffd8;
  padding: 14px 16px;
  font-weight: 800;
}

.shop-layout {
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
}

.shop-filters {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 14px;
}

.filter-card {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.filter-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.filter-title .eyebrow {
  margin: 0;
}

.filter-title > a {
  color: var(--brand-hover);
  font-size: .78rem;
  font-weight: 950;
}

.category-menu {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
}

.category-menu summary {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  list-style: none;
  cursor: pointer;
  padding: 8px 10px;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 900;
}

.category-menu summary::-webkit-details-marker {
  display: none;
}

.category-menu summary span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: var(--brand-hover);
  font-size: .9rem;
}

.category-menu summary.active,
.category-menu summary:hover {
  border-color: rgba(247, 147, 30, .48);
  background: rgba(247, 147, 30, .12);
}

.category-menu div {
  display: grid;
  gap: 4px;
  padding: 0 8px 9px;
}

.category-menu div .category-menu {
  background: rgba(0, 0, 0, .12);
  border-color: rgba(255, 255, 255, .08);
}

.category-menu.level-1 summary {
  padding-left: 18px;
}

.category-menu.level-2 summary {
  padding-left: 30px;
}

.category-menu div a {
  border-radius: 6px;
  color: var(--muted);
  padding: 6px 8px;
  font-size: .8rem;
  font-weight: 750;
}

.category-menu div a:hover {
  background: rgba(255, 255, 255, .06);
  color: var(--ink);
}

.filter-card small,
.product-meta small,
.cart-row small {
  color: var(--quiet);
}

.shop-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-service-list span {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: var(--muted);
  padding: 8px 10px;
  font-size: .86rem;
  font-weight: 800;
}

.shop-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 8px;
  margin-bottom: 16px;
}

.shop-search input,
.product-cart-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: #111419;
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}

.shop-search input:focus,
.product-cart-form input:focus {
  border-color: rgba(247, 147, 30, .7);
  box-shadow: 0 0 0 4px rgba(247, 147, 30, .12);
}

.featured-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.featured-products article {
  min-height: 174px;
  border: 1px solid rgba(247, 147, 30, .3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(247, 147, 30, .18), transparent 52%),
    var(--surface);
  padding: 18px;
}

.featured-products h2 {
  margin: 18px 0 8px;
  font-size: 1.25rem;
  font-weight: 950;
}

.featured-products p {
  min-height: 52px;
}

.featured-products a {
  color: var(--brand-hover);
  font-weight: 900;
}

.shop-catalog .catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: grid;
  grid-template-rows: 180px minmax(0, 1fr);
  overflow: hidden;
  padding: 0 !important;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(247, 147, 30, .38);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

.product-visual,
.product-photo {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(247, 147, 30, .22), transparent 45%),
    #111419;
}

.product-visual {
  min-height: 0;
  height: 180px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: #f4f5f7;
}

.product-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 12px;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-visual span,
.product-photo span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  color: var(--brand-hover);
  font-size: 1.55rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-card-body {
  display: grid;
  gap: 10px;
  padding: 14px;
  position: relative;
  z-index: 1;
  background: var(--surface);
}

.product-card-body h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.25;
}

.product-card-body p {
  margin: 0;
  min-height: 44px;
  line-height: 1.5;
  font-size: .9rem;
}

.product-meta,
.product-buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.shop-price {
  display: grid;
  gap: 2px;
}

.shop-price strong,
.cart-summary strong {
  font-size: 1.12rem;
}

.shop-price small {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 800;
  line-height: 1.25;
}

.product-variant-list {
  display: grid;
  gap: 10px;
}

.variant-live-summary {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
  border: 1px solid rgba(247, 147, 30, .24);
  border-radius: var(--radius);
  background: rgba(247, 147, 30, .08);
  padding: 14px 16px;
}

.variant-live-summary strong {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 950;
}

.variant-live-summary span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 850;
}

.variant-axis-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-variant-select {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
}

.product-variant-select select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: #111419;
  color: var(--ink);
  min-height: 46px;
  padding: 0 14px;
  font-weight: 850;
  outline: none;
}

.product-variant-select select:focus {
  border-color: rgba(247, 147, 30, .78);
  box-shadow: 0 0 0 3px rgba(247, 147, 30, .14);
}

.product-variant-option {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .045);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}

.product-variant-option:hover,
.product-variant-option:has(input:checked) {
  border-color: rgba(247, 147, 30, .58);
  background: rgba(247, 147, 30, .1);
}

.product-variant-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.product-variant-option strong,
.product-variant-option small,
.product-variant-option em {
  display: block;
}

.product-variant-option small {
  color: var(--muted);
  font-size: .8rem;
}

.product-variant-option em {
  color: var(--ink);
  font-style: normal;
  font-weight: 950;
  text-align: right;
  white-space: nowrap;
}

.product-variant-option em small {
  margin-top: 2px;
  font-weight: 800;
}

.product-photo {
  min-height: 520px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.product-gallery-image {
  display: none;
}

.product-gallery-image.is-active {
  display: block;
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: rgba(10, 12, 16, .72);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
  z-index: 2;
}

.product-gallery-arrow:hover {
  background: rgba(247, 147, 30, .92);
  border-color: rgba(247, 147, 30, 1);
  transform: translateY(-50%) scale(1.04);
}

.product-gallery-arrow.previous {
  left: 16px;
}

.product-gallery-arrow.next {
  right: 16px;
}

.product-gallery-counter {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(10, 12, 16, .72);
  color: rgba(255, 255, 255, .9);
  font-size: .82rem;
  font-weight: 800;
  z-index: 2;
}

.product-cart-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 10px;
}

.product-cart-form .qty-control input {
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .1);
  border-right: 1px solid rgba(255, 255, 255, .1);
  border-radius: 0;
  padding: 0;
  text-align: center;
  font-weight: 950;
  appearance: textfield;
}

.status-pill.in-stock,
.product-badge.in-stock {
  background: var(--success);
}

.status-pill.on-order,
.product-badge.on-order {
  background: var(--warning);
}

.status-pill.service,
.product-badge.service {
  background: var(--info);
}

.status-pill.unavailable,
.product-badge.unavailable {
  background: var(--danger);
}

.cart-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.cart-list {
  display: grid;
  gap: 0;
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
}

.cart-row strong,
.cart-row small {
  display: block;
}

.cart-summary {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 12px;
}

.checkout-page {
  min-height: 70vh;
}

.checkout-head {
  padding: 34px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: #111419;
}

.checkout-head .page-shell {
  display: grid;
  grid-template-columns: minmax(420px, .8fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.checkout-head h1 {
  margin: 4px 0 6px;
  font-size: 2.2rem;
  font-weight: 950;
}

.checkout-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.checkout-steps span,
.checkout-steps a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border-bottom: 2px solid rgba(255, 255, 255, .12);
  color: var(--quiet);
  font-size: .84rem;
  font-weight: 900;
  text-decoration: none;
}

.checkout-steps b {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--ink);
  font-size: .75rem;
}

.checkout-steps .active {
  border-color: var(--brand);
  color: var(--ink);
}

.checkout-steps .active b {
  background: var(--brand);
  color: #111;
}

.checkout-cart-row {
  grid-template-columns: 64px minmax(0, 1fr) auto;
  min-height: 90px;
  gap: 14px;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  border-radius: 0;
  background: transparent;
}

.checkout-cart-list {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: var(--surface);
}

.checkout-cart-row:last-of-type {
  border-bottom: 0;
}

.cart-product-image {
  display: grid;
  width: 64px;
  height: 64px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  color: #111;
  font-weight: 950;
  text-decoration: none;
}

.cart-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-product-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 3px;
}

.cart-product-copy a {
  color: var(--ink);
  text-decoration: none;
}

.cart-product-copy .product-badge {
  position: static;
  margin-top: 2px;
  padding: 4px 7px;
  font-size: .68rem;
}

.cart-quantity {
  display: grid;
  align-content: center;
  gap: 4px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-line-actions {
  display: grid;
  grid-template-columns: 112px 126px 34px;
  gap: 14px;
  align-items: center;
}

.checkout-fields input,
.checkout-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: #111419;
  color: var(--ink);
  padding: 10px 12px;
  outline: none;
}

.checkout-fields input:focus,
.checkout-form textarea:focus {
  border-color: rgba(247, 147, 30, .7);
  box-shadow: 0 0 0 4px rgba(247, 147, 30, .12);
}

.cart-stepper {
  display: grid;
  grid-template-columns: 30px 44px 30px;
  gap: 3px;
  align-items: center;
}

.cart-stepper button,
.cart-stepper input.form-control {
  width: 100%;
  min-width: 0;
  height: 34px;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 5px;
  background: #111419;
  color: var(--ink);
  padding: 0;
  text-align: center;
  font-size: .88rem;
  font-weight: 900;
  box-shadow: none;
}

.cart-stepper button:hover,
.cart-stepper button:focus-visible {
  border-color: rgba(247, 147, 30, .55);
  background: rgba(247, 147, 30, .12);
}

.cart-stepper input.form-control:focus {
  border-color: rgba(247, 147, 30, .7);
  background: #111419;
  color: var(--ink);
  box-shadow: 0 0 0 3px rgba(247, 147, 30, .1);
}

.cart-stepper input::-webkit-inner-spin-button,
.cart-stepper input::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.cart-price {
  display: grid;
  align-content: center;
  gap: 2px;
  text-align: right;
}

.cart-price strong {
  white-space: nowrap;
  font-size: .92rem;
}

.cart-price small {
  color: var(--muted);
}

.cart-remove {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 100, 100, .28);
  border-radius: 50%;
  background: rgba(255, 100, 100, .08);
  color: #ffaaaa;
  font-size: .9rem;
  cursor: pointer;
}

.cart-remove:hover,
.cart-remove:focus-visible {
  border-color: rgba(255, 100, 100, .58);
  background: rgba(255, 100, 100, .16);
}

.cart-list-actions,
.checkout-actions,
.order-success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}

.checkout-cart-list .cart-list-actions {
  padding: 13px 14px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  background: rgba(0, 0, 0, .12);
}

.summary-line,
.summary-total,
.checkout-mini-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.summary-line {
  color: var(--muted);
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.summary-line strong {
  color: var(--ink);
  white-space: nowrap;
}

.summary-total {
  margin-top: 4px;
  padding: 16px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  align-items: baseline;
  font-size: 1.08rem;
  font-weight: 900;
}

.summary-total strong {
  color: var(--ink);
  font-size: 1.35rem;
}

.checkout-trust,
.payment-security {
  display: grid;
  gap: 2px;
  padding: 11px;
  border-left: 3px solid #39c987;
  background: rgba(57, 201, 135, .08);
}

.checkout-summary {
  gap: 4px;
  padding: 22px;
}

.checkout-summary > .eyebrow {
  margin-bottom: 8px;
}

.checkout-summary > p:not(.eyebrow) {
  margin: 14px 0;
  line-height: 1.55;
}

.checkout-summary > .btn {
  width: 100%;
  margin: 6px 0 10px;
}

.checkout-summary .checkout-trust {
  margin-top: 4px;
}

.checkout-trust small,
.payment-security span {
  color: var(--muted);
}

.checkout-alert {
  margin-bottom: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: var(--surface);
}

.checkout-alert p,
.checkout-alert ul {
  margin: 7px 0 0;
}

.checkout-alert.error {
  border-color: rgba(255, 100, 100, .35);
  background: rgba(255, 100, 100, .08);
  color: #ffd0d0;
}

.checkout-alert.warning {
  border-color: rgba(255, 193, 7, .34);
  background: rgba(255, 193, 7, .08);
}

.checkout-empty {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 28px;
  border: 1px dashed rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: var(--surface);
}

.checkout-form-layout,
.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.checkout-form,
.payment-panel {
  display: grid;
  gap: 16px;
}

.checkout-form-stack {
  display: grid;
  gap: 16px;
}

.checkout-account {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px 18px;
}

.checkout-account summary,
.checkout-account.connected,
.checkout-account.connected > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.checkout-account summary {
  list-style: none;
  cursor: pointer;
}

.checkout-account summary::-webkit-details-marker { display: none; }
.checkout-account strong,
.checkout-account small { display: block; }
.checkout-account small { margin-top: 3px; color: var(--muted); }
.checkout-account.connected { border-color: rgba(74, 222, 128, .28); }
.checkout-account.connected a { color: var(--brand); font-weight: 850; }

.checkout-account-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  background: rgba(74, 222, 128, .14);
  color: #86efac;
  font-weight: 950;
}

.checkout-login-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.checkout-login-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 850;
}

.checkout-login-form .checkout-alert { grid-column: 1 / -1; margin: 0; }

.checkout-account-detection {
  padding: 10px 12px;
  border: 1px solid rgba(255, 153, 31, .28);
  border-radius: var(--radius);
  background: rgba(255, 153, 31, .08);
  color: var(--muted);
}

.checkout-account-detection strong { color: var(--ink); }

.checkout-form fieldset,
.payment-method-section {
  display: grid;
  gap: 14px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
}

.checkout-form legend,
.payment-method-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 950;
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkout-fields label,
.checkout-form > fieldset > label,
.paypal-card-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 850;
}

.checkout-fields .span-2 {
  grid-column: span 2;
}

.checkout-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checkout-choice label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: #15191f;
  padding: 8px 12px;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.fulfillment-choice label {
  flex: 1 1 230px;
  align-items: flex-start;
  padding: 13px;
}

.fulfillment-choice span,
.fulfillment-choice small {
  display: block;
}

.fulfillment-choice small {
  margin-top: 3px;
  color: var(--muted);
}

.checkout-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
}

.checkout-consent input {
  margin-top: 4px;
}

.checkout-mini-line {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: var(--muted);
  font-size: .86rem;
}

.checkout-mini-line span,
.checkout-mini-line small {
  display: block;
}

.checkout-mini-line strong {
  color: var(--ink);
  white-space: nowrap;
}

.payment-method-section {
  grid-template-columns: minmax(220px, .72fr) minmax(280px, 1fr);
  align-items: center;
  border-color: #d8dde5;
  background: #f4f6f8;
  color: #171a1f;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .18);
}

.payment-method-section p:not(.eyebrow) {
  margin: 6px 0 0;
  color: #55606f;
}

.payment-method-section h2 {
  color: #171a1f;
}

.payment-method-section .eyebrow {
  color: #a65300;
}

#paypal-button-container {
  min-width: 0;
  border: 1px solid #e0e4ea;
  border-radius: var(--radius);
  background: #fff;
  padding: 14px;
  color: #171a1f;
}

#paypal-paylater-message {
  min-height: 28px;
  margin-top: 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .7);
  padding: 6px 8px;
}

.paypal-card-form {
  display: grid;
  gap: 10px;
}

.paypal-card-form > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.paypal-field {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: #111419;
  padding: 10px 12px;
}

.order-customer-summary {
  display: grid;
  gap: 3px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.order-customer-summary small {
  color: var(--muted);
}

.order-success {
  padding: 64px 0 80px;
  text-align: center;
}

.order-success .page-shell {
  display: grid;
  justify-items: center;
  max-width: 840px;
}

.order-success-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: #39c987;
  color: #07150f;
  font-size: 2rem;
  font-weight: 950;
}

.order-success-icon.cancelled {
  background: rgba(255, 100, 100, .16);
  color: #ffaaaa;
}

.order-success h1 {
  max-width: 700px;
  font-size: 2.5rem;
  font-weight: 950;
}

.order-success > .page-shell > p:not(.eyebrow) {
  color: var(--muted);
}

.order-success-reference {
  display: grid;
  gap: 4px;
  margin: 18px 0;
  padding: 14px 22px;
  border: 1px solid rgba(247, 147, 30, .3);
  border-radius: var(--radius);
  background: rgba(247, 147, 30, .08);
}

.order-success-reference span {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-success-reference strong {
  font-size: 1.4rem;
}

.order-success-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.order-success-grid div {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 15px;
}

.order-success-grid span {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-content {
  min-width: 0;
  max-width: 820px;
}

.legal-content h2 {
  margin: 42px 0 12px;
  padding-top: 8px;
  font-size: 1.55rem;
  font-weight: 950;
}

.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 26px 0 9px; font-size: 1.05rem; font-weight: 950; }

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-content ul,
.legal-content ol { display:grid; gap:7px; padding-left:22px; }
.legal-content a { color:var(--brand-hover); text-decoration:underline; text-underline-offset:3px; }
.legal-updated { display:inline-flex; margin-top:10px; padding:7px 10px; border:1px solid rgba(255,255,255,.13); border-radius:5px; color:var(--quiet); font-size:.82rem; font-weight:850; }
.legal-layout { display:grid; grid-template-columns:250px minmax(0,820px); justify-content:center; gap:clamp(36px,6vw,82px); align-items:start; }
.legal-summary { position:sticky; top:120px; display:grid; gap:15px; }
.legal-summary > strong { font-size:1.05rem; }
.legal-summary nav { display:grid; max-height:52vh; overflow:auto; border-block:1px solid rgba(255,255,255,.1); }
.legal-summary nav a { padding:9px 0; border-bottom:1px solid rgba(255,255,255,.07); color:var(--quiet); font-size:.78rem; line-height:1.35; }
.legal-summary nav a:hover { color:var(--brand-hover); }

@media(max-width:900px){.legal-layout{grid-template-columns:1fr}.legal-summary{position:static}.legal-summary nav{grid-template-columns:repeat(2,minmax(0,1fr));max-height:none;gap:0 18px}.legal-content{max-width:none}}
@media(max-width:600px){.legal-summary nav{grid-template-columns:1fr}.legal-content h2{font-size:1.3rem}}

.lookup-card {
  display: grid;
  gap: 12px;
}

.lookup-card label,
.contact-form label {
  color: var(--muted);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.area-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-grid article {
  min-height: 170px;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(247, 147, 30, .16), transparent 38%),
    var(--bg-soft);
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.contact-line {
  display: block;
  color: var(--brand-hover);
  font-weight: 900;
  font-size: 1.35rem;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.contact-card p {
  margin: 20px 0;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-hero {
  padding: 24px 0 18px;
}

.services-hero h1 {
  max-width: 860px;
  margin-bottom: 10px;
  font-size: clamp(1.85rem, 2.65vw, 2.85rem);
  line-height: 1.03;
}

.services-hero p:not(.eyebrow) {
  max-width: none;
  margin: 0;
  font-size: .96rem;
  line-height: 1.45;
}


.hero-actions {
  margin-top: 0;
}

.services-hero-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1080px;
}


.hero-actions {
  flex: 0 0 auto;
}

.services-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.services-hero-meta span,
.services-hero-meta a,
.service-card-rich small,
.contact-form-head .eyebrow,
.contact-info-card .eyebrow {
  color: var(--brand-hover);
  font-weight: 950;
  text-transform: uppercase;
  font-size: .78rem;
}

.services-hero-meta span,
.services-hero-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: var(--muted);
  text-decoration: none;
}

.services-hero-meta a {
  color: var(--brand);
}

.services-overview {
  padding-top: 26px;
}

.services-admin-alert {
  margin-bottom: 18px;
}

.services-overview .services-heading {
  display: grid;
  grid-template-columns: minmax(0, .6fr) minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  max-width: none;
  margin-bottom: 16px;
}

.services-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.35vw, 2.45rem);
}

.services-heading p:not(.eyebrow) {
  margin: 0;
  font-size: .98rem;
  line-height: 1.55;
}

.services-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card-rich {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 390px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025)),
    var(--surface);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.service-card-rich figure {
  position: relative;
  aspect-ratio: 16 / 7.4;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
}

.service-card-rich figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17, 20, 25, .25));
  pointer-events: none;
}

.service-card-rich img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.service-card-image-form {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
}

.service-card-image-form label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .26), rgba(255, 255, 255, .06)),
    rgba(17, 20, 25, .54);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(16px) saturate(1.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .26),
    0 14px 32px rgba(0, 0, 0, .28);
  transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
}

.service-card-image-form label:hover {
  border-color: rgba(247, 147, 30, .62);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .28), rgba(247, 147, 30, .16)),
    rgba(37, 30, 24, .64);
  color: var(--brand-hover);
  transform: translateY(-1px);
}

.service-card-camera-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 1.05rem;
  line-height: 1;
  filter: grayscale(.15) contrast(1.05);
}

.service-card-image-form input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.service-card-rich span,
.service-card-rich h3,
.service-card-rich p,
.service-card-rich small {
  margin-left: 18px;
  margin-right: 18px;
}

.service-card-rich span {
  margin-top: 18px;
}

.service-card-rich:hover {
  transform: translateY(-3px);
  border-color: rgba(247, 147, 30, .36);
  background:
    linear-gradient(180deg, rgba(247, 147, 30, .08), rgba(255, 255, 255, .03)),
    var(--surface);
}

.service-card-rich p {
  margin-bottom: 18px;
}

.service-card-rich small {
  display: block;
  margin-top: auto;
  margin-bottom: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--quiet);
  text-transform: none;
  line-height: 1.5;
}

.services-process .section-heading h2 {
  max-width: 560px;
}

.services-steps div {
  padding: 18px 20px;
}

.contact-hero {
  padding: 34px 0 28px;
}

.contact-hero h1 {
  max-width: 840px;
  font-size: clamp(2rem, 3.3vw, 3.35rem);
  margin-bottom: 10px;
}

.contact-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.55;
}

.contact-main-section {
  padding-top: 42px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.contact-form-panel {
  padding: 26px;
}

.contact-form-head {
  display: grid;
  gap: 6px;
  margin-bottom: 6px;
}

.contact-form-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label small {
  color: var(--quiet);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.35;
}

.contact-form input[type="file"] {
  padding: 10px 12px;
}

.contact-form input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: 1px solid rgba(247, 147, 30, .42);
  border-radius: 7px;
  background: rgba(247, 147, 30, .13);
  color: var(--brand-hover);
  font-weight: 950;
  padding: 8px 10px;
  cursor: pointer;
}

.contact-submit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.contact-submit-row small {
  color: var(--quiet);
  line-height: 1.45;
}

.contact-side {
  display: grid;
  gap: 14px;
  order: 1;
}

.contact-form-panel {
  order: 2;
}

.contact-info-card {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: var(--surface);
}

.contact-map-card {
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: var(--surface);
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  filter: saturate(.92) contrast(.96);
}

.hours-hero {
  padding: 28px 0 24px;
}

.hours-hero h1 {
  max-width: 920px;
  font-size: clamp(2rem, 3.6vw, 3.55rem);
}

.hours-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .36fr);
  gap: 24px;
  align-items: center;
}

.hours-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hours-status-card,
.hours-info-card,
.hours-main-card,
.hours-practical-grid article {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)),
    var(--surface);
}

.hours-status-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
}

.hours-status-card strong,
.hours-info-card h2,
.hours-practical-grid h2 {
  display: block;
  color: var(--ink);
  font-weight: 950;
  line-height: 1.1;
}

.hours-status-card small,
.hours-info-card p,
.hours-info-card small,
.hours-practical-grid p,
.hours-map-layout p {
  color: var(--muted);
  line-height: 1.55;
}

.hours-status-dot {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: #f45c5c;
  box-shadow: 0 0 0 7px rgba(244, 92, 92, .14);
}

.hours-status-dot.open {
  background: #58d68d;
  box-shadow: 0 0 0 7px rgba(88, 214, 141, .14);
}

.hours-section {
  padding-top: 42px;
}

.hours-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr);
  gap: 18px;
  align-items: start;
}

.hours-main-card {
  padding: 24px;
}

.hours-table {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.hours-table div {
  display: grid;
  grid-template-columns: minmax(110px, .55fr) minmax(120px, .45fr) minmax(120px, .45fr);
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
}

.hours-table div.active {
  border-color: rgba(247, 147, 30, .46);
  background: rgba(247, 147, 30, .08);
}

.hours-table div.closed {
  color: var(--muted);
}

.hours-table strong {
  color: var(--ink);
}

.hours-table span {
  color: var(--muted);
  font-weight: 850;
}

.hours-side {
  display: grid;
  gap: 14px;
}

.hours-info-card {
  padding: 22px;
}

.hours-info-card.evening {
  border-color: rgba(247, 147, 30, .35);
  background:
    linear-gradient(135deg, rgba(247,147,30,.14), rgba(255,255,255,.025)),
    var(--surface);
}

.hours-info-card h2 {
  margin: 6px 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.hours-info-card p {
  margin: 0 0 12px;
}

.hours-practical-section {
  padding: 44px 0;
}

.hours-practical-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hours-practical-grid article {
  padding: 20px;
}

.hours-practical-grid span {
  color: var(--brand-hover);
  font-weight: 950;
  font-size: .8rem;
}

.hours-practical-grid h2 {
  margin: 12px 0 10px;
  font-size: 1.25rem;
}

.hours-practical-grid p {
  margin: 0;
}

.hours-map-section {
  padding: 46px 0;
}

.hours-map-layout {
  display: grid;
  grid-template-columns: minmax(280px, .6fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.hours-map-layout h2 {
  max-width: 560px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.hours-map-card iframe {
  min-height: 330px;
}

body {
  padding-bottom: 36px;
}

.site-footer {
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 26px 0;
}

.help-chat { position: fixed; right: 20px; bottom: 20px; z-index: 1080; font-size: .92rem; }
.help-chat-toggle { display: flex; align-items: center; gap: 9px; min-height: 48px; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; background: var(--brand); padding: 7px 16px 7px 8px; color: #111; box-shadow: 0 12px 32px rgba(0,0,0,.35); font-weight: 900; }
.help-chat-toggle span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: #111419; color: #fff; font-size: 1.1rem; }
.help-chat-panel { position: absolute; right: 0; bottom: 60px; width: min(370px, calc(100vw - 24px)); overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; background: #1b2027; box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.help-chat-panel > header { display:flex; align-items:center; justify-content:space-between; gap:12px; background:#111419; padding:14px 16px; }
.help-chat-panel > header strong,.help-chat-panel > header small { display:block; }
.help-chat-panel > header small { color:var(--muted); }
.help-chat-panel > header small a { color:var(--brand); }
.help-chat-panel > header button { width:34px; height:34px; border:0; background:transparent; color:#fff; font-size:1.5rem; }
.help-chat-messages { display:flex; flex-direction:column; gap:9px; max-height:310px; overflow:auto; padding:14px; }
.help-chat-bubble { max-width:88%; border-radius:8px; padding:10px 12px; line-height:1.45; }
.help-chat-bubble.bot { align-self:flex-start; background:#2a3038; color:var(--ink); }
.help-chat-bubble.user { align-self:flex-end; background:#1677d2; color:#fff; }
.help-chat-bubble.pending { color:var(--muted); }
.help-chat-suggestions { display:flex; gap:7px; overflow-x:auto; padding:0 14px 10px; }
.help-chat-suggestions button { flex:0 0 auto; border:1px solid rgba(255,153,31,.42); border-radius:16px; background:rgba(255,153,31,.08); padding:6px 10px; color:var(--brand); font-size:.76rem; font-weight:800; }
.help-chat-actions { display:flex; flex-wrap:wrap; gap:7px; }
.help-chat-actions a { border:1px solid rgba(255,255,255,.14); border-radius:4px; background:#252b33; padding:7px 9px; color:var(--ink); font-size:.78rem; font-weight:800; text-decoration:none; }
.help-chat-choices button { border:1px solid rgba(22,119,210,.55); border-radius:4px; background:rgba(22,119,210,.16); padding:7px 10px; color:#b9dcff; font-size:.8rem; font-weight:850; }
.help-chat-form { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:8px; border-top:1px solid rgba(255,255,255,.09); padding:11px; }
.help-chat-form input { min-width:0; height:42px; border:1px solid rgba(255,255,255,.14); border-radius:5px; background:#111419; padding:0 11px; color:#fff; }
.help-chat-form button { border:0; border-radius:5px; background:var(--brand); padding:0 13px; color:#111; font-weight:900; }
.help-chat-privacy { display:block; padding:0 12px 10px; color:var(--quiet); font-size:.68rem; }
@media (max-width: 600px) { body { padding-bottom: 48px; } .help-chat { right:12px; bottom:12px; } .help-chat-toggle strong { display:none; } .help-chat-toggle { padding-right:8px; } .help-chat-panel { bottom:54px; } }
.site-footer nav { display:flex; gap:14px; }
.site-footer nav a { color:var(--muted); text-decoration:none; }
.site-footer nav a:hover { color:var(--brand); }
.site-sticky-credit {
  position: fixed;
  left: 50%;
  bottom: 3px;
  z-index: 1040;
  transform: translateX(-50%);
  max-width: calc(100vw - 24px);
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(13, 15, 18, .42);
  color: rgba(244, 246, 248, .72);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 56px;
  z-index: 1090;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(20, 24, 30, .96);
  color: var(--ink);
  padding: 14px 16px;
  box-shadow: 0 18px 48px rgba(0,0,0,.42);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent p { margin: 2px 0 0; color: var(--muted); font-size: .86rem; }
.cookie-consent a { color: var(--brand); font-weight: 800; text-decoration: none; }
.cookie-consent-actions { display: flex; gap: 8px; flex: 0 0 auto; }
@media (max-width: 700px) {
  .cookie-consent { flex-direction: column; align-items: stretch; bottom: 50px; }
  .cookie-consent-actions { justify-content: flex-end; }
}
.faq-hero { padding-bottom:34px; }
.faq-search { display:block; max-width:620px; margin-top:22px; }
.faq-search input { width:100%; min-height:50px; border:1px solid rgba(255,255,255,.14); border-radius:6px; background:#15191f; padding:0 16px; color:#fff; }
.faq-layout { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:26px; align-items:start; }
.faq-group { display:grid; gap:10px; }
.faq-group > div { border-top:1px solid rgba(255,255,255,.1); }
.faq-item { border-bottom:1px solid rgba(255,255,255,.1); }
.faq-item summary { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:16px 2px; color:var(--ink); font-weight:900; cursor:pointer; list-style:none; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary span { color:var(--brand); font-size:1.25rem; }
.faq-item[open] summary span { transform:rotate(45deg); }
.faq-item p { margin:0; padding:0 2px 17px; color:var(--muted); line-height:1.65; }
.faq-empty { grid-column:1/-1; color:var(--muted); }
@media (max-width:800px){.faq-layout{grid-template-columns:1fr}.site-footer .page-shell{gap:12px}.site-footer nav{order:3;width:100%}}

.site-footer .page-shell {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.product-page {
  min-height: calc(100vh - 104px);
  padding: 46px 0 64px;
  background: #202327;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .85fr);
  gap: 54px;
  align-items: start;
}

.product-nav-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.breadcrumb-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  margin: 0;
}

.breadcrumb-line a,
.product-cart-link {
  color: var(--brand-hover);
  font-weight: 850;
  text-decoration: none;
}

.breadcrumb-line a:hover,
.product-cart-link:hover {
  color: #fff;
}

.breadcrumb-line strong {
  color: var(--ink);
  font-weight: 850;
}

.product-cart-link {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  padding: 8px 12px;
  font-size: .86rem;
}

.product-gallery {
  position: sticky;
  top: 126px;
}

.pc-visual {
  min-height: 510px;
  display: grid;
  place-items: center;
}

.pc-case {
  width: min(360px, 78vw);
  height: 440px;
  position: relative;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .14), transparent 20%),
    linear-gradient(135deg, #3a332e 0 16%, #15181d 16% 100%);
  border: 8px solid #3c2d22;
  box-shadow: -72px 22px 80px rgba(0, 0, 0, .38), inset 0 0 0 18px rgba(255, 255, 255, .04);
  transform: perspective(900px) rotateY(-12deg);
}

.pc-case::before {
  content: "";
  position: absolute;
  inset: 58px 42px;
  border-radius: 6px;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .18) 0 2px, transparent 2px 18px),
    rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 255, 255, .12);
}

.pc-case::after {
  content: "";
  position: absolute;
  left: -120px;
  top: 92px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  border: 18px solid rgba(255, 255, 255, .28);
  box-shadow: inset 0 0 0 12px rgba(0, 0, 0, .32);
}

.pc-case span {
  position: absolute;
  left: -128px;
  top: 110px;
  width: 166px;
  height: 18px;
  background: rgba(255, 255, 255, .28);
  transform: rotate(90deg);
}

.pc-case span:nth-child(2) {
  transform: rotate(30deg);
}

.pc-case span:nth-child(3) {
  transform: rotate(150deg);
}

.thumb-row {
  display: flex;
  gap: 10px;
}

.thumb-row button {
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(247, 147, 30, .22), transparent 45%),
    var(--surface-2);
}

.product-config {
  padding-top: 42px;
}

.product-config h1 {
  font-size: clamp(2.15rem, 3.4vw, 3.45rem);
  line-height: 1.02;
  font-weight: 950;
  margin-bottom: 14px;
}

.product-intro {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 600px;
}

.product-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.product-meta-line span,
.product-link-list a {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: var(--muted);
  padding: 8px 10px;
  font-size: .86rem;
  font-weight: 850;
}

.product-price {
  display: grid;
  gap: 4px;
  margin: 22px 0 26px;
}

.product-price strong {
  font-size: 1.7rem;
  line-height: 1.1;
}

.product-price small {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 850;
}

.option-group {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 22px 0;
}

.option-group h2 {
  font-size: 1.2rem;
  font-weight: 950;
  margin-bottom: 10px;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  color: var(--ink);
  min-height: 42px;
  padding: 0 16px;
  font-weight: 850;
}

.choice.active {
  color: #101214;
  background: #dedede;
}

.product-actions {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 22px;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 10px;
}

.product-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-link-list a {
  color: var(--brand-hover);
}

.product-actions .btn-soft {
  grid-column: 1 / -1;
}

.qty-control {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-control button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 950;
}

.qty-control span {
  text-align: center;
  font-weight: 950;
}

.product-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-details article,
.builder-step {
  border: 1px solid rgba(255, 255, 255, .1);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
}

.product-details h2,
.builder-step legend {
  font-size: 1.3rem;
  font-weight: 950;
}

.product-details p {
  color: var(--muted);
  line-height: 1.65;
}

.product-info-layout,
.review-grid {
  display: grid;
  gap: 16px;
}

.product-info-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-info-panel,
.review-card {
  border: 1px solid rgba(255, 255, 255, .1);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
}

.product-info-panel h2,
.review-card h3 {
  font-size: 1.2rem;
  font-weight: 950;
}

.product-info-panel p:not(.eyebrow),
.review-card p {
  color: var(--muted);
  line-height: 1.65;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-submit-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  padding: 16px 18px;
}

.review-submit-note strong {
  color: var(--ink);
  font-weight: 950;
}

.review-submit-note p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.45;
}

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

.review-card div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--brand-hover);
  font-weight: 950;
}

.review-card small {
  color: var(--quiet);
  font-weight: 850;
}

.pc-builder-form {
  display: grid;
  gap: 16px;
}

.builder-step {
  margin: 0;
}

.builder-step legend {
  float: none;
  width: auto;
  color: var(--ink);
  margin-bottom: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.field-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
}

.field-grid input,
.field-grid select,
.field-grid textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: #111419;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

.builder-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}

.pc-config-hero {
  padding: 58px 0 38px;
  background:
    radial-gradient(circle at 82% 22%, rgba(247, 147, 30, .22), transparent 28%),
    linear-gradient(135deg, #15181d 0%, #0d0f12 76%);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.pc-config-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
}

.pc-config-hero h1 {
  font-size: clamp(2.35rem, 4.1vw, 4.1rem);
  line-height: 1.02;
  font-weight: 950;
  max-width: 720px;
}

.pc-config-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.7;
}

.config-live-card,
.pc-config-summary .summary-sticky {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: rgba(29, 34, 41, .92);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.config-live-card {
  padding: 22px;
}

.config-live-card span {
  color: var(--quiet);
  font-weight: 850;
}

.config-live-card strong {
  display: block;
  margin: 8px 0 10px;
  font-size: 1.8rem;
  line-height: 1.1;
}

.config-live-card p,
.pc-config-summary p {
  color: var(--muted);
  line-height: 1.6;
}

.build-score,
.budget-meter {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
}

.build-score span,
.budget-meter span {
  display: block;
  height: 100%;
  width: 50%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand-hover));
  transition: width .22s ease;
}

.pc-config-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 22px;
  align-items: start;
}

.pc-configurator .builder-step {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .04), transparent 52%),
    rgba(29, 34, 41, .95);
  overflow: hidden;
}

.persona-grid,
.expertise-grid,
.system-grid,
.usage-grid,
.toggle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.persona-option,
.usage-grid label,
.toggle-grid label {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .065), transparent 52%),
    rgba(255, 255, 255, .045);
  color: var(--muted);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.persona-option::before,
.usage-grid label::before,
.toggle-grid label::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .24);
  background: rgba(13, 15, 18, .72);
}

.persona-option::after,
.usage-grid label::after,
.toggle-grid label::after {
  content: "";
  position: absolute;
  right: 19px;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0;
  transform: scale(.6);
  transition: opacity .18s ease, transform .18s ease;
}

.persona-option input,
.usage-grid input,
.toggle-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.persona-option span,
.usage-grid span,
.toggle-grid span {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.persona-option em {
  width: fit-content;
  margin-bottom: 4px;
  color: var(--brand-hover);
  font-size: .78rem;
  font-style: normal;
  font-weight: 950;
}

.persona-option small,
.usage-grid small {
  color: var(--quiet);
  line-height: 1.45;
}

.persona-option:hover,
.usage-grid label:hover,
.toggle-grid label:hover {
  transform: translateY(-2px);
  border-color: rgba(247, 147, 30, .4);
}

.persona-option:has(input:checked),
.usage-grid label:has(input:checked),
.toggle-grid label:has(input:checked) {
  border-color: rgba(247, 147, 30, .62);
  background:
    linear-gradient(145deg, rgba(247, 147, 30, .24), rgba(247, 147, 30, .06)),
    rgba(255, 255, 255, .045);
  box-shadow: inset 0 0 0 1px rgba(247, 147, 30, .18), 0 16px 40px rgba(0, 0, 0, .18);
}

.persona-option:has(input:checked)::before,
.usage-grid label:has(input:checked)::before,
.toggle-grid label:has(input:checked)::before {
  border-color: var(--brand-hover);
}

.persona-option:has(input:checked)::after,
.usage-grid label:has(input:checked)::after,
.toggle-grid label:has(input:checked)::after {
  opacity: 1;
  transform: scale(1);
}

.usage-head {
  margin-bottom: 12px;
}

.usage-grid label::before {
  border-radius: 6px;
}

.usage-grid label::after {
  right: 20px;
  top: 18px;
  width: 8px;
  height: 12px;
  border-radius: 0;
  border-right: 3px solid #111419;
  border-bottom: 3px solid #111419;
  background: transparent;
  transform: rotate(45deg) scale(.72);
}

.usage-grid label:has(input:checked)::before {
  background: var(--brand-hover);
}

.usage-grid label:has(input:checked)::after {
  transform: rotate(45deg) scale(1);
}

.pc-configurator .is-hidden,
.pc-config-summary .is-hidden {
  display: none !important;
}

.system-warning,
.mode-hint,
.budget-warning {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(247, 147, 30, .34);
  border-radius: var(--radius);
  background: rgba(247, 147, 30, .1);
  color: var(--brand-hover);
  font-weight: 850;
  line-height: 1.5;
}

.budget-warning {
  color: #ffd29a;
  background: rgba(247, 147, 30, .12);
}

.pc-configurator .field-grid label {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
}

.pc-configurator .field-grid select,
.pc-configurator .field-grid input {
  min-height: 48px;
}

.pc-configurator select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand-hover) 50%),
    linear-gradient(135deg, var(--brand-hover) 50%, transparent 50%),
    linear-gradient(135deg, rgba(247, 147, 30, .18), rgba(247, 147, 30, .06));
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 15px) 50%,
    right 9px center;
  background-size:
    7px 7px,
    7px 7px,
    34px 34px;
  background-repeat: no-repeat;
  padding-right: 52px;
}

.config-sliders {
  display: grid;
  gap: 16px;
}

.config-sliders label {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
  color: var(--muted);
  font-weight: 850;
}

.config-sliders input[type="range"] {
  appearance: none;
  height: 9px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--brand), var(--brand-hover)),
    rgba(255, 255, 255, .1);
  background-size: 55% 100%, 100% 100%;
  background-repeat: no-repeat;
  accent-color: var(--brand);
}

.config-sliders input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid #111419;
  background: var(--brand-hover);
  box-shadow: 0 0 0 5px rgba(247, 147, 30, .18);
}

.config-sliders input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid #111419;
  background: var(--brand-hover);
  box-shadow: 0 0 0 5px rgba(247, 147, 30, .18);
}

.advanced-config {
  border-color: rgba(96, 165, 250, .18);
}

.game-picker,
.compat-board {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.section-mini-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.section-mini-head span {
  color: var(--ink);
  font-weight: 950;
}

.section-mini-head small,
.empty-inline {
  color: var(--quiet);
  line-height: 1.45;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.game-card {
  position: relative;
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px 44px 16px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .045);
  cursor: pointer;
}

.game-card::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, .24);
  background: rgba(13, 15, 18, .72);
}

.game-card::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 18px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #111419;
  border-bottom: 3px solid #111419;
  opacity: 0;
  transform: rotate(45deg) scale(.7);
}

.game-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.game-card span {
  color: var(--ink);
  font-weight: 950;
}

.game-card small {
  color: var(--quiet);
}

.game-card:has(input:checked) {
  border-color: rgba(96, 165, 250, .55);
  background:
    linear-gradient(145deg, rgba(96, 165, 250, .18), rgba(247, 147, 30, .08)),
    rgba(255, 255, 255, .045);
}

.game-card:has(input:checked)::before {
  border-color: var(--brand-hover);
  background: var(--brand-hover);
}

.game-card:has(input:checked)::after {
  opacity: 1;
}

.compat-board {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: rgba(17, 20, 25, .72);
}

.compat-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.compat-row strong,
.compat-row small {
  display: block;
}

.compat-row small {
  color: var(--quiet);
  margin-top: 3px;
}

.compat-row > span {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  overflow: hidden;
}

.compat-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--success);
}

.compat-row[data-state="Limite"] i {
  background: var(--warning);
}

.compat-row[data-state="À renforcer"] i {
  background: var(--danger);
}

.pc-config-summary {
  position: sticky;
  top: 126px;
}

.pc-config-summary .summary-sticky {
  padding: 20px;
}

.pc-build-visual {
  position: relative;
  min-height: 170px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(247, 147, 30, .2), transparent 44%),
    #111419;
}

.screen-glow {
  position: absolute;
  inset: 20px 120px 54px 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(96, 165, 250, .38), rgba(247, 147, 30, .18));
  box-shadow: 0 0 42px rgba(247, 147, 30, .22);
}

.mini-monitor {
  position: absolute;
  left: 34px;
  top: 34px;
  width: 138px;
  height: 82px;
  border: 8px solid rgba(255, 255, 255, .24);
  border-radius: 6px;
}

.mini-monitor span {
  position: absolute;
  left: 48px;
  bottom: -34px;
  width: 32px;
  height: 34px;
  background: rgba(255, 255, 255, .18);
}

.mini-tower {
  position: absolute;
  right: 34px;
  top: 28px;
  width: 78px;
  height: 122px;
  border-radius: 8px;
  background: #252b33;
  border: 1px solid rgba(255, 255, 255, .16);
}

.mini-tower span {
  position: absolute;
  left: 18px;
  width: 42px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

.mini-tower span:nth-child(1) { top: 22px; }
.mini-tower span:nth-child(2) { top: 42px; }
.mini-tower span:nth-child(3) {
  left: 24px;
  bottom: 20px;
  width: 28px;
  height: 28px;
  background: var(--brand);
  box-shadow: 0 0 22px rgba(247, 147, 30, .46);
}

.pc-build-visual[data-power="high"] .mini-tower span:nth-child(3) {
  background: var(--danger);
  box-shadow: 0 0 28px rgba(249, 112, 102, .5);
}

.pc-build-visual[data-power="low"] .mini-tower span:nth-child(3) {
  background: var(--success);
  box-shadow: 0 0 22px rgba(50, 213, 131, .42);
}

.pc-config-summary h2 {
  font-weight: 950;
  margin-bottom: 8px;
}

.quote-block {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
}

.quote-block + .quote-block {
  margin-top: 12px;
}

.quote-main {
  background:
    linear-gradient(145deg, rgba(247, 147, 30, .12), transparent 56%),
    rgba(255, 255, 255, .04);
}

.quote-budget strong {
  display: block;
  margin: 2px 0 4px;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.1;
  font-weight: 950;
}

.quote-budget small,
.quote-next li {
  color: var(--muted);
}

.quote-next ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
}

.quote-next li::marker {
  color: var(--brand-hover);
  font-weight: 950;
}

.spec-list {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.spec-list span {
  color: var(--quiet);
  font-weight: 850;
}

.spec-list strong {
  text-align: right;
}

.component-notes {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.component-notes details {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
  padding: 10px 12px;
}

.component-notes summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.component-notes p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.summary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0 12px;
}

#summaryText {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: #111419;
  color: var(--muted);
  padding: 12px;
  resize: vertical;
}

@media (max-width: 1060px) {
  .hero-grid,
  .split-layout,
  .app-preview,
  .pro-grid,
  .contact-grid,
  .services-hero-grid,
  .services-overview .services-heading,
  .contact-layout,
  .hours-hero-grid,
  .hours-layout,
  .hours-map-layout,
  .product-grid,
  .pc-config-hero-grid,
  .pc-config-layout,
  .shop-hero-grid,
  .shop-layout,
  .cart-layout,
  .checkout-form-layout,
  .payment-layout,
  .checkout-head .page-shell {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding-top: 0;
  }

  .product-gallery,
  .shop-filters,
  .cart-summary,
  .checkout-summary {
    position: static;
  }

  .service-grid,
  .services-card-grid,
  .hours-practical-grid,
  .catalog-grid,
  .timeline,
  .product-details,
  .product-info-layout,
  .review-grid,
  .field-grid,
    .persona-grid,
    .expertise-grid,
    .system-grid,
    .game-grid,
    .toggle-grid,
    .featured-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-catalog .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pc-config-summary {
    position: static;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .top-strip .page-shell {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 4px;
  }

  .site-social-strip .page-shell {
    min-height: 28px;
    flex-direction: row;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-section {
    min-height: auto;
    padding-top: 46px;
  }

  .page-hero {
    padding: 46px 0 40px;
  }

  .services-hero {
    padding: 24px 0 20px;
  }

  .services-hero-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-overview {
    padding-top: 30px;
  }

  .services-overview .services-heading {
    gap: 8px;
    margin-bottom: 18px;
  }

  .service-card-rich {
    min-height: auto;
  }

  h1 {
    font-size: 3rem;
  }

  .page-hero h1 {
    font-size: 2.45rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row,
  .service-grid,
  .shop-preview,
  .catalog-grid,
  .timeline,
    .news-grid,
    .services-card-grid,
    .mini-dashboard,
    .product-details,
    .product-info-layout,
    .review-grid,
    .field-grid,
    .persona-grid,
    .toggle-grid,
    .summary-actions,
    .featured-products {
    grid-template-columns: 1fr;
  }

  .contact-field-grid,
  .contact-submit-row {
    grid-template-columns: 1fr;
  }

  .contact-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .shop-benefits .page-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .pc-visual {
    min-height: 360px;
  }

  .pc-case {
    height: 320px;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .product-nav-line,
  .review-submit-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .variant-axis-grid {
    grid-template-columns: 1fr;
  }

  .product-cart-link {
    width: 100%;
    text-align: center;
  }

  .shop-hero {
    padding: 46px 0 40px;
  }

  .shop-hero-actions .btn {
    width: auto;
    flex: 1 1 160px;
  }

  .shop-catalog .catalog-grid {
    grid-template-columns: 1fr;
  }

  .shop-search,
  .product-cart-form,
  .hours-practical-grid,
  .hours-table div,
  .cart-row {
    grid-template-columns: 1fr;
  }

  .hours-table div {
    gap: 4px;
  }

  .checkout-head {
    padding: 24px 0;
  }

  .checkout-head .page-shell {
    gap: 22px;
  }

  .checkout-head h1,
  .order-success h1 {
    font-size: 2rem;
  }

  .checkout-steps {
    gap: 4px;
  }

  .checkout-steps span,
  .checkout-steps a {
    gap: 5px;
    font-size: .72rem;
  }

  .checkout-cart-row {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .cart-product-image {
    width: 70px;
  }

  .cart-product-copy {
    align-self: center;
  }

  .cart-line-actions {
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 1fr) 34px;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .07);
  }

  .cart-price {
    text-align: right;
  }

  .checkout-fields,
  .checkout-login-form,
  .paypal-card-form > div,
  .payment-method-section,
  .order-success-grid {
    grid-template-columns: 1fr;
  }

  .checkout-fields .span-2 {
    grid-column: auto;
  }

  .checkout-account summary,
  .checkout-account.connected {
    align-items: flex-start;
  }

  .checkout-actions .btn,
  .order-success-actions .btn {
    width: 100%;
  }

  .cart-row {
    align-items: stretch;
  }

  .builder-submit {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-toolbar {
    flex-direction: column;
  }

  .mini-dashboard div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .mini-dashboard div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .repair-status {
    align-items: flex-start;
    flex-direction: column;
  }

  .tracking-mini-timeline div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .site-footer .page-shell {
    flex-direction: column;
  }
}
/* Boutique compacte + favoris */
.shop-hero { padding: 28px 0 22px; }
.shop-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(260px, .28fr); gap: 20px; }
.shop-hero h1 { max-width: 680px; font-size: clamp(1.9rem, 3.1vw, 3rem); margin-bottom: 10px; }
.shop-hero p:not(.eyebrow) { max-width: 760px; line-height: 1.5; }
.shop-hero-actions { margin-top: 14px; }
.shop-advice-panel { padding: 16px; box-shadow: none; }
.shop-advice-panel h2 { margin: 10px 0 6px; font-size: 1.08rem; }
.shop-advice-panel p { line-height: 1.45; font-size: .92rem; }
.shop-benefits .page-shell { min-height: 40px; }
.shop-catalog-actions { display: flex; gap: 8px; align-items: stretch; margin-bottom: 16px; }
.shop-catalog-actions .shop-search { flex: 1; margin-bottom: 0; }
.shop-favorite-filter { white-space: nowrap; display: inline-flex; align-items: center; }
.product-card { position: relative; }
.product-favorite-form { position: absolute; top: 10px; right: 10px; z-index: 3; margin: 0; }
.product-favorite { width: 36px; height: 36px; border-radius: 999px; border: 1px solid rgba(17,24,39,.22); background: rgba(255,255,255,.92); color: #111827; font-size: 1.05rem; font-weight: 950; line-height: 1; box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.product-favorite.active { color: #e11d48; border-color: rgba(225,29,72,.35); background: #fff; }
@media (max-width: 767px) {
  .shop-hero { padding: 22px 0 18px; }
  .shop-advice-panel { display: none; }
  .shop-catalog-actions { display: grid; }
  .shop-favorite-filter { justify-content: center; }
}

.rdv-page .rdv-hero{padding:34px 0 26px}.rdv-layout{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:18px}.rdv-card{border:1px solid rgba(255,255,255,.12);border-radius:8px;background:#1a1f27;padding:22px}.rdv-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:12px 0 22px}.rdv-grid .span-2{grid-column:1/-1}.rdv-form label{display:grid;gap:6px;font-weight:800;color:#c9d1dc}.rdv-form input,.rdv-form select,.rdv-form textarea{border:1px solid #343b46;border-radius:8px;background:#101318;color:#fff;padding:11px}.rdv-slots{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin:12px 0 22px}.rdv-slots label{cursor:pointer}.rdv-slots input{position:absolute;opacity:0}.rdv-slots span{display:block;border:1px solid #343b46;border-radius:8px;padding:11px;background:#101318;font-weight:900}.rdv-slots input:checked+span{border-color:#ff9418;background:#2b1d10;color:#ffb357}@media(max-width:900px){.rdv-layout,.rdv-grid,.rdv-slots{grid-template-columns:1fr}.rdv-card{padding:16px}}

/* RDV calendar picker */
.rdv-picker{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(230px,.75fr);gap:18px;margin:12px 0 22px}.rdv-calendar,.rdv-hours{border:1px solid rgba(255,255,255,.12);border-radius:8px;background:#101318}.rdv-calendar-head{padding:14px 16px;text-align:center;font-weight:900;font-size:1.12rem;border-bottom:1px solid rgba(255,255,255,.1)}.rdv-calendar-week,.rdv-calendar-grid{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:8px;padding:10px 12px}.rdv-calendar-week{padding-bottom:4px;color:#aeb6c2;font-weight:900;font-size:.8rem;text-align:center}.rdv-day{min-height:46px;border:1px solid rgba(255,148,24,.22);border-radius:8px;background:#141922;color:#f5f7fb;font-weight:900}.rdv-day:not(:disabled){cursor:pointer}.rdv-day:disabled{border-color:transparent;background:transparent;color:#59606b}.rdv-day.is-active{background:#a85a00;border-color:#ff9418;color:#fff;box-shadow:inset 0 -3px 0 #ff4d5c}.rdv-day-empty{min-height:46px}.rdv-timezone{margin:0;padding:0 14px 14px;color:#aeb6c2;font-size:.86rem}.rdv-hours{padding:14px}.rdv-hours>p{margin:0 0 10px;font-weight:900}.rdv-hour-list{display:none;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.rdv-hour-list.is-active{display:grid}.rdv-hour-list label{display:block;cursor:pointer}.rdv-hour-list input{position:absolute;opacity:0}.rdv-hour-list span{display:block;text-align:center;border:1px solid rgba(255,148,24,.24);border-radius:8px;padding:11px;background:#151922;color:#ffb357;font-weight:900}.rdv-hour-list input:checked+span{background:#ff9418;color:#101318;border-color:#ff9418}@media(max-width:900px){.rdv-picker{grid-template-columns:1fr}.rdv-hour-list{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:520px){.rdv-calendar-week,.rdv-calendar-grid{gap:5px;padding-left:8px;padding-right:8px}.rdv-day{min-height:38px}.rdv-hour-list{grid-template-columns:1fr}}

.rdv-calendar-head{display:grid;grid-template-columns:40px minmax(0,1fr) 40px;gap:10px;align-items:center}
.rdv-calendar-head button{display:grid;place-items:center;width:38px;height:34px;border:1px solid rgba(255,148,24,.28);border-radius:8px;background:#171c24;color:#ffb357;font-size:1.45rem;font-weight:900;line-height:1;cursor:pointer}
.rdv-calendar-head button:last-child{justify-self:end}
.rdv-calendar-head button:disabled{cursor:default;opacity:.28}
.rdv-calendar-month{display:none}
.rdv-calendar-month.is-active{display:block}
.product-availability-channels{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.product-availability-channels p{display:grid;gap:4px;margin:0;padding:12px;border:1px solid rgba(255,255,255,.12);border-radius:10px;background:rgba(255,255,255,.025)}
.product-availability-channels strong{color:#f4f6f8;font-size:.88rem}
.product-availability-channels span{color:#ffb04d;font-weight:800}
.product-availability-channels small{color:#9fa9b7;line-height:1.35}
@media(max-width:620px){.product-availability-channels{grid-template-columns:1fr}}
