:root {
  --portal-navy: #052f45;
  --portal-navy-2: #084861;
  --portal-blue: #1783ad;
  --portal-sky: #dff5fb;
  --portal-ink: #14232c;
  --portal-muted: #647580;
  --portal-line: #d9e4e8;
  --portal-bg: #f3f7f8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.portal-page {
  margin: 0;
  color: var(--portal-ink);
  background: radial-gradient(circle at 88% 2%, rgba(54, 175, 218, .15), transparent 30rem), var(--portal-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
.portal-page a { color: inherit; }
.portal-page [hidden] { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.portal-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 72px);
  color: white;
  background: var(--portal-navy);
}
.portal-brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.portal-brand img { width: 46px; height: 46px; object-fit: contain; border-radius: 12px; }
.portal-kicker { color: #bfe5f1; font-size: .78rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.portal-main { width: min(1180px, calc(100% - 40px)); min-height: calc(100vh - 150px); margin: 0 auto; padding: clamp(52px, 7vw, 88px) 0 80px; }
.portal-intro { max-width: 760px; margin-bottom: 40px; }
.eyebrow { margin: 0 0 12px; color: var(--portal-blue); font-size: .76rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.portal-intro h1 { margin: 0; color: var(--portal-navy); font-size: clamp(2.5rem, 6vw, 4.9rem); line-height: .98; letter-spacing: -.055em; }
.portal-intro > p:last-child { max-width: 650px; margin: 20px 0 0; color: var(--portal-muted); font-size: clamp(1rem, 2vw, 1.14rem); line-height: 1.65; }
.portal-toolbar { display: flex; align-items: center; gap: 18px; margin-bottom: 25px; color: var(--portal-muted); font-size: .9rem; font-weight: 700; }
.search-box { position: relative; flex: 1; }
.search-box svg { position: absolute; top: 50%; left: 18px; width: 20px; height: 20px; fill: none; stroke: var(--portal-muted); stroke-width: 2; transform: translateY(-50%); }
.search-box input { width: 100%; height: 54px; padding: 0 18px 0 50px; border: 1px solid var(--portal-line); border-radius: 14px; outline: none; background: rgba(255,255,255,.94); font: inherit; box-shadow: 0 6px 20px rgba(5,47,69,.04); }
.search-box input:focus { border-color: var(--portal-blue); box-shadow: 0 0 0 4px rgba(23,131,173,.12); }
.document-grid, .product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.document-card, .product-card { min-width: 0; overflow: hidden; border: 1px solid var(--portal-line); border-radius: 20px; background: white; box-shadow: 0 8px 28px rgba(5,47,69,.055); transition: transform .2s, box-shadow .2s; }
.product-card { content-visibility: auto; contain-intrinsic-size: 510px; }
.document-card:hover, .product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(5,47,69,.12); }
.document-art {
  min-height: 205px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 75% 15%, rgba(23,131,173,.12), transparent 8rem), linear-gradient(135deg, #def3f9, #f3f8fa);
}
.paper-icon { position: relative; width: 104px; height: 132px; padding: 24px 15px; border-radius: 8px 20px 8px 8px; background: white; box-shadow: 0 18px 38px rgba(5,47,69,.2); }
.paper-icon::before, .paper-icon::after { content: ""; display: block; height: 5px; margin-bottom: 10px; border-radius: 5px; background: #dce7ea; }
.paper-icon::after { width: 65%; }
.paper-icon i { position: absolute; right: -12px; bottom: 18px; padding: 8px 11px; color: white; border-radius: 8px; background: #d64545; font-size: .7rem; font-style: normal; font-weight: 900; letter-spacing: .08em; }
.document-body, .product-body { padding: 22px; }
.tag { display: inline-flex; padding: 6px 9px; color: #0b698f; border-radius: 999px; background: var(--portal-sky); font-size: .68rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.document-body h2, .product-body h2 { margin: 14px 0 8px; overflow-wrap: anywhere; color: var(--portal-navy); font-size: 1.13rem; line-height: 1.3; letter-spacing: -.015em; }
.document-body h2 { min-height: 2.65em; }
.file-meta { margin: 0 0 20px; color: var(--portal-muted); font-size: .83rem; }
.document-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.portal-button { min-height: 43px; display: inline-flex; align-items: center; justify-content: center; padding: 9px 15px; border: 1px solid var(--portal-line); border-radius: 11px; text-decoration: none; font-size: .87rem; font-weight: 800; cursor: pointer; }
.portal-button.primary { color: white; border-color: var(--portal-navy); background: var(--portal-navy); }
.portal-button.primary:hover { border-color: var(--portal-blue); background: var(--portal-blue); }
.portal-button.icon-button { min-width: 43px; padding: 9px; color: var(--portal-navy); background: white; }
.portal-empty { grid-column: 1 / -1; padding: clamp(54px, 9vw, 92px) 24px; text-align: center; border: 1px dashed #b8cbd2; border-radius: 22px; background: rgba(255,255,255,.68); }
.empty-icon { display: inline-grid; width: 58px; height: 58px; place-items: center; color: white; border-radius: 15px; background: var(--portal-blue); font-size: .68rem; font-weight: 900; }
.portal-empty h2 { margin: 18px 0 8px; color: var(--portal-navy); }
.portal-empty p { margin: 0; color: var(--portal-muted); }
.portal-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 25px clamp(20px, 5vw, 72px); color: #b7cfda; background: var(--portal-navy); font-size: .84rem; }
.portal-footer a { color: white; text-decoration: none; font-weight: 800; }
.store-credit { text-align: center; }
.shop-phone, .cart-back-link { color: white; text-decoration: none; font-size: .88rem; font-weight: 800; }
.cart-back-link { display: inline-flex; min-height: 42px; align-items: center; padding: 8px 12px; border: 1px solid rgba(255,255,255,.28); border-radius: 10px; }
.cart-back-link:hover, .cart-back-link:focus-visible { border-color: white; background: rgba(255,255,255,.1); outline: none; }
.shop-header-actions { display: flex; align-items: center; gap: 16px; }
.cart-link { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; color: var(--portal-navy); border-radius: 10px; background: white; text-decoration: none; font-size: .84rem; font-weight: 850; }
.cart-link span { display: grid; min-width: 22px; height: 22px; padding: 0 5px; place-items: center; color: white; border-radius: 999px; background: var(--portal-blue); font-size: .7rem; }
.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  align-items: center;
  gap: clamp(34px, 7vw, 90px);
  padding: 10px 0 clamp(70px, 9vw, 110px);
}
.shop-hero h1 { max-width: 780px; margin: 0; color: var(--portal-navy); font-size: clamp(2.7rem, 6.5vw, 5.6rem); line-height: .96; letter-spacing: -.06em; }
.shop-hero > div > p:not(.eyebrow) { max-width: 670px; margin: 23px 0 0; color: var(--portal-muted); font-size: clamp(1.02rem, 2vw, 1.18rem); line-height: 1.65; }
.shop-promises { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 26px; color: var(--portal-navy-2); font-size: .86rem; font-weight: 800; }
.laptop-hero-art { position: relative; min-height: 290px; display: grid; place-items: center; border-radius: 28px; background: linear-gradient(145deg, #d8f2f9, #edf7f9); overflow: hidden; }
.laptop-hero-art::before { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; background: rgba(23,131,173,.12); }
.laptop-screen { position: relative; z-index: 1; width: min(73%, 300px); aspect-ratio: 1.55; display: grid; place-items: center; border: 10px solid var(--portal-navy); border-bottom-width: 15px; border-radius: 12px 12px 5px 5px; background: radial-gradient(circle at 30% 25%, #35a9cf, #07516e 72%); box-shadow: 0 25px 45px rgba(5,47,69,.24); }
.laptop-screen i { color: white; font-size: 2.4rem; font-style: normal; font-weight: 900; letter-spacing: -.08em; }
.laptop-base { position: absolute; z-index: 2; bottom: 54px; width: min(85%, 350px); height: 16px; border-radius: 3px 3px 18px 18px; background: #a7bac2; box-shadow: 0 5px 8px rgba(5,47,69,.18); }
.shop-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.shop-heading h2 { margin: 0; color: var(--portal-navy); font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -.04em; }
.shop-heading > span { color: var(--portal-muted); font-size: .88rem; font-weight: 750; }
.store-tax-note { margin: -13px 0 22px; color: var(--portal-muted); font-size: .84rem; }
.store-controls { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin: -8px 0 18px; }
.store-search { flex: 1 1 300px; min-width: 220px; }
.sort-box { display: flex; align-items: center; gap: 9px; color: var(--portal-muted); font-size: .8rem; font-weight: 800; }
.type-box select { min-width: 170px; }
.sort-box select { height: 54px; padding: 0 38px 0 15px; border: 1px solid var(--portal-line); border-radius: 14px; outline: none; background: white; color: var(--portal-navy); font: inherit; font-weight: 750; cursor: pointer; }
.sort-box select:focus { border-color: var(--portal-blue); box-shadow: 0 0 0 4px rgba(23,131,173,.12); }
.category-filters { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 2px; }
.category-filters button { padding: 9px 14px; color: var(--portal-muted); border: 1px solid var(--portal-line); border-radius: 999px; background: white; font: inherit; font-size: .8rem; font-weight: 800; cursor: pointer; }
.category-filters button.active { color: white; border-color: var(--portal-navy); background: var(--portal-navy); }
.store-pagination { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 9px; margin: 28px 0 0; }
.store-pagination button { min-width: 43px; min-height: 43px; padding: 8px 13px; color: var(--portal-navy); border: 1px solid var(--portal-line); border-radius: 11px; background: white; font: inherit; font-size: .82rem; font-weight: 850; cursor: pointer; }
.store-pagination button:hover, .store-pagination button:focus-visible, .store-pagination button.active { color: white; border-color: var(--portal-blue); background: var(--portal-blue); outline: none; }
.store-pagination button:disabled { color: #8a989f; border-color: #d7e0e3; background: #eef2f3; cursor: not-allowed; }
.page-numbers { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; }
.page-summary { flex-basis: 100%; color: var(--portal-muted); text-align: center; font-size: .78rem; font-weight: 750; }
.product-image { position: relative; min-height: 235px; display: grid; place-items: center; padding: 28px; background: linear-gradient(145deg, #edf6f8, #dceff4); }
.product-image-link { width: 100%; display: grid; place-items: center; color: inherit; }
.product-image-link img { width: 100%; height: 140px; object-fit: contain; mix-blend-mode: multiply; transition: transform .2s ease; }
.product-image-link:hover img, .product-image-link:focus-visible img { transform: scale(1.025); }
.product-title-link { color: inherit; text-decoration: none; }
.product-title-link:hover, .product-title-link:focus-visible { color: var(--portal-blue); text-decoration: underline; text-underline-offset: 3px; }
.product-placeholder { width: 74%; max-width: 230px; }
.product-placeholder span { display: block; aspect-ratio: 1.55; border: 8px solid var(--portal-navy); border-bottom-width: 12px; border-radius: 10px 10px 4px 4px; background: linear-gradient(145deg, #2192ba, #07516e); box-shadow: 0 16px 28px rgba(5,47,69,.2); }
.product-placeholder i { display: block; width: 115%; height: 10px; margin-left: -7.5%; border-radius: 2px 2px 12px 12px; background: #9fb4bd; }
.availability { position: absolute; top: 15px; left: 15px; padding: 7px 10px; color: #27623a; border-radius: 999px; background: #dff4e5; font-size: .68rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.availability-order { color: #075f7f; background: #dff5fb; }
.availability-unavailable { color: #8d2828; background: #fee4e4; }
.product-description { min-height: 4.6em; margin: 0 0 16px; color: var(--portal-muted); font-size: .91rem; line-height: 1.55; }
.spec-list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.spec-list li { position: relative; padding-left: 17px; color: #41535e; font-size: .84rem; line-height: 1.4; }
.spec-list li::before { content: ""; position: absolute; top: .5em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--portal-blue); }
.price-row { display: flex; align-items: end; justify-content: space-between; gap: 14px; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--portal-line); }
.price-row small, .summary-price small { display: block; margin-bottom: 3px; color: var(--portal-muted); font-size: .7rem; font-weight: 750; text-transform: uppercase; }
.price-row strong, .summary-price strong { display: block; color: var(--portal-navy); font-size: 1.55rem; letter-spacing: -.035em; }
.computer-os-choice { display: grid; gap: 7px; margin-top: 20px; color: var(--portal-navy); font-size: .8rem; font-weight: 800; }
.computer-os-choice select, .cart-os-choice select { width: 100%; min-height: 44px; padding: 9px 36px 9px 12px; color: var(--portal-navy); border: 1px solid var(--portal-line); border-radius: 10px; outline: none; background: #fbfcfc; font: inherit; font-weight: 750; cursor: pointer; }
.computer-os-choice select:focus, .cart-os-choice select:focus { border-color: var(--portal-blue); box-shadow: 0 0 0 3px rgba(23,131,173,.11); }
.computer-os-choice small { color: var(--portal-muted); font-size: .7rem; font-weight: 650; line-height: 1.45; }
.computer-os-choice-detail { margin-top: 24px; padding: 16px; border: 1px solid #cfe7ee; border-radius: 12px; background: #eef9fb; }
.portal-button:disabled { color: #73828a; border-color: #cad6da; background: #e7edef; cursor: not-allowed; }
.how-ordering-works { margin-top: clamp(75px, 10vw, 120px); padding: clamp(34px, 5vw, 56px); border-radius: 26px; background: var(--portal-navy); color: white; }
.how-ordering-works > h2 { margin: 0 0 28px; font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -.04em; }
.how-ordering-works > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.how-ordering-works article b { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: #1e7899; }
.how-ordering-works h3 { margin: 15px 0 8px; }
.how-ordering-works article p { margin: 0; color: #bad5df; font-size: .9rem; line-height: 1.6; }
.order-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(460px, 1.15fr); align-items: start; gap: clamp(34px, 7vw, 84px); }
.order-layout-single { grid-template-columns: minmax(0, 760px); justify-content: center; }
.order-layout-single .order-summary { position: static; }
.order-summary { position: sticky; top: 30px; padding: clamp(26px, 4vw, 42px); border: 1px solid var(--portal-line); border-radius: 22px; background: white; box-shadow: 0 14px 40px rgba(5,47,69,.07); }
.order-product-image { display: grid; min-height: 190px; place-items: center; margin: -8px -8px 22px; padding: 16px; border-radius: 16px; background: linear-gradient(145deg, #edf6f8, #dceff4); }
.order-product-image img { width: 100%; height: 175px; object-fit: contain; mix-blend-mode: multiply; }
.order-summary h1 { margin: 16px 0 12px; color: var(--portal-navy); font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.05; letter-spacing: -.045em; }
.order-summary > p:not(.eyebrow) { color: var(--portal-muted); line-height: 1.6; }
.detail-availability { display: inline-flex; margin-left: 8px; padding: 6px 9px; border-radius: 999px; color: #27623a; background: #dff4e5; font-size: .68rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.detail-availability.availability-order { color: #075f7f; background: #dff5fb; }
.detail-availability.availability-unavailable { color: #8d2828; background: #fee4e4; }
.lead-time { display: block; margin-top: 9px; color: var(--portal-muted); font-size: .78rem; font-weight: 700; }
.summary-price { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--portal-line); }
.detail-cart-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.detail-cart-actions .portal-button { flex: 1 1 145px; }
.share-panel { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--portal-line); }
.share-panel h2 { margin: 0 0 12px; color: var(--portal-navy); font-size: 1rem; }
.share-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.share-button { width: 42px; min-height: 42px; display: inline-flex; align-items: center; justify-content: center; padding: 8px; color: var(--portal-navy); border: 1px solid var(--portal-line); border-radius: 11px; background: white; font: inherit; font-size: .78rem; font-weight: 800; text-decoration: none; cursor: pointer; }
.share-button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.share-button.facebook svg, .share-button.whatsapp svg { fill: currentColor; stroke: none; }
.share-glyph { display: inline-grid; width: 22px; height: 22px; place-items: center; color: currentColor; font-size: 1.12rem; font-weight: 900; line-height: 1; }
.facebook-glyph { font-family: Arial, Helvetica, sans-serif; font-size: 1.45rem; text-transform: lowercase; }
.whatsapp-glyph { font-family: Arial, Helvetica, sans-serif; font-size: .9rem; }
.share-button[hidden] { display: none; }
.share-button:hover, .share-button:focus-visible { color: white; border-color: var(--portal-blue); background: var(--portal-blue); outline: none; }
.share-button.copied { color: white; border-color: #278658; background: #278658; }
.share-button.facebook { color: #1855a0; }
.share-button.whatsapp { color: #167a46; }
.share-button.facebook:hover, .share-button.facebook:focus-visible, .share-button.whatsapp:hover, .share-button.whatsapp:focus-visible { color: white; }
.share-status { display: block; min-height: 1.25em; margin-top: 8px; color: #27623a; font-size: .76rem; font-weight: 750; }
.cart-toast { position: fixed; right: clamp(14px, 4vw, 34px); bottom: 20px; z-index: 60; display: flex; max-width: min(430px, calc(100vw - 28px)); align-items: center; gap: 16px; padding: 14px 16px; color: white; border-radius: 14px; background: var(--portal-navy); box-shadow: 0 16px 40px rgba(5,47,69,.25); opacity: 0; transform: translateY(18px); pointer-events: none; transition: opacity .18s ease, transform .18s ease; }
.cart-toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cart-toast span { line-height: 1.35; }
.cart-toast a { flex: 0 0 auto; padding: 8px 11px; color: var(--portal-navy); border-radius: 9px; background: white; text-decoration: none; font-weight: 850; }
.order-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: clamp(26px, 4vw, 42px); border-radius: 22px; background: white; box-shadow: 0 14px 40px rgba(5,47,69,.08); }
.form-heading { grid-column: 1 / -1; margin-bottom: 8px; }
.form-heading h2 { margin: 0; color: var(--portal-navy); font-size: clamp(1.7rem, 3vw, 2.35rem); letter-spacing: -.035em; }
.form-heading > p:last-child { margin: 10px 0 0; color: var(--portal-muted); line-height: 1.55; }
.order-form label { display: grid; gap: 7px; color: var(--portal-navy); font-size: .84rem; font-weight: 750; }
.order-form input, .order-form select, .order-form textarea { width: 100%; min-height: 48px; padding: 11px 13px; color: var(--portal-ink); border: 1px solid var(--portal-line); border-radius: 10px; outline: none; background: #fbfcfc; font: inherit; }
.order-form textarea { resize: vertical; }
.order-form input:focus, .order-form select:focus, .order-form textarea:focus { border-color: var(--portal-blue); box-shadow: 0 0 0 3px rgba(23,131,173,.11); }
.order-form .full { grid-column: 1 / -1; }
.order-form .honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.order-consent { display: flex !important; grid-template-columns: auto 1fr; align-items: start; }
.order-consent input { width: 17px; min-height: 17px; margin-top: 2px; }
.form-alert { min-height: 0; color: #a62929; font-size: .86rem; }
.success-message { max-width: 720px; margin: 40px auto; }
.success-message h1 { color: var(--portal-navy); font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -.045em; }
.success-message p { max-width: 550px; margin: 0 auto 24px; line-height: 1.65; }
.cart-title { max-width: 720px; margin-bottom: 36px; }
.cart-title h1 { margin: 0; color: var(--portal-navy); font-size: clamp(2.5rem, 6vw, 4.8rem); line-height: 1; letter-spacing: -.055em; }
.cart-title > p:last-child { margin: 16px 0 0; color: var(--portal-muted); line-height: 1.6; }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr); align-items: start; gap: 28px; }
.cart-panel, .cart-checkout { min-width: 0; }
.cart-item { display: grid; grid-template-columns: 82px minmax(0, 1fr) auto auto; align-items: center; gap: 15px; margin-bottom: 14px; padding: 17px; border: 1px solid var(--portal-line); border-radius: 16px; background: white; box-shadow: 0 7px 24px rgba(5,47,69,.045); }
.cart-item-art { display: grid; width: 74px; height: 62px; place-items: center; padding: 5px; border-radius: 9px; background: linear-gradient(145deg, #edf6f8, #dceff4); text-decoration: none; }
.cart-item-art img { width: 100%; height: 52px; object-fit: contain; mix-blend-mode: multiply; }
.cart-item-copy > span { color: var(--portal-blue); font-size: .65rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.cart-item-copy h2 { margin: 4px 0; color: var(--portal-navy); font-size: 1rem; line-height: 1.25; }
.cart-item-copy h2 a { color: inherit; text-decoration: none; }
.cart-item-art:hover, .cart-item-copy h2 a:hover { color: var(--portal-blue); text-decoration: underline; }
.cart-item-art:focus-visible, .cart-item-copy h2 a:focus-visible { outline: 3px solid rgba(23,131,173,.3); outline-offset: 3px; }
.cart-item-copy p { margin: 0; color: var(--portal-muted); font-size: .78rem; }
.cart-stock { display: block; margin-top: 5px; color: #075f7f; font-size: .68rem; font-weight: 800; }
.cart-stock-in_stock { color: #27623a; }
.cart-stock-unavailable { color: #8d2828; }
.cart-os-choice { display: grid; max-width: 230px; gap: 5px; margin-top: 9px; color: var(--portal-navy); font-size: .72rem; font-weight: 800; }
.cart-os-choice select { min-height: 38px; padding-top: 7px; padding-bottom: 7px; font-size: .78rem; }
.quantity-control { display: flex; align-items: center; overflow: hidden; border: 1px solid var(--portal-line); border-radius: 9px; }
.quantity-control button { width: 31px; height: 34px; padding: 0; color: var(--portal-navy); border: 0; background: #f3f7f8; font-size: 1.1rem; cursor: pointer; }
.quantity-control output { min-width: 31px; text-align: center; font-size: .82rem; font-weight: 800; }
.line-total { color: var(--portal-navy); font-size: .9rem; }
.remove-item { grid-column: 2 / -1; justify-self: start; padding: 0; color: #a33b3b; border: 0; background: none; font: inherit; font-size: .72rem; font-weight: 750; cursor: pointer; }
.cart-empty { padding: 55px 25px; text-align: center; border: 1px dashed #b8cbd2; border-radius: 18px; background: rgba(255,255,255,.7); }
.cart-empty h2 { color: var(--portal-navy); }
.cart-empty p { margin-bottom: 22px; color: var(--portal-muted); }
.cart-checkout { position: sticky; top: 20px; }
.cart-form { grid-template-columns: 1fr 1fr; }
.cart-form.cart-disabled { opacity: .56; pointer-events: none; }
.delivery-choice { display: grid; gap: 10px; margin: 3px 0; padding: 0; border: 0; }
.delivery-choice legend { margin-bottom: 8px; color: var(--portal-navy); font-size: .84rem; font-weight: 800; }
.delivery-choice label { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 10px; padding: 13px; border: 1px solid var(--portal-line); border-radius: 10px; background: #fbfcfc; cursor: pointer; }
.delivery-choice input { width: 17px; min-height: 17px; margin: 2px 0 0; }
.delivery-choice small { display: block; margin-top: 3px; color: var(--portal-muted); font-weight: 650; }
.cart-totals { display: grid; gap: 10px; margin-top: 4px; padding-top: 18px; border-top: 1px solid var(--portal-line); }
.cart-totals > div { display: flex; justify-content: space-between; gap: 15px; color: var(--portal-muted); font-size: .86rem; }
.cart-totals .grand-total { padding-top: 12px; color: var(--portal-navy); border-top: 1px solid var(--portal-line); font-size: 1rem; }
.cart-totals .grand-total strong { font-size: 1.3rem; }
.estimate-note { margin: 0; color: var(--portal-muted); font-size: .73rem; line-height: 1.55; }
@media (max-width: 900px) { .document-grid, .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) {
  .portal-kicker { display: none; }
  .portal-main { width: min(100% - 28px, 1180px); padding-top: 42px; }
  .portal-toolbar { align-items: stretch; flex-direction: column; }
  .document-grid, .product-grid { grid-template-columns: 1fr; }
  .portal-footer { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 900px) {
  .shop-hero { grid-template-columns: 1fr; }
  .laptop-hero-art { min-height: 250px; }
  .how-ordering-works > div { grid-template-columns: 1fr; gap: 25px; }
  .order-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-checkout { position: static; }
}
@media (max-width: 600px) {
  .shop-phone { display: none; }
  .product-image-link img { height: 115px; }
  .order-product-image { min-height: 165px; padding: 12px; }
  .order-product-image img { height: 145px; }
  .laptop-hero-art { min-height: 220px; }
  .laptop-base { bottom: 39px; }
  .shop-heading { align-items: start; flex-direction: column; }
  .store-controls { align-items: stretch; flex-direction: column; }
  .store-search { flex-basis: auto; }
  .sort-box { justify-content: space-between; }
  .sort-box select { flex: 1; }
  .price-row { align-items: stretch; flex-direction: column; }
  .order-form { grid-template-columns: 1fr; }
  .order-form label, .order-form .full, .form-heading { grid-column: 1; }
  .cart-item { grid-template-columns: 62px minmax(0, 1fr) auto; }
  .cart-item-art { width: 58px; }
  .cart-toast { right: 14px; bottom: 14px; left: 14px; justify-content: space-between; }
  .quantity-control { grid-column: 2; justify-self: start; }
  .line-total { grid-column: 3; grid-row: 2; }
  .remove-item { grid-column: 2 / -1; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }
