:root {
  --blue: #18a8df;
  --blue-dark: #0678a4;
  --orange: #ff6500;
  --green: #07965a;
  --ink: #17212b;
  --muted: #64717f;
  --line: #dce8ef;
  --soft: #f3f8fb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(13, 49, 66, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: min(230px, 48vw);
  height: auto;
}

.desktop-nav,
.header-actions,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.desktop-nav {
  justify-content: center;
  color: #314554;
  font-weight: 700;
}

.desktop-nav a {
  padding: 8px 4px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown button {
  padding: 8px 4px;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: none;
  min-width: 260px;
  max-height: 430px;
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
  gap: 4px;
}

.nav-dropdown-menu a,
.mobile-categories a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #314554;
  font-weight: 800;
}

.nav-dropdown-menu a:hover,
.mobile-categories a:hover {
  background: var(--soft);
  color: var(--blue-dark);
}

.phone-link {
  color: var(--blue-dark);
  font-weight: 800;
}

.quick-contact,
.social-links,
.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-icon,
.social-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-dark);
  font-size: 16px;
  font-weight: 900;
}

.contact-icon svg,
.social-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon svg path,
.social-icon svg rect,
.social-icon svg circle {
  fill: none;
}

.contact-icon:hover,
.social-icon:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.contact-icon[data-config-map][data-address-label]::after {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 50;
  display: none;
  width: max-content;
  max-width: min(300px, 82vw);
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  content: attr(data-address-label);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  transform: translateX(-50%);
  white-space: normal;
}

.contact-icon[data-config-map][data-address-label]:hover::after,
.contact-icon[data-config-map][data-address-label]:focus-visible::after {
  display: block;
}

.icon-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.icon-btn strong {
  position: absolute;
  right: -6px;
  top: -7px;
  min-width: 22px;
  height: 22px;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
}

.menu-toggle {
  display: none;
}

.mobile-panel {
  position: fixed;
  inset: 76px 12px auto 12px;
  z-index: 40;
  display: none;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-panel.open {
  display: grid;
  gap: 8px;
}

.mobile-panel a {
  padding: 12px;
  border-radius: 8px;
  font-weight: 800;
}

.mobile-categories {
  padding: 0 12px;
}

.mobile-categories summary {
  cursor: pointer;
  font-weight: 900;
  padding: 12px 0;
}

.mobile-social {
  padding: 8px 12px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.7fr);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(34px, 7vw, 86px) clamp(16px, 5vw, 72px);
  gap: clamp(28px, 6vw, 80px);
  background:
    linear-gradient(120deg, rgba(24, 168, 223, 0.12), rgba(255, 101, 0, 0.08) 55%, rgba(255, 255, 255, 0) 56%),
    var(--white);
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 10vw, 136px);
  line-height: 0.9;
  color: var(--blue);
  letter-spacing: 0;
}

.hero p {
  max-width: 720px;
  color: #314554;
  font-size: clamp(18px, 2.1vw, 25px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary {
  background: var(--orange);
  color: var(--white);
}

.btn.needs-size {
  background: var(--blue-dark);
}

.btn.ghost {
  background: var(--white);
  border-color: var(--blue);
  color: var(--blue-dark);
}

.hero-product {
  display: grid;
  place-items: center;
  min-height: 320px;
}

.hero-product img {
  width: min(420px, 78vw);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.signal-strip div {
  display: grid;
  gap: 2px;
  padding: 22px clamp(16px, 3vw, 34px);
  background: var(--soft);
}

.signal-strip strong {
  color: var(--blue-dark);
  font-size: 20px;
}

.signal-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(44px, 7vw, 90px) clamp(16px, 5vw, 72px);
}

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

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
}

.search-box {
  display: grid;
  gap: 6px;
  width: min(420px, 100%);
  color: var(--muted);
  font-weight: 800;
}

.catalog-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 260px));
  gap: 12px;
  margin: -8px 0 24px;
}

.catalog-filters label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(24, 168, 223, 0.18);
  border-color: var(--blue);
}

.catalog-panel {
  display: grid;
  gap: 16px;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 800;
}

.toolbar select {
  width: 190px;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(13, 49, 66, 0.07);
}

.product-media {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.82;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.product-media img {
  width: 84%;
  height: 84%;
  object-fit: contain;
}

.product-link {
  display: block;
}

.product-title-link:hover {
  color: var(--blue-dark);
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.product-body h3 {
  min-height: 54px;
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.product-body p {
  margin: 0;
  color: var(--muted);
}

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

.pill {
  padding: 5px 9px;
  border-radius: 999px;
  background: #eef6f9;
  color: #355668;
  font-size: 13px;
  font-weight: 800;
}

.price {
  color: var(--green);
  font-size: 19px;
  font-weight: 900;
}

.sku-line {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef6f9;
  color: #355668;
  font-size: 13px;
  font-weight: 900;
}

.size-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.size-option {
  min-width: 44px;
  min-height: 34px;
  padding: 6px 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #eef6f9;
  color: #355668;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.size-option.active {
  background: var(--orange);
  color: var(--white);
}

.size-option.unavailable {
  border-color: #e3e9ee;
  background: #f7f9fa;
  color: #9aa6af;
  cursor: not-allowed;
}

.size-option:focus {
  outline: 3px solid rgba(255, 101, 0, 0.2);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.pagination button {
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.pagination button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
  padding: clamp(34px, 6vw, 82px) clamp(16px, 5vw, 72px);
}

.product-gallery {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 14px;
}

.gallery-stage {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
}

.gallery-stage img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  cursor: zoom-in;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--blue-dark);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.gallery-nav.prev {
  left: 8px;
}

.gallery-nav.next {
  right: 8px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(62px, 1fr));
  gap: 8px;
}

.gallery-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.gallery-thumb.active {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.15);
}

.gallery-thumb img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(5, 18, 27, 0.78);
}

.gallery-lightbox.open {
  display: grid;
}

.gallery-lightbox img {
  max-width: min(980px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
}

.gallery-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-dark);
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
}

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

.product-info h1 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.back-link {
  color: var(--blue-dark);
  font-weight: 900;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: #355668;
  font-weight: 800;
}

.detail-price {
  color: var(--green);
  font-size: 30px;
  font-weight: 900;
}

.detail-sku {
  font-size: 15px;
}

.detail-size-picker {
  max-width: 720px;
}

.selected-color {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff3eb;
  color: var(--orange);
  font-weight: 900;
}

.detail-actions {
  margin-top: 8px;
  align-items: center;
}

.product-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--soft);
}

.product-sections article,
.product-description {
  background: var(--white);
}

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

.spec-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
  font-weight: 900;
}

.spec-list dd {
  margin: 0;
}

.product-description p,
.rich-text p {
  max-width: 980px;
  color: #314554;
  font-size: 18px;
}

.rich-text {
  display: grid;
  gap: 14px;
  max-width: 980px;
  color: #314554;
  line-height: 1.7;
}

.rich-text p,
.rich-text ul,
.rich-text ol {
  margin: 0;
}

.rich-text ul,
.rich-text ol {
  padding-left: 24px;
}

.rich-text li + li {
  margin-top: 6px;
}

.rich-text strong {
  color: var(--ink);
  font-weight: 900;
}

.product-short-description {
  margin-top: 4px;
}

.product-short-description p {
  font-size: 17px;
}

.legal-page {
  min-height: 62vh;
  background: #fbfdfe;
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin-top: 24px;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: #314554;
}

.legal-content h1 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.legal-content h2,
.legal-content h3 {
  margin: 16px 0 0;
  color: var(--ink);
}

.legal-content p,
.legal-content li {
  font-size: 17px;
}

.legal-content a {
  color: var(--blue-dark);
  font-weight: 800;
}

.related-products {
  display: grid;
  gap: 34px;
}

.compact-heading {
  margin-bottom: 16px;
}

.compact-heading h2 {
  font-size: clamp(26px, 3vw, 40px);
}

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

.mini-product-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(13, 49, 66, 0.07);
}

.mini-product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: contain;
  border-radius: 8px;
  background: var(--soft);
}

.mini-product-card span {
  color: #314554;
  font-weight: 900;
}

.mini-product-card strong {
  color: var(--green);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(22px, 5vw, 64px);
  background: var(--soft);
}

.split p {
  max-width: 760px;
  color: #314554;
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 30px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.guide-panel,
.mini-form {
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.testimonial,
.faq-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.testimonial p,
.faq-item p {
  color: var(--muted);
}

.faq-section {
  background: #fbfdfe;
}

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

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: clamp(22px, 5vw, 64px);
  align-items: start;
}

.mini-form,
.checkout-form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: #405260;
  font-weight: 800;
}

.cart-drawer {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  width: min(460px, 100vw);
  height: 100vh;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 0.2s ease;
  overflow: auto;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head,
.cart-row,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-items {
  display: grid;
  gap: 12px;
  padding: 14px 0;
}

.cart-row {
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-row h4 {
  margin: 0 0 4px;
}

.cart-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cart-total {
  margin: 8px 0 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}

.cart-actions {
  display: grid;
  gap: 10px;
  padding-top: 12px;
}

.cart-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.terms {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--blue-dark);
  font-weight: 800;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.terms input {
  width: 18px;
  margin-top: 3px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.form-status.is-success {
  color: var(--green);
}

.checkout-page {
  background: linear-gradient(180deg, #f7fbfd 0%, #ffffff 42%);
}

.checkout-title {
  max-width: 860px;
  margin-bottom: 26px;
}

.checkout-title h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
}

.checkout-title p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
}

.checkout-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(13, 49, 66, 0.08);
}

.checkout-main-form {
  display: grid;
  gap: 26px;
  padding: clamp(18px, 3vw, 32px);
}

.checkout-main-form section {
  display: grid;
  gap: 14px;
}

.checkout-main-form h2,
.order-summary h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.payment-methods {
  display: grid;
  gap: 10px;
}

.payment-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfe;
  cursor: pointer;
}

.payment-option:has(input:checked) {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.12);
}

.payment-option input {
  margin-top: 5px;
  accent-color: var(--orange);
}

.payment-option span {
  display: grid;
  gap: 4px;
}

.payment-option small,
.muted {
  color: var(--muted);
}

.coupon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

.coupon-apply {
  min-height: 46px;
  white-space: nowrap;
}

.checkout-submit {
  min-height: 52px;
}

.checkout-main-form.is-submitting {
  opacity: 0.78;
  pointer-events: none;
}

.order-summary {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
}

.summary-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.summary-item h3 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.25;
}

.summary-item p,
.summary-item span,
.checkout-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.checkout-price-lines {
  display: grid;
  gap: 8px;
  padding-top: 10px;
}

.checkout-price-lines div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 800;
}

.checkout-price-lines strong {
  color: var(--blue-dark);
}

.checkout-price-lines [data-discount-row] strong {
  color: var(--green);
}

.checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  font-size: 20px;
}

.checkout-total strong {
  color: var(--green);
  font-size: 28px;
}

.empty-checkout {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.payment-status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 5vw, 60px);
  background: linear-gradient(180deg, #eef7fb 0%, #ffffff 100%);
}

.payment-status-card {
  width: min(760px, 100%);
  display: grid;
  gap: 18px;
  padding: clamp(22px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.payment-status-card h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.payment-status-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.payment-status-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.payment-status-kpis div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.payment-status-kpis span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-status-kpis strong {
  color: var(--blue-dark);
  overflow-wrap: anywhere;
}

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

.hidden {
  display: none !important;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  background: rgba(12, 26, 38, 0.42);
}

.overlay.open {
  display: block;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(16px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fbfdfe;
  color: var(--muted);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .desktop-nav,
  .phone-link,
  .quick-contact {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero h1 {
    font-size: 64px;
  }

  .signal-strip,
  .split,
  .testimonial-grid,
  .contact-section,
  .product-detail,
  .product-sections,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

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

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

  .section-heading {
    display: grid;
    align-items: start;
  }

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

  .site-footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-actions,
  .contact-actions {
    display: grid;
  }

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

  .toolbar {
    display: grid;
  }

  .toolbar select {
    width: 100%;
  }

  .two-cols {
    grid-template-columns: 1fr;
  }

  .coupon-row {
    grid-template-columns: 1fr;
  }
}
