/* =========================================================
   Software Solutions Hub
   Palette: brand blue + deep navy, clear contrast hierarchy
   ========================================================= */

:root {
  --brand: #2a8ef0;
  --brand-dark: #1c74c9;
  --brand-soft: rgba(42, 142, 240, .12);
  --navy: #1e2a38;
  --navy-2: #162029;
  --ink: #1f2933;
  --ink-soft: #52606d;
  --muted: #7b8794;
  --line: #e3e8ef;
  --bg: #ffffff;
  --bg-alt: #f4f6f9;
  --bg-soft: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(30, 42, 56, .06);
  --shadow-md: 0 14px 34px rgba(30, 42, 56, .12);
  --maxw: 1170px;
  --maxw-wide: 1480px;
  --font: "Montserrat", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
.img-fluid { width: 100%; max-width: 100%; height: auto; object-fit: contain; }
a { color: inherit; text-decoration: none; }

/* heading weights — readable professional hierarchy */
h1, h2 { font-family: "Montserrat", sans-serif; font-weight: 600; line-height: 1.2; margin: 0 0 .5em; color: var(--ink); }
h3 { font-family: "Montserrat", sans-serif; font-weight: 600; line-height: 1.2; margin: 0 0 .5em; color: var(--ink); }
h4 { font-family: "Raleway", sans-serif; font-weight: 600; line-height: 1.3; margin: 0 0 .5em; color: var(--ink); }
h5, h6 { font-family: "Open Sans", sans-serif; font-weight: 600; line-height: 1.3; margin: 0 0 .5em; color: var(--ink); }
p { margin: 0 0 1em; color: var(--ink-soft); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 15px; }
.container--wide { max-width: var(--maxw-wide); padding: 0 24px; }
.featured-products .container--wide,
.new-products .container--wide,
.shop-archive .container--wide {
  --product-cols: 5;
  --product-gap: 22px;
}

.section { padding: 50px 0; }
.section--alt { background: var(--bg-alt); }
.text-center { text-align: center; }

/* ---------- Section titles ---------- */
.section-title { text-align: center; max-width: 860px; margin: 0 auto 50px; }
.section-title h3 { font-size: 32px; line-height: 1.25; font-weight: 700; margin-bottom: 15px; color: var(--ink); }
.section-title p { font-size: 16px; font-weight: 400; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 12px 26px; border-radius: 4px;
  font-weight: 500; font-size: 14px; cursor: pointer; border: 1px solid transparent;
  transition: .25s ease; text-align: center;
}
.btn--rounded { border-radius: 50px; }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); }
.btn--light { background: #fff; color: var(--brand); border-color: #fff; }
.btn--light:hover { background: var(--brand-dark); color: #fff; border-color: var(--brand-dark); }
.btn--outline { background: transparent; border-color: var(--brand); color: var(--brand); }
.btn--outline:hover { background: var(--brand); color: #fff; }
.btn--ghost { background: transparent; border: 1px solid rgba(255,255,255,.6); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--brand); }
.btn--ghost-dark {
  background: transparent;
  border: 2px solid rgba(255,255,255,.85);
  color: #fff;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 6px;
}
.btn--ghost-dark:hover { background: #fff; color: var(--navy); }
/* slider "View Details" — black, uppercase (matches live .btn-more) */
.btn--dark { background: var(--navy); border: 1px solid var(--navy); color: #fff; text-transform: uppercase; font-size: 15px; padding: 11px 22px; border-radius: 4px; letter-spacing: .02em; }
.btn--dark:hover { background: var(--navy-2); color: #fff; border-color: var(--navy-2); }
/* CTA bar button — transparent w/ blue border */
.btn--cta { background: transparent; border: 2px solid var(--brand); color: #fff; font-size: 16px; height: 52px; line-height: 48px; padding: 0 24px; border-radius: 8px; font-weight: 600; }
.btn--cta:hover { background: var(--brand); color: #fff; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); color: #fff; font-size: 13px; }
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 16px;
}
.topbar__welcome {
  flex-shrink: 0;
  color: rgba(255, 255, 255, .92);
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.topbar__nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  flex-shrink: 0;
  margin-left: auto;
}
.topbar__nav li {
  display: flex;
  align-items: center;
}
.topbar__nav li + li::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.25);
  margin: 0 12px;
}
.topbar__nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .2s ease;
}
.topbar__nav a i { font-size: 13px; opacity: .9; }
.topbar__nav-highlight { color: #ff6b6b; font-weight: 700; }
.topbar__nav a:hover .topbar__nav-highlight { color: #ff8787; }
.topbar a { color: #fff; }
.topbar a:hover { color: var(--brand); }
.topbar a:active,
.topbar a:focus { transform: none; outline: none; }
.topbar a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .55);
  outline-offset: 2px;
}

/* Header user + cart widget (CodingNull-style) */
.nav-user-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  transition: .2s ease;
}
.nav-user-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}
.nav-user-link__caret {
  font-size: 9px;
  line-height: 1;
  color: #667085;
  opacity: .85;
  margin-right: 2px;
  transition: transform .2s ease, color .2s ease;
}
.nav-user-link:hover { color: var(--brand); }
.nav-user-link:hover .nav-user-link__caret { color: var(--brand); }
.nav-user-link[aria-expanded="true"] .nav-user-link__caret {
  transform: rotate(180deg);
  color: var(--brand);
}
.nav-user-wrap { position: relative; }
.nav-user-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .14);
  z-index: 1200;
  overflow: hidden;
}
.nav-user-menu__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #fafafa;
}
.nav-user-menu__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef2f7;
  display: grid;
  place-items: center;
  color: #667085;
}
.nav-user-menu__list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}
.nav-user-menu__list a,
.nav-user-menu__logout {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  border: 0;
  background: none;
  color: var(--ink-soft);
  font-size: 14px;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.nav-user-menu__list a:hover,
.nav-user-menu__logout:hover {
  background: #f5f7fa;
  color: var(--brand);
}
.nav-user-menu__list i { width: 16px; text-align: center; color: #98a2b3; }
.nav-cart-widget {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  transition: .2s ease;
  white-space: nowrap;
}
.nav-cart-widget:hover { border-color: var(--brand); color: var(--brand); }
.nav-cart-widget__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 18px;
}
.nav-cart-widget__badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}
.nav-cart-widget__amount { color: var(--ink); font-weight: 700; }

/* Auth modal */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 20, 30, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.auth-modal.is-open { opacity: 1; visibility: visible; }
.auth-modal__dialog {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  padding: 28px 28px 22px;
  position: relative;
  transform: translateY(12px);
  transition: transform .25s ease;
}
.auth-modal.is-open .auth-modal__dialog { transform: translateY(0); }
.auth-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: none;
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}
.auth-modal__close:hover { color: var(--ink); }
.auth-modal__title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 18px;
  color: var(--navy);
}
.auth-modal__panel { display: none; }
.auth-modal__panel.is-active { display: block; }
.auth-modal__field { margin-bottom: 16px; }
.auth-modal__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.auth-modal__field label .auth-modal__hint {
  float: right;
  font-weight: 400;
  color: var(--muted);
  font-size: 12px;
}
.auth-modal__field input[type="text"],
.auth-modal__field input[type="email"],
.auth-modal__field input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
  font-size: 14px;
}
.auth-modal__field input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(40, 143, 235, .15);
}
.auth-modal__remember { font-size: 13px; font-weight: 400; }
.auth-modal__error {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 4px;
  background: #fff0f0;
  color: #c62828;
  font-size: 13px;
  display: none;
}
.auth-modal__error.is-visible { display: block; }
.auth-modal__success {
  display: none;
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #ecfdf3;
  color: #027a48;
  font-size: 13px;
}
.auth-modal__success.is-visible { display: block; }
.auth-modal__footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
}
.auth-modal__footer button {
  border: 0;
  background: none;
  color: var(--brand);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font: inherit;
}
.auth-modal__footer button:hover { text-decoration: underline; }

/* Account pages (CodingNull / WooCommerce my-account style) */
.account-page { padding: 24px 0 70px; }
.account-page__grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  background: #fff;
  border: 1px solid #e8e8e8;
}
.account-nav { border-right: 1px solid #e8e8e8; }
.account-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.account-nav__item { border-bottom: 1px solid #efefef; }
.account-nav__item a,
.account-nav__item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  border: 0;
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}
.account-nav__item.is-active a {
  font-weight: 700;
  color: #111;
}
.account-nav__item a:hover,
.account-nav__item button:hover { background: #fafafa; }
.account-nav__item i { color: #b0b0b0; font-size: 15px; }
.account-nav__item--logout { border-top: 1px solid #efefef; }
.account-page__main { padding: 0; min-height: 360px; }
.account-main-card {
  padding: 24px 28px;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}
.account-main-card__title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
}
.account-main-card p { margin: 0 0 12px; }
.account-main-card p:last-child { margin-bottom: 0; }
.account-inline-link {
  border: 0;
  background: none;
  padding: 0;
  color: var(--brand);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}
.account-back-link { padding: 16px 28px 0; margin: 0; }
.account-back-link a { color: var(--brand); text-decoration: none; font-size: 14px; }
.account-back-link a:hover { text-decoration: underline; }
.account-orders-wrap { padding: 0; }
.account-orders-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.account-orders-table th,
.account-orders-table td {
  padding: 14px 18px;
  border-top: 1px solid #eee;
  text-align: left;
  font-size: 14px;
  vertical-align: middle;
}
.account-orders-table thead th {
  border-top: 0;
  background: #f7f7f7;
  color: #333;
  font-weight: 600;
  font-size: 14px;
}
.account-orders-table tbody tr:first-child td { border-top: 1px solid #eee; }
.account-order-num {
  color: #17a2c7;
  font-weight: 600;
  text-decoration: none;
}
.account-order-num:hover { text-decoration: underline; }
.btn--view-order {
  display: inline-block;
  padding: 8px 18px;
  border: 0;
  border-radius: 3px;
  background: #ff6a2b;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.btn--view-order:hover { background: #e85a1f; color: #fff; }
.btn--view-order--outline {
  background: #fff;
  color: #ff6a2b !important;
  border: 1px solid #ff6a2b;
}
.btn--view-order--outline:hover { background: #fff5f0; }
.btn--view-order--muted { opacity: 0.85; }
.account-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.account-download-hide-form { margin: 0; }
.btn--remove-download {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  color: #555 !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.btn--remove-download:hover { background: #f5f5f5; color: #333 !important; }
.account-guest-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 920px;
  margin: 0 auto;
  padding: 10px 0 20px;
}
.account-guest-panel__title {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 700;
  color: #222;
}
.account-inline-form__field { margin-bottom: 16px; }
.account-inline-form__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.account-inline-form__field input,
.account-inline-form__field select,
.account-inline-form__field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font: inherit;
  font-size: 14px;
}
.account-inline-form__field input:focus,
.account-inline-form__field select:focus,
.account-inline-form__field textarea:focus {
  outline: none;
  border-color: var(--brand);
}
.account-inline-form__hint {
  float: right;
  font-weight: 400;
  color: #888;
  font-size: 12px;
}
.account-inline-form__lost { margin: 0 0 12px; font-size: 13px; }
.account-inline-form__lost a { color: var(--brand); }
.account-inline-form__remember {
  display: block;
  margin-bottom: 16px;
  font-size: 13px;
  color: #555;
}
.account-inline-form__submit { min-width: 120px; }
.account-inline-form--wide { max-width: 520px; }
.account-inline-msg {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 13px;
}
.account-inline-msg[hidden] { display: none !important; }
.account-inline-msg--error { background: #fff0f0; color: #c62828; }
.account-inline-msg--error.is-visible,
.account-inline-msg--error:not([hidden]) { display: block; }
.account-inline-msg--success { background: #ecfdf3; color: #027a48; }
.account-notice {
  padding: 10px 12px;
  border-radius: 4px;
  background: #ecfdf3;
  color: #027a48;
  margin-bottom: 16px;
}
.account-fund-panel {
  padding: 24px 28px;
}
.account-fund-balance {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}
.account-fund-balance strong { color: #222; }
.account-fund-notice {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #f5f5f5;
  border: 1px solid #ececec;
  border-radius: 3px;
}
.account-fund-notice__icon {
  flex: 0 0 auto;
  font-size: 22px;
  color: #ff6a2b;
}
.account-fund-notice__text {
  flex: 1 1 auto;
  font-size: 14px;
  color: #444;
}
.account-fund-notice__btn {
  flex: 0 0 auto;
  white-space: nowrap;
}
.account-fund-add label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.account-fund-add__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 420px;
}
.account-fund-add__row input {
  flex: 1 1 160px;
  min-width: 140px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font: inherit;
}
@media (max-width: 600px) {
  .account-fund-notice {
    flex-direction: column;
    align-items: flex-start;
  }
  .account-fund-notice__btn { width: 100%; text-align: center; }
}
.account-downloads-panel { padding: 24px 28px; }
.account-downloads-empty {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff8e5;
  border: 1px solid #f0e6c8;
  border-radius: 3px;
}
.account-downloads-empty__icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ff6a2b;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}
.account-downloads-empty__text {
  flex: 1 1 auto;
  font-size: 14px;
  color: #8a6d3b;
}
.btn--browse-products {
  flex: 0 0 auto;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 3px;
  background: #ff6a2b;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.btn--browse-products:hover { background: #e85a1f; color: #fff; }
@media (max-width: 700px) {
  .account-downloads-empty {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn--browse-products { width: 100%; text-align: center; }
}
.account-addresses-panel { padding: 24px 28px; }
.account-addresses-intro {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}
.account-addresses-intro a { color: #17a2c7; text-decoration: none; }
.account-addresses-intro a:hover { text-decoration: underline; }
.account-addresses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.account-addresses-subtitle {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
}
.account-addresses-display {
  margin: 0 0 14px;
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}
.account-addresses-empty {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}
.account-addresses-link {
  color: #17a2c7;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.account-addresses-link:hover { text-decoration: underline; }
@media (max-width: 700px) {
  .account-addresses-grid { grid-template-columns: 1fr; gap: 28px; }
}
.account-details-panel { padding: 24px 28px; }
.account-details-form { max-width: 760px; }
.account-details-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.account-details-form__hint {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #777;
}
.account-details-form .req { color: #e53935; }
.account-details-form__password {
  margin: 24px 0;
  padding: 0;
  border: 0;
}
.account-details-form__password legend {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
}
.btn--save-changes {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 22px;
  border: 0;
  border-radius: 3px;
  background: #ff6a2b;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
}
.btn--save-changes:hover { background: #e85a1f; }
@media (max-width: 700px) {
  .account-details-form__row { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .account-page__grid { grid-template-columns: 1fr; }
  .account-nav { border-right: 0; border-bottom: 1px solid #e8e8e8; }
  .account-guest-panel { grid-template-columns: 1fr; gap: 32px; }
}

.account-dashboard { max-width: 900px; margin: 0 auto; }
.account-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}
.account-card h3 { margin-top: 0; }
.account-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.account-link-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: .2s ease;
}
.account-link-card i { font-size: 24px; color: var(--brand); }
.account-link-card span { font-weight: 600; color: var(--navy); }
.account-link-card small { color: var(--muted); font-size: 12px; }
.account-link-card:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.account-guest { text-align: center; max-width: 520px; margin: 0 auto; }
.account-guest__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.account-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.account-form h3 { margin-top: 0; }
.account-form__hint { font-size: 13px; margin-bottom: 18px; }
.account-info-box {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 24px;
}
.account-info-box h3 { margin-top: 0; }
.account-info-box ul { margin: 0; padding-left: 18px; }
.account-info-box li { margin-bottom: 8px; font-size: 14px; color: var(--ink-soft); }
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.status-badge--pending, .status-badge--open { background: #fff3e0; color: #e65100; }
.status-badge--approved, .status-badge--closed { background: #e8f5e9; color: #2e7d32; }

/* Awesome Support / CodingNull ticket pages */
.account-page__main .wpas { padding: 24px 28px; }
.account-ticket-notice { margin: 24px 28px 0; }
.wpas-ticket-buttons-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.wpas-ticket-buttons-top .wpas-link-logout { margin-left: auto; }
.wpas-submit-ticket .wpas-link-ticketnew,
.wpas-ticket-list .wpas-link-ticketlist { display: none; }
.wpas-btn {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.wpas-btn:hover { background: #f5f5f5; border-color: #bbb; }
.wpas-btn-primary,
.wpas-btn.wpas-btn-primary {
  background: #ff4e0c;
  border-color: #ff4e0c;
  color: #fff;
  box-shadow: 0 6px 19px rgba(255, 78, 12, 0.2);
}
.wpas-btn-primary:hover { background: #e6450a; border-color: #e6450a; color: #fff; }
.wpas-btn-sm { padding: 5px 12px; font-size: 12px; }
.wpas-form-group { margin-bottom: 18px; }
.wpas-form-group > label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
}
.wpas-form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  font: inherit;
  color: #333;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.wpas-form-control:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 2px rgba(40, 143, 235, 0.15);
}
textarea.wpas-form-control { min-height: 180px; resize: vertical; }
#wpas_ticketlist_filter { max-width: 320px; margin-bottom: 18px; }
#wpas_ticketlist_filter label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
}
.wpas-table-responsive { overflow-x: auto; }
.wpas-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.wpas-table th,
.wpas-table td {
  padding: 10px 12px;
  border-top: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}
.wpas-table thead th {
  border-top: 0;
  border-bottom: 1px solid #ddd;
  font-weight: 700;
  color: #333;
}
.wpas-label {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.wpas-label-open, .wpas-label-pending { background: #ff9800; }
.wpas-label-closed { background: #4caf50; }
.wpas-alert {
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 18px;
  font-size: 14px;
}
.wpas-alert-success { background: #ecfdf3; border: 1px solid #b7ebc6; color: #027a48; }
.wpas-alert-danger { background: #fff0f0; border: 1px solid #ffcdd2; color: #c62828; }
.wpas-alert-info { background: #eef6ff; border: 1px solid #c9dff9; color: #1a5fb4; }
.wpas-empty { color: var(--muted); margin: 0 0 16px; }
.wpas-ticket-details-title { margin: 0 0 8px; font-size: 22px; }
.wpas-ticket-details-meta { margin: 0 0 20px; color: var(--muted); font-size: 14px; }
.wpas-ticket-replies > tbody > tr > td { padding: 20px 0; border-bottom: 1px solid #ddd; vertical-align: top; }
.wpas-ticket-replies .col1 { width: 90px; }
.wpas-ticket-replies .col2 { width: 100%; }
.wpas-ticket-replies .wpas_user_administrator > td { background: #f5f5f5; }
.wpas-user-profile img {
  width: 64px;
  height: 64px;
  border-radius: 5px;
  object-fit: cover;
  background: #f0f0f0;
}
.wpas-reply-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
}
.wpas-reply-content { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.wpas-reply-content p:first-child { margin-top: 0; }
.wpas-reply-content p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .wpas-ticket-buttons-top .wpas-link-logout { margin-left: 0; width: 100%; }
  .account-page__main .wpas { padding: 20px 16px; }
  .wpas-table td:nth-child(n+4),
  .wpas-table th:nth-child(n+4) { display: none; }
}
.shop-alert--err { background: #fff0f0; border-color: #ffcdd2; color: #c62828; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(30, 42, 56, .04);
  transform: translateZ(0);
  backface-visibility: hidden;
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 90px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 22px; color: var(--navy); }
.brand .brand__mark {
  width: 46px; height: 46px; border-radius: 8px; background: var(--brand);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 22px;
}
.brand b { color: var(--brand); font-weight: 800; }
.brand small { display: block; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.brand__logo { height: 62px; width: auto; max-width: 220px; display: block; object-fit: contain; }
@media (max-width: 767px) { .brand__logo { height: 48px; max-width: 160px; } }

.menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.menu > li { position: relative; }
.menu > li > a {
  display: inline-flex; align-items: center; gap: 6px; padding: 14px 16px;
  font-weight: 600; font-size: 14.5px; color: var(--ink); text-transform: none;
  transition: color .2s ease;
}
.menu > li > a:hover, .menu > li.active > a { color: var(--brand); }
.menu > li > a:active,
.menu > li > a:focus {
  transform: none;
  outline: none;
}
.menu > li > a:focus-visible {
  outline: 2px solid rgba(40, 143, 235, .45);
  outline-offset: 2px;
}
.menu > li > a .fa-home { font-size: 22px; line-height: 1; }
.menu .caret { font-size: 9px; opacity: .7; }

/* dropdown */
.submenu {
  position: absolute; top: 100%; left: 0;
  background: #f0f2f5;
  min-width: 220px; max-width: 260px;
  box-shadow: var(--shadow-md);
  padding: 6px;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s;
  border-top: 2px solid var(--brand);
}
.menu > li:hover > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li { margin: 0; padding: 0; }
.submenu li + li { margin-top: 4px; }
.submenu li a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--ink);
  background: #e4e8ed;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}
.submenu li a:hover { background: #d8dee6; color: var(--brand); }
.submenu--right { left: auto; right: 0; }

/* mega menu */
.mega {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  width: 760px; background: #fff; box-shadow: var(--shadow-md); border-top: 2px solid var(--brand);
  padding: 26px 30px; opacity: 0; visibility: hidden; transition: .2s;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.menu > li:hover > .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--navy); font-weight: 700; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.mega ul { list-style: none; margin: 0; padding: 0; }
.mega ul li a { display: block; padding: 6px 0; font-size: 13.5px; color: var(--ink-soft); }
.mega ul li a:hover { color: var(--brand); padding-left: 5px; }

.nav__right { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 24px; height: 2px; background: var(--navy); position: relative;
}
.nav-toggle span { margin: 0 auto; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #2490f5 0%, #1f7fe0 55%, #1a73cc 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}
.slider { position: relative; }
.slides { position: relative; height: 400px; }
.slide {
  position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 30px;
  opacity: 0; visibility: hidden; transition: opacity .8s ease; height: 400px;
  pointer-events: none;
}
.slide.active { opacity: 1; visibility: visible; pointer-events: auto; }
.slide__media { display: grid; place-items: center; height: 400px; }
.slide__media img { max-height: 340px; width: auto; max-width: 100%; height: auto; object-fit: contain; }
.slide__media--product img {
  max-height: 300px;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
  background: #fff;
}
.slide__body h1 { color: #fff; font-size: 48px; font-weight: 800; margin: 0; line-height: 1.1; text-transform: capitalize; font-family: var(--font); }
.slide__body h2 { color: #fff; font-size: 34px; font-weight: 800; margin: 0 0 16px; font-family: var(--font); }
.slide__body .slide__title {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.25;
  text-transform: none;
  font-family: var(--font);
  max-width: 420px;
  text-shadow: 0 1px 2px rgba(15, 40, 70, .12);
}
.slide__body p {
  color: rgba(255, 255, 255, .92);
  font-size: 15.5px;
  font-weight: 400;
  max-width: 470px;
  margin-bottom: 24px;
  line-height: 1.65;
}
.slider__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; pointer-events: none; padding: 0 6px; }
.slider__nav button {
  pointer-events: all; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.12); color: #fff; font-size: 18px; cursor: pointer; transition: .2s;
}
.slider__nav button:hover { background: #fff; color: var(--brand); }
.slider__dots { display: flex; gap: 8px; justify-content: center; padding: 16px 0 26px; }
.slider__dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; }
.slider__dots span.active { background: #fff; }

/* ---------- CTA bar ---------- */
.cta-bar { background: var(--navy); color: #fff; padding: 28px 0; }
.cta-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cta-bar h5 { color: rgba(255, 255, 255, .94); font-size: 17px; font-weight: 500; line-height: 1.5; margin: 0; flex: 1; min-width: 280px; }

/* ---------- Feature row (What We Do) ---------- */
.features { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.feature { text-align: center; padding: 10px; cursor: pointer; }
.feature__icon { margin: 0 0 18px; line-height: 1; }
.feature__icon i { font-size: 79px; color: var(--brand); transition: .3s; }
.feature:hover .feature__icon i { color: var(--brand-dark); }
.feature h3 { font-size: 15px; font-weight: 500; color: #2d2d2d; margin: 0; line-height: 18px; }
.feature h3 a { color: var(--navy); }
.feature h3 a:hover { color: var(--brand); }

/* blue full-width section (Packages, etc.) */
.section--blue { background: var(--brand); color: #fff; padding: 72px 0; }
.section--blue .section-title h3, .section--blue .section-title p { color: #fff; }

.product-blue__text {
  max-width: 860px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, .95);
  text-align: center;
  font-size: 16px;
  line-height: 1.75;
}

.product-blue__text:last-of-type {
  margin-bottom: 0;
}

.product-cta {
  text-align: center;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.product-cta__lead {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: #fff;
  margin: 0 0 24px;
  line-height: 1.35;
}

.product-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--product-primary,
.btn--product-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 4px;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}

.btn--product-primary {
  background: #fff;
  color: var(--navy);
  border: 2px solid #fff;
  box-shadow: 0 10px 28px rgba(15, 35, 65, .18);
}

.btn--product-primary:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(15, 35, 65, .22);
}

.btn--product-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .85);
}

.btn--product-secondary:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  color: #fff;
}

@media (max-width: 560px) {
  .product-cta__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ---------- Packages buttons ---------- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.packages .btn { width: 100%; padding: 16px; font-size: 15px; }

/* ---------- Portfolio ---------- */
.filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 35px; list-style: none; padding: 0; }
.filters li { padding: 9px 18px; border-radius: 3px; cursor: pointer; font-weight: 500; font-size: 13px; background: #3a3f48; color: #fff; transition: .2s; }
.filters li.active, .filters li:hover { background: var(--brand); color: #fff; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.work {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(27, 35, 48, 0.08);
}
.work.is-hidden { display: none; }
.work__link { display: block; color: inherit; text-decoration: none; }
.work__link:hover .work__info h4 { color: var(--brand); }
.work__thumb {
  width: 100%; height: clamp(160px, 28vw, 220px); transition: transform .4s ease; position: relative;
  background-size: cover; background-position: center; background-repeat: no-repeat; background-color: var(--navy);
}
.work:hover .work__thumb { transform: scale(1.05); }
.work__info { padding: 18px; background: #f5f6f8; border: 1px solid var(--line); }
.work__info h4 { margin: 0 0 4px; font-size: 15px; font-weight: 600; color: var(--ink); }
.work__info span { font-size: 12px; color: var(--muted); }

/* ---------- Facts (blue band) ---------- */
.facts { background: var(--brand); color: #fff; padding: 60px 0; }
.facts .section-title h3 { color: #fff; }
.facts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 960px; margin: 0 auto; }
.fact { text-align: center; border: 1.5px solid rgba(255,255,255,.55); padding: 30px; min-height: 191px; display: flex; flex-direction: column; justify-content: center; }
.fact h4 { color: #fff; font-size: 23px; font-weight: 400; margin-bottom: 10px; }
.fact p { color: rgba(255,255,255,.92); font-size: 14px; margin: 0; }

/* ---------- Logos scroller ---------- */
.logos { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; align-items: center; }
.logos .logo {
  height: 90px; min-width: 145px; border: 1px solid var(--line); border-radius: 6px; background: #fff;
  display: grid; place-items: center; color: var(--muted); font-weight: 600; padding: 0 18px;
  opacity: .6; transition: .25s;
}
.logos .logo:hover { opacity: 1; color: var(--brand); border-color: var(--brand); }

/* ---------- Page banner (interior) ---------- */
.page-banner { background: var(--brand); color: #fff; padding: 55px 0; text-align: center; }
.page-banner h1 { color: #fff; font-size: 40px; font-weight: 100; margin: 0 0 6px; }
.breadcrumb { color: rgba(255,255,255,.85); font-size: 13px; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }

/* Dark "You are here" breadcrumb bar (interior pages) */
.crumb-bar { background: var(--navy); color: #fff; padding: 22px 0; }
.crumb-bar .crumb { font-size: 14px; color: rgba(255,255,255,.75); }
.crumb-bar .crumb a { color: rgba(255,255,255,.75); }
.crumb-bar .crumb a:hover { color: #fff; text-decoration: underline; }
.crumb-bar .crumb .sep { margin: 0 8px; opacity: .6; }
.crumb-bar .crumb .current { color: #fff; font-weight: 700; }

/* Centered page title block */
.page-head { text-align: center; padding: 48px 0 12px; }
.page-head h1 { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 36px; line-height: 1.15; margin: 0 0 18px; color: var(--ink); }
.page-head .page-head__intro { max-width: 820px; margin: 0 auto; font-size: 16px; color: var(--ink-soft); line-height: 1.7; }

/* Product page — side-by-side hero with screenshot */
.product-hero {
  padding: 48px 0 40px;
}

.product-hero__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.4fr) minmax(0, 0.6fr);
  gap: 36px 48px;
  align-items: center;
}

.product-hero__copy h1,
.product-hero__copy h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 12px;
}

.product-hero__tagline {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 18px;
}

.product-hero__bullets {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
}

.product-hero__bullets li {
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 8px;
  padding: 2px 0 2px 26px;
  color: var(--ink-soft);
}

.product-hero__bullets li:last-child {
  margin-bottom: 0;
}

.product-hero__bullets li::before {
  top: 3px;
}

.product-hero__cta {
  margin-top: 22px;
}

.product-hero__cta .btn {
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 13px;
  padding: 14px 26px;
  border-radius: 3px;
}

.product-hero__media {
  min-width: 0;
}

.product-hero__frame {
  background: #fff;
  border: 1px solid rgba(15, 35, 65, .08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 20px 40px rgba(15, 35, 65, .08),
    0 4px 10px rgba(15, 35, 65, .04);
}

.product-hero__frame img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .product-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-hero__bullets {
    grid-template-columns: 1fr;
  }

  .product-hero__media {
    order: -1;
  }
}

@media (max-width: 640px) {
  .product-hero {
    padding-top: 36px;
  }
}

/* Service detail page — two-column hero + blue band */
.service-hero__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 40px; align-items: center; }
.service-hero__grid--wide-media {
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1.52fr);
  gap: 24px;
  align-items: start;
}
.service-hero__grid--wide-media .service-hero__body {
  max-width: 360px;
}
.service-hero__grid--wide-media .service-hero__body h2 {
  font-size: 28px;
  margin-bottom: 14px;
}
.service-hero__grid--wide-media .service-hero__tagline {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.service-hero__grid--wide-media .product-hero__bullets {
  max-width: 100%;
}
.service-hero__grid--wide-media .product-hero__bullets li {
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 6px;
  padding: 4px 0 4px 26px;
}
.service-hero__grid--wide-media .list-check li::before {
  top: 4px;
}
.service-hero__grid--wide-media .service-hero__cta {
  margin-top: 18px;
}
.service-hero__body h2 { font-family: "Montserrat", sans-serif; font-weight: 100; font-size: 34px; line-height: 1.2; color: #8a9099; margin: 0 0 24px; }
.service-hero__body p { font-size: 15px; color: var(--ink-soft); margin: 0 0 18px; }
.service-hero__tagline { font-size: 17px; color: var(--ink); font-weight: 500; margin-bottom: 18px; }
.product-hero__bullets {
  margin: 0 0 8px;
  padding: 0;
  max-width: 520px;
}
.product-hero__bullets li {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 10px;
  color: var(--ink-soft);
}
.service-hero__cta { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.service-hero__cta .btn { text-transform: uppercase; letter-spacing: .03em; font-size: 13px; padding: 14px 26px; border-radius: 3px; }
.service-hero__media img { display: block; width: 100%; max-width: 460px; height: auto; margin: 0 auto; }
.service-hero__media--shot { max-width: none; width: 100%; }
.service-hero__media--shot .product-shot { max-width: 100%; width: 100%; }
.service-blue { background: var(--brand); color: #fff; padding: 55px 0; }
.service-blue p { color: rgba(255,255,255,.95); font-size: 15px; line-height: 1.8; margin: 0 0 18px; }
.service-blue p:last-child { margin-bottom: 0; }
@media (max-width: 860px) {
  .service-hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .service-hero__media { order: -1; }
}

/* Product page — screenshot frame, highlights, modules */
.product-shot {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.product-shot--hero img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.product-shot__bar {
  display: flex;
  gap: 7px;
  padding: 12px 14px;
  background: #f3f5f8;
  border-bottom: 1px solid var(--line);
}

.product-shot__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d5dbe3;
}

.product-shot img {
  display: block;
  width: 100%;
}

.product-highlights {
  padding-top: 0;
  margin-top: -10px;
}

.product-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-highlights__item {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 16px;
  text-align: center;
}

.product-highlights__label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 8px;
}

.product-highlights__item strong {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: var(--navy);
}

.product-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-modules__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
}

.product-modules__icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.product-modules__card h3,
.product-modules__card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--navy);
}

.product-modules__card p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.product-strip-cta {
  padding-top: 36px;
  text-align: center;
}

.product-strip-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--product-strip,
.btn--product-strip-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 36px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 4px;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s, transform .2s;
}

.btn--product-strip {
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand);
  box-shadow: 0 10px 28px rgba(40, 143, 235, .35);
}

.btn--product-strip:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(40, 143, 235, .4);
}

.btn--product-strip-outline {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--product-strip-outline:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

@media (max-width: 560px) {
  .product-strip-cta__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }
}

.work__thumb--photo {
  background-size: cover;
  background-position: left top;
}

@media (max-width: 992px) {
  .product-highlights__grid,
  .product-modules {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .product-highlights__grid,
  .product-modules {
    grid-template-columns: 1fr;
  }
}

/* About — core values + team */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 30px; max-width: 640px; }
.team-carousel { overflow: hidden; }
.team-track { display: flex; transition: transform .45s ease; }
.team-slide { flex: 0 0 100%; min-width: 100%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-content: start; }
.team-dots { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.team-dots span { width: 11px; height: 11px; border-radius: 50%; background: #cfd3d9; cursor: pointer; transition: .2s; }
.team-dots span.active { background: var(--brand); }
.team { text-align: left; }
.team__avatar { width: 100%; aspect-ratio: 1 / 1; margin: 0 0 16px; background: #cfcfcf; overflow: hidden; }
.team__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team h4 { margin: 0 0 3px; font-size: 16px; font-weight: 600; color: var(--ink); }
.team__role { display: block; font-size: 13px; color: var(--brand); margin-bottom: 14px; }
.team__social a { display: inline-grid; place-items: center; width: 26px; height: 26px; margin-right: 3px; color: #fff; font-size: 13px; transition: .2s; }
.team__social a.tw { background: #55acee; }
.team__social a.gp { background: #dd4b39; }
.team__social a.li { background: #0077b5; }
.team__social a:hover { opacity: .85; }
@media (max-width: 860px) {
  .team-slide { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .team-slide { grid-template-columns: 1fr; }
}

/* ---------- Split / cards (interior) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split__media img { width: 100%; max-width: 420px; height: auto; margin: 0 auto; object-fit: contain; }
.split__art { height: 360px; border-radius: 10px; display: grid; place-items: center; color: #fff; font-weight: 600; font-size: 22px; text-align: center; padding: 20px; }
.list-check { list-style: none; padding: 0; margin: 16px 0 0; }
.list-check li { position: relative; padding: 7px 0 7px 30px; color: var(--ink-soft); }
.list-check li::before { content: "\2714"; position: absolute; left: 0; top: 7px; color: var(--brand); font-weight: 700; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { display: block; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 30px 26px; transition: .25s; text-align: center; color: inherit; text-decoration: none; box-shadow: var(--shadow-sm); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: #d7e0ea; }
.card:hover h3 { color: var(--brand); }
.card .card__icon { width: 70px; height: 70px; margin: 0 auto 16px; border-radius: 50%; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; font-size: 28px; }
.card h3 { font-size: 18px; font-weight: 600; color: var(--ink); }
.card p { font-size: 14px; margin: 0; color: var(--ink-soft); }

/* ---------- Pricing cards ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 34px 28px; display: flex; flex-direction: column; text-align: center; box-shadow: var(--shadow-sm); }
.price--featured { border: 2px solid var(--brand); box-shadow: var(--shadow-md); }
.price h3 { font-size: 19px; font-weight: 600; color: var(--ink); }
.price__tag { font-size: 40px; font-weight: 700; color: var(--brand); margin: 10px 0; }
.price__tag small { font-size: 14px; color: var(--muted); }
.price ul { list-style: none; padding: 0; margin: 16px 0 24px; flex: 1; text-align: left; }
.price ul li { padding: 8px 0; border-bottom: 1px dashed var(--line); color: var(--ink-soft); font-size: 14px; }
.price ul li::before { content: "\2714"; color: var(--brand); margin-right: 9px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.info-card { display: flex; gap: 15px; margin-bottom: 24px; }
.info-card__icon { width: 48px; height: 48px; border-radius: 50%; flex: none; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; font-size: 19px; }
.info-card h4 { margin: 0 0 4px; font-size: 16px; font-weight: 600; }
.info-card p { margin: 0; font-size: 14px; }
.form { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 32px; box-shadow: var(--shadow-sm); }
.form .field { margin-bottom: 16px; }
.form label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--ink); }
.form input, .form textarea, .form select { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px; font-family: inherit; font-size: 14px; background: var(--bg-soft); color: var(--ink); }
.form input:focus, .form textarea:focus, .form select:focus { outline: 2px solid rgba(42,142,240,.28); border-color: var(--brand); background: #fff; }
.field--invalid input, .field--invalid textarea, .field--invalid select { border-color: #b3261e; background: #fff8f7; }
.field--invalid input:focus, .field--invalid textarea:focus, .field--invalid select:focus { outline-color: rgba(179,38,30,.25); border-color: #b3261e; }
.field-error { font-size: 13px; color: #b3261e; margin: 6px 0 0; }
.form .req { color: #b3261e; font-weight: 700; }
.form-note--counter { margin-top: 6px; margin-bottom: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--muted); }
.form-success { display: none; background: #e9f8ee; color: #1d7a3e; border: 1px solid #b7e4c6; padding: 12px 16px; border-radius: 6px; margin-bottom: 16px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #f3f6f9; padding: 70px 0 0; }
.footer h3 { color: #fff; font-size: 17px; font-weight: 600; margin-bottom: 18px; letter-spacing: .01em; }
.footer p { color: #c5ced8; font-size: 14px; }
.footer a { color: #d0d7e0; font-size: 14px; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr; gap: 30px; }
.footer ul { list-style: none; padding: 0; margin: 0 0 20px; }
.footer ul li { padding: 4px 0; }
.footer .social-row { display: flex; gap: 8px; margin-top: 6px; }
.footer .social-row a { width: 36px; height: 36px; border-radius: 4px; background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; }
.footer .social-row a:hover { background: var(--brand); color: #fff; }
.footer__copy { background: var(--brand); color: #fff; margin-top: 50px; padding: 22px 0; text-align: center; font-size: 13.5px; }
.footer__copy a { color: #fff; }

/* ---------- Cookie bar ---------- */
/* ---------- Scroll-to-top ---------- */
.scrollup { position: fixed; right: 20px; bottom: 96px; width: 44px; height: 44px; border-radius: 4px; background: var(--navy); color: #fff; display: none; place-items: center; font-size: 20px; z-index: 150; }
.scrollup.show { display: grid; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 160;
  width: 64px; height: 64px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center; font-size: 34px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: wa-float 2.8s ease-in-out infinite;
  isolation: isolate;
}
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  pointer-events: none;
  z-index: -1;
}
.whatsapp-float i {
  position: relative;
  z-index: 1;
  animation: wa-icon-pop 2.8s ease-in-out infinite;
}
.whatsapp-float:hover {
  animation-play-state: paused;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, .6);
  color: #fff;
}
.whatsapp-float:hover::after,
.whatsapp-float:hover i { animation-play-state: paused; }
.whatsapp-float__tip {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: var(--navy); color: #fff; font-size: 12px; font-weight: 600;
  padding: 8px 12px; border-radius: 6px; white-space: nowrap;
  opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s;
  pointer-events: none;
  z-index: 2;
}
.whatsapp-float__tip::after {
  content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--navy);
}
.whatsapp-float:hover .whatsapp-float__tip { opacity: 1; visibility: visible; }

@keyframes wa-ping {
  0% { transform: scale(1); opacity: 0.75; }
  70%, 100% { transform: scale(1.9); opacity: 0; }
}
@keyframes wa-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes wa-icon-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float,
  .whatsapp-float::after,
  .whatsapp-float i { animation: none; }
}

/* Custom cursor removed */

/* ---------- Interior-page helpers ---------- */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.section-head h2 { font-size: 32px; font-weight: 100; }
.eyebrow { display: inline-block; color: var(--brand); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; margin-bottom: 10px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cta-band { background: var(--navy); color: #fff; text-align: center; padding: 54px 0; }
.cta-band h2 { color: #fff; font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.88); }
.cta-band .btn--primary { background: var(--brand); }
.cta-band .btn--primary:hover { background: var(--brand-dark); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__num { font-size: 42px; font-weight: 100; color: #fff; }
.stat__label { color: rgba(255,255,255,.8); font-size: 14px; }
.section--dark { background: var(--navy); color: #c7ced8; }
.section--dark h2, .section--dark h3 { color: #fff; }
.g1 { background: linear-gradient(135deg,#288feb,#5fb0f5); }
.g2 { background: linear-gradient(135deg,#243141,#3a4a63); }
.g3 { background: linear-gradient(135deg,#1f7ad1,#54a8f0); }
.g4 { background: linear-gradient(135deg,#2c3e91,#5a73e0); }
.g5 { background: linear-gradient(135deg,#2563a8,#4f9ae8); }
.g6 { background: linear-gradient(135deg,#1b3a5c,#3f78b0); }
@media (max-width: 991px) { .grid-4, .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .grid-4, .stats { grid-template-columns: 1fr; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .features { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .feature__icon i { font-size: 56px; }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .mega { width: 600px; grid-template-columns: repeat(2, 1fr); }
  .slides { height: auto; min-height: 360px; }
  .slide, .slide__media { height: auto; min-height: 360px; }
  .slide__body h1 { font-size: 40px; }
  .slide__body h2 { font-size: 28px; }
  .slide__body .slide__title { font-size: 26px; }
  .slide__media img { max-height: 260px; }
  .page-head h1, .page-banner h1 { font-size: 34px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .nav { height: 80px; }
}
@media (max-width: 767px) {
  .nav-toggle { display: block; }
  .menu {
    position: fixed; inset: 0 0 0 auto; width: 300px; max-width: 86vw; background: #fff;
    flex-direction: column; align-items: stretch; gap: 0; padding: 80px 16px 30px;
    transform: translateX(100%); transition: .3s; box-shadow: var(--shadow-md); overflow-y: auto; z-index: 120;
  }
  .menu.open { transform: none; }
  .menu > li > a { padding: 14px 12px; border-bottom: 1px solid var(--line); }
  .mega, .submenu { position: static; width: auto; max-width: none; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; display: none; grid-template-columns: 1fr; padding: 6px 0 6px 12px; background: transparent; }
  .submenu li + li { margin-top: 4px; }
  .submenu li a { padding: 8px 12px; font-size: 13px; }
  .menu > li.show-sub .mega, .menu > li.show-sub .submenu { display: block; }
  .menu > li.show-sub .mega { display: grid; }
  .topbar .container {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 8px;
    padding: 8px 0;
  }
  .topbar__welcome {
    text-align: center;
    white-space: normal;
    font-size: 12px;
  }
  .topbar__nav {
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 0;
    row-gap: 6px;
  }
  .hero { padding: 30px 0; }
  .slides { min-height: 0; }
  .slide { grid-template-columns: 1fr; text-align: center; min-height: 0; padding: 10px 0 20px; height: auto; }
  .slide__media { display: grid; min-height: 0; height: auto; padding: 10px 0; }
  .slide__media img { max-height: 200px; margin: 0 auto; }
  .slide__body p { max-width: none; margin-left: auto; margin-right: auto; }
  .features, .packages, .price-grid, .grid-3, .facts-grid, .split, .contact-grid, .form-row { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 20px; }
  .nav__right .nav-cart-widget__amount { display: none; }
  .nav { height: auto; min-height: 70px; padding: 8px 0; }
  .slide__body h1 { font-size: 30px; }
  .slide__body h2 { font-size: 24px; }
  .slide__body .slide__title { font-size: 22px; }
  .section-title h3 { font-size: 28px; line-height: 1.2; }
  .cta-bar .container { flex-direction: column; text-align: center; }
  .cta-bar h5 { min-width: 0; font-size: 16px; line-height: 1.5; }
  .btn--cta { width: 100%; max-width: 320px; font-size: 16px; height: auto; line-height: 1.4; padding: 14px 20px; }
  .whatsapp-float { width: 56px; height: 56px; font-size: 30px; right: 14px; bottom: 14px; }
  .scrollup { right: 14px; bottom: 82px; }
  .whatsapp-float__tip { display: none; }
  .page-head h1, .page-banner h1 { font-size: 30px; }
  .service-hero__body h2 { font-size: 28px; }
}
@media (max-width: 480px) {
  .features { grid-template-columns: 1fr; }
  .feature__icon i { font-size: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .filters li { padding: 8px 14px; font-size: 12px; }
}

/* ---------- Featured products / shop ---------- */
.section-title--featured {
  max-width: none;
  margin-bottom: 40px;
}
.section-title--featured h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0;
  padding-bottom: 18px;
  position: relative;
}
.section-title--featured h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand) 0%, #20b2aa 100%);
}
.section-title--featured h3::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  transform: translateX(-50%);
  width: min(280px, 70vw);
  height: 1px;
  background: #e4e8ed;
}
.featured-products .section-title { margin-bottom: 40px; }

/* New Products grid (CodingNull-style) */
.new-products { padding-top: 40px; }
.new-products__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.new-products__filters li {
  margin-bottom: -1px;
}
.new-products__filters button {
  display: block;
  border: 0;
  background: none;
  padding: 10px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
  user-select: none;
}
.new-products__filters button:hover { color: var(--brand); }
.new-products__filters li.active button {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.new-products__grid {
  display: grid;
  grid-template-columns: repeat(var(--product-cols), minmax(0, 1fr));
  gap: var(--product-gap);
  width: calc(100% - 116px);
  max-width: 100%;
  margin: 0 auto;
}
.new-products__grid .product-card.is-hidden,
.new-products__grid .product-card[hidden] { display: none !important; }
.new-products__empty {
  text-align: center;
  color: var(--muted);
  padding: 30px 0;
  font-size: 15px;
}
.product-card__discount {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  background: #e53935;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 2px;
  line-height: 1.2;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.product-card__cart-form { margin: 0; padding: 0; }
.featured-slider {
  display: flex;
  align-items: center;
  gap: 14px;
}
.featured-slider__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-size: 16px;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.featured-slider__arrow:hover:not(:disabled) {
  background: var(--bg-alt);
  color: var(--brand);
  border-color: var(--brand);
  transform: scale(1.05);
}
.featured-slider__arrow:disabled {
  opacity: .35;
  cursor: not-allowed;
  transform: none;
}
.featured-carousel {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.featured-track {
  display: flex;
  gap: var(--product-gap, 22px);
  transition: transform 0.45s ease;
  will-change: transform;
}
.featured-carousel .product-card {
  flex: 0 0 calc((100% - (var(--product-cols) - 1) * var(--product-gap)) / var(--product-cols));
  min-width: 0;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(var(--product-cols), minmax(0, 1fr));
  gap: var(--product-gap);
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #d5deea;
  transform: translateY(-2px);
}
.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--bg-alt);
  overflow: hidden;
}
.product-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__wish {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
  line-height: 1;
  box-shadow: var(--shadow-sm);
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.product-card__wish:hover {
  color: #ff4d2d;
  border-color: #ffc4b8;
  transform: scale(1.06);
}
.product-card__wish.is-active {
  color: #ff4d2d;
  border-color: #ff4d2d;
}
.product-card__wish.is-active .fa-heart-o::before { content: "\f004"; } /* fa-heart */
.product-card__ribbon {
  position: absolute;
  top: 16px;
  right: -36px;
  z-index: 2;
  width: 128px;
  background: #ffb300;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
  padding: 5px 0;
  transform: rotate(45deg);
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  text-transform: uppercase;
}
.product-card__body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__cat {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.product-card__body h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 16px;
  min-height: 3.9em;
  color: var(--ink);
}
.product-card__body h3 a { color: inherit; }
.product-card__body h3 a:hover { color: var(--brand); }
.product-card__hot {
  color: #e85a1f;
  margin-right: 4px;
  font-size: 13px;
  vertical-align: baseline;
}
.product-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.product-card__prices { display: flex; flex-direction: column; line-height: 1.25; }
.product-card__list {
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
}
.product-card__sale {
  font-size: 18px;
  font-weight: 700;
  color: #e04e18;
}
.product-card__cart {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ff6a2b;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: background .2s ease, transform .2s ease;
}
.product-card__cart:hover { background: #e85a1d; transform: scale(1.05); color: #fff; }
/* ---------- Marketplace storefront ---------- */
.nav-cart-count {
  display: inline-block;
  min-width: 18px;
  padding: 1px 6px;
  border-radius: 999px;
  background: #ff6a2b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  vertical-align: middle;
}
.nav-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 8px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
  transition: .2s ease;
}
.nav-cart-link:hover { border-color: var(--brand); color: var(--brand); }
.nav-cart-link .nav-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0 18px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--brand);
  font-weight: 400;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item__body { padding: 0 0 16px; }
.faq-item__body p { margin: 0; color: var(--ink-soft); line-height: 1.65; }
.faq-item__body a { color: var(--brand); text-decoration: underline; }

.legal { max-width: 820px; }
.legal__updated { color: var(--ink-soft); margin-bottom: 28px; font-size: 14px; }
.legal h2 { font-size: 22px; font-weight: 600; margin: 32px 0 12px; color: var(--navy); }
.legal p, .legal li { color: var(--ink-soft); line-height: 1.7; margin-bottom: 12px; }
.legal ul { margin: 0 0 16px 1.25em; padding: 0; }
.legal a { color: var(--brand); text-decoration: underline; }

.market-hero {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(40,143,235,.35), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255,106,43,.18), transparent 45%),
    linear-gradient(135deg, #1a2433 0%, #243141 55%, #1d2836 100%);
  color: #fff;
  padding: 64px 0 58px;
}
.market-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, .7fr);
  gap: 40px;
  align-items: center;
}
.market-hero__eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7ec4ff;
}
.market-hero h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 14px;
}
.market-hero__lead {
  color: rgba(255,255,255,.82);
  font-size: 16px;
  max-width: 540px;
  margin: 0 0 26px;
  line-height: 1.6;
}
.market-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.market-hero__stats {
  display: grid;
  gap: 14px;
}
.market-stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
}
.market-stat strong {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.market-stat span {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.cat-tile {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  color: inherit;
}
.cat-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #b9d8f7;
}
.cat-tile__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #eef6fd;
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.cat-tile h4 {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}
.cat-tile p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 12px;
  line-height: 1.45;
  min-height: 2.9em;
}
.cat-tile__count {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.how-step {
  text-align: center;
  padding: 10px 16px;
}
.how-step__num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}
.how-step h4 {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
}
.how-step p { font-size: 14px; margin: 0; color: var(--ink-soft); }

.shop-toolbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.shop-search {
  display: flex;
  gap: 10px;
  max-width: 480px;
}
.shop-search input[type="search"] {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 14px;
  font: inherit;
}
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.shop-filters a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f0f2f5;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}
.shop-filters .active a,
.shop-filters a:hover {
  background: var(--brand);
  color: #fff;
}
.shop-count {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--muted);
}

/* Shop archive (CodingNull category layout) */
.shop-archive { padding-top: 28px; padding-bottom: 50px; }
.shop-archive__title {
  font-family: var(--font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #222;
  margin: 0 0 22px;
  text-align: left;
}
.shop-archive__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e8e8e8;
}
.shop-archive__filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fff;
  color: #444;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.shop-archive__filter-btn:hover { border-color: #00a5bb; color: #00a5bb; }
.shop-archive__count {
  flex: 1 1 auto;
  margin: 0;
  font-size: 14px;
  color: #777;
  text-align: center;
}
.shop-archive__sort { margin: 0; }
.shop-archive__sort select {
  min-width: 220px;
  padding: 9px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fff;
  font: inherit;
  font-size: 14px;
  color: #444;
  cursor: pointer;
}
.shop-archive__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}
.shop-archive__layout.is-filter-open {
  grid-template-columns: 260px minmax(0, 1fr);
}
.shop-filter-panel {
  display: none;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 18px;
  height: fit-content;
  position: sticky;
  top: 110px;
}
.shop-archive__layout.is-filter-open .shop-filter-panel { display: block; }
.shop-filter-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.shop-filter-panel__head strong { font-size: 16px; color: #222; }
.shop-filter-panel__close {
  border: 0;
  background: none;
  font-size: 24px;
  line-height: 1;
  color: #999;
  cursor: pointer;
}
.shop-filter-panel__close:hover { color: #333; }
.shop-filter-panel__search {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.shop-filter-panel__search input[type="search"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font: inherit;
}
.shop-filter-panel__group h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #666;
  margin: 0 0 10px;
}
.shop-filter-panel__cats {
  list-style: none;
  margin: 0;
  padding: 0;
}
.shop-filter-panel__cats li + li { margin-top: 4px; }
.shop-filter-panel__cats a {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 3px;
  font-size: 14px;
  color: #555;
  transition: background .2s ease, color .2s ease;
}
.shop-filter-panel__cats a span { color: #999; font-size: 12px; }
.shop-filter-panel__cats li.is-active a,
.shop-filter-panel__cats a:hover {
  background: #f0fbfd;
  color: #00a5bb;
}
.shop-filter-panel__cats li.is-active a span { color: #00a5bb; }
.shop-archive__grid { margin-bottom: 30px; }
.shop-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}
.shop-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fff;
  color: #555;
  font-size: 14px;
  font-weight: 600;
}
.shop-pagination__link:hover { border-color: #00a5bb; color: #00a5bb; }
.shop-pagination__link.is-current {
  background: #00a5bb;
  border-color: #00a5bb;
  color: #fff;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .shop-archive__layout.is-filter-open { grid-template-columns: 1fr; }
  .shop-filter-panel {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 200;
    width: min(300px, 88vw);
    top: 0;
    height: 100vh;
    overflow-y: auto;
    border-radius: 0;
    box-shadow: 4px 0 24px rgba(0,0,0,.15);
  }
  .shop-archive__layout.is-filter-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 199;
  }
  .shop-archive__count { text-align: left; flex: 1 1 100%; order: 3; }
  .shop-archive__sort { width: 100%; }
  .shop-archive__sort select { width: 100%; }
}

@media (max-width: 900px) {
  .market-hero__grid { grid-template-columns: 1fr; }
  .market-hero__stats { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .how-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .market-hero__stats { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .shop-search { flex-direction: column; }
}

/* ---------- Product detail (simple buy page) ---------- */
.shop-simple { padding-top: 36px; padding-bottom: 48px; }
.shop-simple__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .95fr);
  gap: 40px;
  align-items: start;
}
.shop-simple__media {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #0f1720;
  box-shadow: var(--shadow-sm);
}
.shop-simple__media img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  display: block;
}
.shop-simple__cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.shop-simple__info h1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--ink);
}
.shop-simple__tagline {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 20px;
  line-height: 1.55;
}
.shop-simple__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin-bottom: 12px;
}
.shop-simple__sale {
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.shop-simple__list {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
}
.shop-simple__once {
  font-size: 13px;
  color: var(--muted);
  width: 100%;
}
.shop-simple__license {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 14px;
}
.shop-simple__license i { color: #16a34a; margin-right: 6px; }
.shop-simple__buy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.btn--buy-now {
  width: 100%;
  padding: 16px 22px;
  font-size: 16px;
  border-radius: 6px;
}
.shop-simple__buy .btn--outline {
  width: 100%;
  padding: 12px 22px;
  border-radius: 6px;
}
.shop-simple__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
}
.shop-simple__links a {
  color: var(--brand);
  font-weight: 500;
  font-size: 14px;
}
.shop-simple__links a:hover { text-decoration: underline; }
.shop-simple__links i { margin-right: 6px; }
.shop-simple__pay-note {
  margin: 0;
  padding: 12px 14px;
  background: #f5f7fa;
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.shop-simple__includes {
  margin-top: 48px;
  max-width: 720px;
}
.shop-simple__includes h2 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 16px;
}
.shop-alert {
  background: #fff4f0;
  border: 1px solid #ffd0c2;
  color: #9a3412;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 18px;
}
.shop-alert--ok {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}
.db-notice {
  background: #fff8f1;
  border: 1px solid #f3d2a8;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.5rem;
  color: #7a4b12;
}
.db-notice__title {
  margin: 0 0 0.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: #8a4b08;
}
.db-notice__title .fa {
  margin-right: 0.35rem;
}
.db-notice__text {
  margin: 0;
  line-height: 1.55;
  color: #6b4a22;
}
.btn--cart {
  background: #ff6a2b;
  color: #fff;
  border-color: #ff6a2b;
  font-weight: 700;
  letter-spacing: .02em;
}
.btn--cart:hover { background: #e85a1d; color: #fff; border-color: #e85a1d; }
.shop-qty {
  width: 64px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-align: center;
  font-size: 16px;
}

@media (max-width: 900px) {
  .shop-simple__grid { grid-template-columns: 1fr; gap: 28px; }
  .shop-simple__info h1 { font-size: 24px; }
  .shop-simple__sale { font-size: 30px; }
}

/* Cart & checkout */
.cart-empty { text-align: center; padding: 40px 0; }
.cart-empty__notice {
  display: inline-block;
  padding: 14px 20px;
  margin-bottom: 20px;
  background: #fff8e1;
  border: 1px solid #ffcc80;
  border-radius: 4px;
  color: #5d4037;
  font-size: 14px;
}
.cart-empty__notice i { margin-right: 8px; color: #f57c00; }
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: start;
}
.cart-table table { width: 100%; border-collapse: collapse; background: #fff; }
.cart-table th, .cart-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 10px;
  text-align: left;
  vertical-align: middle;
}
.cart-table th { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.cart-product { display: flex; align-items: center; gap: 14px; }
.cart-product img { width: 72px; height: 52px; object-fit: cover; border-radius: 4px; }
.cart-product span { display: block; font-size: 12px; color: var(--muted); }
.cart-remove {
  border: 0; background: transparent; color: var(--muted);
  font-size: 22px; cursor: pointer; line-height: 1;
}
.cart-remove:hover { color: #e53935; }
.cart-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: flex-end; margin-top: 18px;
}
.cart-summary {
  border: 1px solid var(--line); border-radius: 6px; padding: 20px; background: #fff;
}
.cart-summary h3 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.cart-summary p {
  display: flex; justify-content: space-between; margin: 0 0 10px;
  color: var(--ink);
}
.cart-summary__total { font-size: 18px; color: #e53935 !important; }
.cart-summary__checkout {
  display: block;
  width: 100%;
  margin-top: 18px;
  text-align: center;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .8fr);
  gap: 28px;
  align-items: start;
}
.checkout-page .section { padding-top: 28px; }
.checkout-login-notice {
  margin: 0 0 18px;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 14px;
  color: var(--ink-soft);
}
.checkout-login-notice a { font-weight: 700; }
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 34px;
  align-items: start;
}
.checkout-section-title {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.checkout-billing .checkout-section-title + .checkout-fields { margin-bottom: 28px; }
.checkout-lead {
  margin: -4px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.checkout-fields--lean {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checkout-fields__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
  align-items: start;
}
.checkout-field { margin: 0; }
.checkout-field--full { width: 100%; }
.checkout-field label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--ink);
}
.checkout-field .required { color: #e53935; }
.checkout-field .optional { color: var(--muted); font-weight: 400; }
.checkout-field .field-error {
  display: block;
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #e53935;
}
.checkout-field input[type="text"],
.checkout-field input[type="email"],
.checkout-field input[type="tel"],
.checkout-field input[type="password"],
.checkout-field select,
.checkout-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}
.checkout-field textarea { resize: vertical; min-height: 110px; }
.checkout-account-hint {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.account-downloads-success {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid #b7e4c7;
  background: #edf9f1;
  color: #1b4332;
  border-radius: 6px;
  font-size: 14.5px;
}

/* International phone input */
.phone-input { position: relative; width: 100%; }
.phone-input label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 14px; }
.phone-input__row {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
}
.phone-input__code-wrap { position: relative; flex: 0 0 auto; }
.phone-input__code {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  min-height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 4px 0 0 4px;
  background: #f5f7fa;
  cursor: pointer;
  font: inherit;
  white-space: nowrap;
}
.phone-input__code:hover { background: #eef2f7; }
.phone-input__flag { font-size: 1.15em; line-height: 1; }
.phone-input__dial { font-weight: 600; font-size: 14px; color: var(--text); }
.phone-input__caret { font-size: 10px; color: var(--muted); margin-left: 2px; }
.phone-input__local {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 0 4px 4px 0;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}
.phone-input__dropdown {
  position: absolute;
  z-index: 120;
  top: calc(100% + 4px);
  left: 0;
  min-width: 280px;
  max-width: min(340px, 92vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .14);
  overflow: hidden;
}
.phone-input__search {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 12px;
  font: inherit;
  background: #fafbfc;
}
.phone-input__search:focus { outline: none; background: #fff; }
.phone-input__list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  max-height: 240px;
  overflow-y: auto;
}
.phone-input__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  cursor: pointer;
  font-size: 14px;
}
.phone-input__list li:hover,
.phone-input__list li.is-selected { background: #f0f6ff; }
.phone-input__country { flex: 1 1 auto; }
.phone-input__code-label { color: var(--muted); font-weight: 600; font-size: 13px; }
.checkout-field--invalid .phone-input__code,
.checkout-field--invalid .phone-input__local,
.field--invalid .phone-input__code,
.field--invalid .phone-input__local { border-color: #b3261e; background: #fff8f7; }
.phone-input--checkout .phone-input__code,
.phone-input--checkout .phone-input__local {
  min-height: 44px;
}
.phone-input--form .phone-input__code,
.phone-input--form .phone-input__local {
  min-height: 46px;
}

.checkout-review {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  background: #fff;
  position: sticky;
  top: 20px;
}
.checkout-review-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  font-size: 14px;
}
.checkout-review-table th,
.checkout-review-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.checkout-review-table thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  font-weight: 700;
}
.checkout-review-table tbody td:last-child,
.checkout-review-table tfoot td {
  text-align: right;
  white-space: nowrap;
}
.checkout-review-table tfoot th {
  font-weight: 600;
  color: var(--ink);
}
.checkout-review-table .order-total td strong {
  font-size: 18px;
  color: #e53935;
}
.checkout-review-product {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.checkout-review-product img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.checkout-review-product .product-quantity {
  font-weight: 700;
  color: var(--muted);
}
.checkout-payment {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.checkout-pay-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.checkout-pay-item {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px;
  margin-bottom: 10px;
  background: #fff;
}
.checkout-pay-item.is-active {
  border-color: var(--brand);
  background: #f3f8fe;
}
.checkout-pay-item__head {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin: 0;
}
.checkout-pay-item__label { font-weight: 700; color: var(--ink); }
.checkout-pay-item__desc {
  margin: 8px 0 0 28px;
  font-size: 13px;
  color: var(--muted);
}
.checkout-pay-item__panel {
  margin: 12px 0 0 28px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.checkout-pay-item__panel p { margin: 0 0 8px; }
.checkout-pay-item__panel p:last-child { margin-bottom: 0; }
.checkout-privacy {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}
.checkout-place-order {
  display: block;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 700;
}
.checkout-success__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.checkout-form label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 6px; }
.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"],
.checkout-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 11px 12px;
  font: inherit;
  margin-bottom: 14px;
}
.checkout-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pay-methods { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.pay-methods__opt {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 4px; padding: 12px 14px; cursor: pointer;
}
.pay-methods__opt:has(input:checked) { border-color: var(--brand); background: #f3f8fe; }
.checkout-paybox {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
  margin: 12px 0 18px;
}
.checkout-paybox ul { margin: 10px 0; padding-left: 18px; }
.checkout-paybox--success { border-color: #b8e6c8; background: #f3fbf6; }
.checkout-alert {
  background: #fff3f3;
  border: 1px solid #f5c2c2;
  border-radius: 6px;
  color: #b42318;
  margin-bottom: 18px;
  padding: 12px 16px;
}
.checkout-summary {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px;
  background: #fff;
  position: sticky;
  top: 20px;
}
.checkout-summary ul { list-style: none; margin: 0; padding: 0; }
.checkout-summary li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px;
}
.checkout-summary__total {
  display: flex; justify-content: space-between;
  margin: 14px 0 0; font-size: 18px; color: var(--ink);
}
.checkout-success { max-width: 720px; }
.field-error { display: block; color: #e53935; font-size: 12px; margin: -8px 0 12px; }

@media (max-width: 1100px) {
  .featured-products .container--wide,
  .new-products .container--wide,
  .shop-archive .container--wide { --product-cols: 3; }
}
@media (max-width: 900px) {
  .checkout-grid,
  .cart-layout,
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-review { position: static; }
  .checkout-fields__row { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .featured-products .container--wide,
  .new-products .container--wide,
  .shop-archive .container--wide { --product-cols: 2; }
  .new-products__grid { width: 100%; }
  .cart-table { overflow-x: auto; }
  .checkout-form .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .featured-products .container--wide,
  .new-products .container--wide,
  .shop-archive .container--wide { --product-cols: 1; }
  .new-products__grid { width: 100%; }
  .new-products__filters button { padding: 8px 12px; font-size: 13px; }
  .product-card__body h3 { min-height: 0; }
}

/* ---------- Product detail page (marketplace) ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.pdp { padding: 28px 0 56px; background: #fff; }
.pdp-alert {
  background: #fff3cd;
  border: 1px solid #ffe69c;
  color: #664d03;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.pdp-breadcrumb {
  font-size: 13px;
  color: #888;
  margin-bottom: 24px;
}
.pdp-breadcrumb a { color: #666; }
.pdp-breadcrumb a:hover { color: #ff6a2b; }
.pdp-breadcrumb__sep { margin: 0 8px; color: #ccc; }
.pdp-breadcrumb__current { color: #444; }
.pdp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
}
.pdp-summary {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #eee;
  align-items: start;
}
.pdp-gallery {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  align-self: start;
}
.pdp-gallery__zoom {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #111;
  cursor: zoom-in;
  line-height: 0;
}
.pdp-gallery__zoom img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  transition: transform .25s ease, opacity .25s ease;
}
.pdp-gallery__zoom:hover img { opacity: .92; transform: scale(1.02); }
.pdp-gallery__hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
  pointer-events: none;
}
.pdp-gallery__thumbs {
  display: flex;
  gap: 8px;
  padding: 10px;
  background: #fafafa;
  border-top: 1px solid #e8e8e8;
  overflow-x: auto;
}
.pdp-gallery__thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 52px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  background: #111;
  cursor: pointer;
  overflow: hidden;
  opacity: .72;
  transition: opacity .2s ease, border-color .2s ease;
}
.pdp-gallery__thumb:hover { opacity: 1; }
.pdp-gallery__thumb.is-active {
  border-color: var(--accent, #e53935);
  opacity: 1;
}
.pdp-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-gallery__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: #fff;
  border-top: 1px solid #e8e8e8;
}
.pdp-gallery__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 14px;
  border: 0;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, opacity .2s ease;
}
.pdp-gallery__action--preview {
  background: #4a9fd8;
  color: #fff;
}
.pdp-gallery__action--preview:hover {
  background: #3b8ec6;
  color: #fff;
}
.pdp-gallery__action--preview.is-unavailable {
  background: #a8c9e0;
  color: #fff;
  cursor: not-allowed;
  opacity: .85;
}
.pdp-gallery__action--screenshots {
  background: #9e9e9e;
  color: #fff;
}
.pdp-gallery__action--screenshots:hover {
  background: #868686;
  color: #fff;
}
.pdp-gallery__action i {
  font-size: 12px;
  opacity: .95;
}
.pdp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 14, 22, .88);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.pdp-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.pdp-lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  opacity: .85;
}
.pdp-lightbox__close:hover { opacity: 1; }
.pdp-lightbox__inner {
  width: min(1200px, 96vw);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.pdp-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background .2s ease;
}
.pdp-lightbox__nav:hover { background: rgba(255, 255, 255, .28); }
.pdp-lightbox__nav--prev { left: 16px; }
.pdp-lightbox__nav--next { right: 16px; }
.pdp-lightbox__stage {
  max-width: 100%;
  max-height: calc(92vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-lightbox__stage img {
  max-width: 100%;
  max-height: calc(92vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}
.pdp-lightbox__meta {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  text-align: center;
  max-width: 90%;
}
.pdp-lightbox__thumbs {
  display: flex;
  gap: 8px;
  max-width: 100%;
  overflow-x: auto;
  padding: 4px 2px 2px;
}
.pdp-lightbox__thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 46px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
  overflow: hidden;
  opacity: .7;
  transition: opacity .2s ease, border-color .2s ease;
}
.pdp-lightbox__thumb:hover { opacity: 1; }
.pdp-lightbox__thumb.is-active {
  border-color: #fff;
  opacity: 1;
}
.pdp-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-buybox h1,
.pdp-buybox__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  color: #222;
}
.pdp-buybox__section {
  margin-bottom: 18px;
}
.pdp-buybox__section--pricing {
  margin-bottom: 16px;
}
.pdp-buybox__label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #888;
}
.pdp-wishlist {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: none;
  color: #888;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 14px;
}
.pdp-wishlist:hover,
.pdp-wishlist.is-active { color: #ff4d2d; }
.pdp-meta {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}
.pdp-meta li { margin-bottom: 4px; }
.pdp-meta i { width: 18px; color: #aaa; }
.pdp-meta a { color: #ff6a2b; }
.pdp-meta a:hover { text-decoration: underline; }
.pdp-highlights {
  margin: 0;
  padding-left: 20px;
  list-style: decimal;
}
.pdp-highlights li {
  margin-bottom: 8px;
  padding-left: 4px;
  font-size: 14px;
  line-height: 1.55;
  color: #444;
}
.pdp-highlights li:last-child { margin-bottom: 0; }
.pdp-buybox__section--purchase {
  margin-bottom: 16px;
}
.pdp-purchase-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}
.pdp-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
}
.pdp-price__sale {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}
.pdp-price__list {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
}
.pdp-cart-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
}
.pdp-qty input {
  width: 48px;
  height: 36px;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 4px 0 0 4px;
  text-align: center;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
}
.btn--pdp-cart {
  flex: 0 0 auto;
  background: #ff6a2b;
  color: #fff;
  border: 0;
  border-radius: 0 4px 4px 0;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .02em;
  padding: 0 14px;
  height: 36px;
  line-height: 36px;
  cursor: pointer;
  transition: background .2s ease;
  white-space: nowrap;
}
.btn--pdp-cart:hover { background: #e85a1d; color: #fff; }
.pdp-categories {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.pdp-tabs { margin-bottom: 36px; }
.pdp-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 0;
}
.pdp-tabs__btn {
  border: 0;
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: .2s ease;
}
.pdp-tabs__btn.is-active {
  background: #fff;
  color: #222;
  border-bottom-color: #20b2aa;
}
.pdp-tabs__panel {
  display: none;
  padding: 24px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: #555;
}
.pdp-tabs__panel.is-active { display: block; }
.pdp-tabs__panel h3 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin: 20px 0 10px;
}
.pdp-tabs__panel ul {
  margin: 0 0 16px;
  padding-left: 20px;
}
.pdp-tabs__panel li { margin-bottom: 6px; }
.pdp-video { max-width: 900px; }
.pdp-video__frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #111;
  border-radius: 6px;
  overflow: hidden;
}
.pdp-video__iframe,
.pdp-video__player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.pdp-video__player { object-fit: contain; background: #000; }
.pdp-video__empty { color: #888; margin: 0; }
.pdp-specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pdp-specs th,
.pdp-specs td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
}
.pdp-specs th {
  width: 160px;
  color: #888;
  font-weight: 600;
}
.pdp-related h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #222;
}
.pdp-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.pdp-related-card {
  border: 1px solid #e8e8e8;
  background: #fff;
  overflow: hidden;
}
.pdp-related-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: #f0f0f0;
  overflow: hidden;
}
.pdp-related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp-related-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #16a34a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}
.pdp-related-card__badge--hot { background: #ff4d2d; }
.pdp-related-card__price {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #ff4d2d;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
}
.pdp-related-card h3 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  padding: 12px 12px 8px;
  min-height: 3.2em;
}
.pdp-related-card h3 a { color: #333; }
.pdp-related-card h3 a:hover { color: #ff6a2b; }
.pdp-related-card__meta {
  display: flex;
  gap: 14px;
  padding: 0 12px 12px;
  font-size: 12px;
  color: #aaa;
}
.pdp-related-card__meta i { margin-right: 4px; }
.pdp-sidebar { display: flex; flex-direction: column; gap: 24px; }
.pdp-deal {
  border: 1px solid #e8e8e8;
  border-top: 3px solid #20b2aa;
  background: #fff;
}
.pdp-deal h3 {
  font-size: 15px;
  font-weight: 700;
  color: #20b2aa;
  margin: 0;
  padding: 14px 16px 10px;
}
.pdp-deal__card {
  display: block;
  padding: 0 16px 16px;
  color: inherit;
}
.pdp-deal__card img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 10px;
}
.pdp-deal__card h4 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px;
  color: #333;
}
.pdp-deal__price {
  font-size: 18px;
  font-weight: 700;
  color: #16a34a;
}
.pdp-deal__note {
  font-size: 12px;
  color: #888;
  margin: 6px 0 0;
}
.pdp-offers {
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.pdp-offers h3 {
  margin: 0;
  padding: 12px 16px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
}
.pdp-offers h3 i { color: #ffb300; margin-right: 6px; }
.pdp-offers--empty {
  padding-bottom: 16px;
}
.pdp-offers__empty-text {
  margin: 16px 16px 12px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.pdp-offers__empty-btn {
  display: inline-block;
  margin: 0 16px;
  font-size: 13px;
  padding: 8px 14px;
}
.pdp-offers__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pdp-offers__list li { border-bottom: 1px solid #f0f0f0; }
.pdp-offers__list li:last-child { border-bottom: 0; }
.pdp-offers__list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: inherit;
  transition: background .2s ease;
}
.pdp-offers__list a:hover { background: #fafafa; }
.pdp-offers__list img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  background: #f0f0f0;
}
.pdp-offers__info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.pdp-offers__title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: #333;
}
.pdp-offers__price {
  font-size: 14px;
  font-weight: 700;
  color: #288feb;
}
@media (max-width: 1100px) {
  .pdp-layout { grid-template-columns: 1fr; }
  .pdp-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 800px) {
  .pdp-summary { grid-template-columns: 1fr; }
  .pdp-related__grid { grid-template-columns: 1fr; }
  .pdp-sidebar { grid-template-columns: 1fr; }
}

