/* New UI theme inspired by Bork: clean, dark, minimal, with brass accents */
:root {
  --font-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-bg: #3a3330;
  --color-surface: #2f2926;
  --color-surface-1: #342d2a;
  --color-surface-2: #3f3632;
  --color-border: rgba(255, 222, 186, 0.18);
  --color-text: #f8f3ed;
  --color-text-muted: rgba(248, 243, 237, 0.76);
  --color-accent: #b39e8d;
  --color-accent-strong: #d2bba6;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-hard: 0 10px 30px rgba(0, 0, 0, 0.5);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --grid-gap: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-base);
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.03), transparent 30%),
              radial-gradient(circle at 80% 10%, rgba(255,255,255,0.04), transparent 28%),
              var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

/* Anchor offset fix for sticky header */
:target {
  scroll-margin-top: 80px;
}

#products,
#delivery,
#payment,
#contacts {
  scroll-margin-top: 100px;
}

.brand-strip {
  position: relative;
  background-image: linear-gradient(90deg, rgba(58,51,48,0.82) 0%, rgba(58,51,48,0.62) 40%, rgba(58,51,48,0.4) 70%, rgba(58,51,48,0.46) 100%),
                    url('../images/hed2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: clamp(140px, 18vw, 200px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
}

.brand-strip__content {
  padding: 0;
}

.brand-strip__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #f5e7c8;
  text-shadow: 0 8px 22px rgba(0,0,0,0.55), 0 2px 6px rgba(0,0,0,0.35);
}

@media (max-width: 768px) {
  .brand-strip {
    min-height: 120px;
  }
  .brand-strip__title {
    font-size: 24px;
    letter-spacing: 0.04em;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1240px, 96vw);
  margin: 0 auto;
  padding: 0 12px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(58, 51, 48, 0.9);
  border-bottom: 1px solid var(--color-border);
}

.header-shell {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 0 12px;
}

.header-topline {
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  gap: 12px;
}

.header-topline .logo-mark {
  justify-self: center;
}

.header-topline .btn-icon {
  justify-self: center;
}

.header-divider {
  height: 1px;
  width: 100%;
  background: var(--color-border);
  border-radius: 2px;
}

.nav-centered {
  justify-content: center;
  width: 100%;
  gap: 24px;
}

@media (max-width: 960px) {
  .header-shell {
    gap: 8px;
    padding: 10px 0 8px;
  }
  .header-topline {
    grid-template-columns: 46px 1fr 46px;
    gap: 8px;
  }
  .logo-mark img {
    height: 36px;
  }
  .header-contact {
    font-size: 12px;
    gap: 6px;
  }
  .btn-icon {
    width: 46px;
    height: 46px;
    padding: 2px;
  }
  .nav {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
  }
  .nav-centered {
    gap: 12px;
  }
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.logo-mark img {
  display: block;
  height: 44px;
  width: auto;
  filter: brightness(1.08) saturate(1.2) drop-shadow(0 0 14px rgba(200, 155, 74, 0.45))
          drop-shadow(0 0 32px rgba(200, 155, 74, 0.25));
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
}

.nav a:hover {
  color: var(--color-text);
}

.actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 212, 138, 0.24);
  background: rgba(47, 41, 38, 0.96);
  transition: all 0.2s ease;
  padding: 4px;
}

.btn-icon-cart {
  position: relative;
}

.btn-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.btn-icon:hover {
  border-color: rgba(255, 212, 138, 0.48);
  background: rgba(58, 50, 46, 0.98);
  transform: translateY(-2px);
}

.badge {
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  background: var(--color-accent);
  color: #2a2421;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  padding: 0 6px;
  margin-left: 6px;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  margin: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 11px;
  box-shadow: 0 0 0 2px var(--color-bg);
}

.hero {
  padding: 64px 0 40px;
  display: grid;
  gap: 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
}


.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  min-height: 420px;
  box-shadow: var(--shadow-soft);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 16px;
  display: grid;
  gap: 14px;
  align-content: end;
  padding: 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(58,51,48,0) 20%, rgba(58,51,48,0.8) 100%);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.05);
}

.hero-overlay-text {
  display: grid;
  gap: 8px;
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0;
}

.hero-card {
  grid-template-columns: 170px 1fr auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.hero-title {
  font-size: 38px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-sub {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
  color: #2a2421;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(179, 158, 141, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(179, 158, 141, 0.45);
}

.hero-aside {
  display: grid;
  gap: 16px;
}

.info-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  padding: 18px 20px;
  color: var(--color-text);
  box-shadow: var(--shadow-hard);
}

.info-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.info-value {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
}

.info-link {
  color: #c89b4a;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  font-weight: 700;
}

.info-link:hover {
  color: #ffd48a;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  margin: 12px 0 18px;
}

.products-grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  padding-bottom: 60px;
}

.product-card {
  background:
    linear-gradient(#322b28, #322b28) padding-box,
    linear-gradient(135deg, #ffd48a, #c89b4a) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: 18px;
  display: grid;
  gap: 12px;
  box-shadow: 0 0 18px rgba(200, 155, 74, 0.08), var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 22px rgba(255, 212, 138, 0.14), var(--shadow-soft);
}

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.product-title {
  font-size: 18px;
  margin: 0;
}

.product-badge {
  color: #ffd48a;
  background:
    linear-gradient(#2e2724, #2e2724) padding-box,
    linear-gradient(135deg, #ffd48a, #c89b4a) border-box;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  box-shadow: 0 0 12px rgba(255, 212, 138, 0.15);
  text-shadow: 0 0 8px rgba(255, 212, 138, 0.3);
}

.product-image {
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.08), rgba(0,0,0,0.4));
  border-radius: var(--radius-md);
  padding: 14px;
  border: 1px solid var(--color-border);
  height: 320px;
  display: grid;
  place-items: center;
}

.product-image img {
  width: 301.33px;
  height: 301.33px;
  object-fit: contain;
}

.product-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.cta-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.btn-secondary {
  flex: 1;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 12px 14px;
  background: rgba(255,255,255,0.02);
  color: var(--color-text);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  transition: border-color 0.15s ease, transform 0.15s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.btn-primary {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: none;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
  color: #2a2421;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  box-shadow: 0 10px 28px rgba(179, 158, 141, 0.35);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(179, 158, 141, 0.45);
}

.btn-primary:disabled,
.btn-primary[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
  transform: none;
  background: linear-gradient(135deg, rgba(179, 158, 141, 0.35), rgba(210, 187, 166, 0.35));
  color: rgba(42, 36, 33, 0.72);
}

.footer {
  border-top: 0;
  padding: 36px 0 32px;
  background: rgba(58, 51, 48, 0.92);
  margin-top: 32px;
  display: grid;
  gap: 22px;
}

.footer > :not(.footer-gradient-line) {
  width: min(1180px, 94vw);
  margin: 0 auto;
}

.footer-logo-section {
  display: none;
}

.footer-logo-section img {
  height: 44px;
  opacity: 0.92;
}

.footer-gradient-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(179,158,141,0) 0%, rgba(179,158,141,0.8) 50%, rgba(179,158,141,0) 100%);
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.footer-link:hover {
  color: var(--color-text);
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 32px;
  color: var(--color-text);
  font-weight: 600;
}

.footer-contact-item {
  display: flex;
  justify-content: center;
}

.footer-phone,
.footer-address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-phone::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  display: inline-block;
}

.footer-address::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  display: inline-block;
}

.footer-copyright-inline {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 13px;
}

/* Content pages */
.content-page {
  padding: 56px 0 72px;
}

.content-stack {
  display: grid;
  gap: 14px;
}

.content-card {
  background: var(--color-surface-1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.content-card h1,
.content-card h2,
.content-card h3 {
  margin: 0 0 10px;
  text-align: center;
}

.content-card h1 {
  font-size: 32px;
}

.content-card h2 {
  font-size: 22px;
}

.content-sub {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 8px;
}

.form-field {
  display: grid;
  gap: 6px;
  text-align: left;
}

.form-field span {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background:
    linear-gradient(#161514, #161514) padding-box,
    linear-gradient(135deg, #ffd48a, #c89b4a) border-box;
  color: var(--color-text);
  font-size: 15px;
  transition: box-shadow 0.18s ease, transform 0.12s ease;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 212, 138, 0.22), 0 0 18px rgba(200, 155, 74, 0.16);
  transform: translateY(-1px);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(245, 241, 236, 0.68);
}

.form-help {
  color: var(--color-text-muted);
  font-size: 13px;
}

.agreement-checkout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 16px 0 6px;
  padding: 12px 14px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.agreement-checkout input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  cursor: pointer;
  accent-color: var(--color-accent);
  flex-shrink: 0;
}

.agreement-checkout-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text);
  cursor: pointer;
}

.agreement-checkout-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

.agreement-checkout-text a:hover {
  color: #ffd48a;
}

.cart-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  text-align: left;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px;
  background: var(--color-surface-2);
  align-items: center;
}

.cart-card {
  display: grid;
  grid-template-columns: 128px 1fr auto;
  gap: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  background: var(--color-surface-2);
  align-items: center;
}

.cart-thumb {
  width: 128px;
  height: 128px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 10px;
}

.cart-thumb img {
  width: 96px;
  height: 96px;
  max-width: 96px;
  max-height: 96px;
  object-fit: contain;
  display: block;
}

.cart-price-note {
  color: var(--color-text-muted);
  font-size: 13px;
}

.cart-info {
  display: grid;
  gap: 6px;
}

.cart-info-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 2px;
}

.cart-info-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.cart-right {
  display: grid;
  gap: 6px;
  justify-items: end;
  min-width: 150px;
}

.cart-price-line {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
}

.cart-row-price,
.cart-row-sum {
  font-weight: 700;
  color: var(--color-text-muted);
}

.cart-row-left {
  display: grid;
  gap: 6px;
}

.cart-row-title {
  font-weight: 700;
}

.cart-row-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.qty-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  background: rgba(255,255,255,0.02);
}

.qty-btn {
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 18px;
  cursor: pointer;
  width: 22px;
  height: 22px;
}

.qty-box input {
  width: 50px;
  background: transparent;
  border: none;
  color: var(--color-text);
  text-align: center;
  font-weight: 600;
}

.cart-row-price,
.cart-row-sum {
  font-weight: 700;
}

.link-btn {
  background: none;
  border: none;
  color: var(--color-accent-strong);
  cursor: pointer;
  text-decoration: underline;
}

/* Chips for delivery toggle */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.chip input {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 0 0 3px rgba(0,0,0,0.35);
  position: relative;
}

.chip input:checked {
  border-color: #c89b4a;
  box-shadow: inset 0 0 0 4px rgba(0,0,0,0.25), 0 0 0 2px rgba(200,155,74,0.35);
}

.chip input:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 4px rgba(0,0,0,0.25), 0 0 0 2px rgba(200,155,74,0.55);
}

.chip:hover {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}

.cart-total-box {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
}

.cart-total-price {
  font-size: 22px;
}

.cart-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.checkout-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  text-align: left;
}

.checkout-summary-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: grid;
  gap: 12px;
  text-align: left;
  position: sticky;
  top: 12px;
}

.checkout-summary-header {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.checkout-items {
  display: grid;
  gap: 10px;
}

.checkout-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}

.checkout-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.checkout-item-thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--color-surface-1);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.checkout-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.checkout-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.checkout-item-title {
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
}

.checkout-item-qty {
  color: var(--color-text-muted);
  font-size: 14px;
}

.checkout-item-price {
  font-weight: 700;
  white-space: nowrap;
}

.checkout-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 8px;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  margin-top: 8px;
  font-size: 17px;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.checkout-total strong {
  font-size: 18px;
}

.checkout-empty {
  display: grid;
  gap: 8px;
  color: var(--color-text-muted);
}

.toast {
  position: fixed;
  bottom: 18px;
  right: 18px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 2000;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  justify-items: stretch;
}

.info-tile {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  line-height: 1.45;
  height: 100%;
  display: grid;
  align-items: start;
  box-shadow: none;
}

.info-tile strong {
  color: var(--color-text);
}

.bullet-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: bullet;
}

.bullet-list li {
  counter-increment: bullet;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  line-height: 1.55;
  color: var(--color-text);
}

.bullet-list li::before {
  content: counter(bullet);
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  color: var(--color-accent-strong);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.muted-link {
  color: var(--color-text);
  text-decoration: underline;
}

/* Legacy content helpers (offers/payment) */
.page-header {
  text-align: center;
  margin-bottom: 6px;
}

.page-title {
  margin: 0;
  font-size: 26px;
}

.page-subtitle {
  margin: 8px 0 0;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.offers-content,
.payment-content {
  display: grid;
  gap: 14px;
}

.offers-content .section,
.payment-content .payment-section,
.payment-content .returns-section,
.payment-section {
  background: linear-gradient(155deg, rgba(255,255,255,0.02), rgba(0,0,0,0.32)), var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.offers-content .section-title,
.payment-content .section-title {
  margin: 0 0 10px;
  font-size: 20px;
}

.offers-content p,
.payment-content p,
.offers-content ul,
.offers-content ol {
  color: var(--color-text-muted);
  line-height: 1.6;
}

.offers-intro {
  color: var(--color-text-muted);
  line-height: 1.6;
}

.returns-section .steps-list,
.returns-section .sub-list {
  padding-left: 18px;
}

/* Product page prototypes */
.product-page {
  padding: 48px 0 64px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.product-layout-right {
  display: grid;
  gap: 18px;
  align-content: start;
  align-items: start;
}

.product-hero {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: var(--color-surface-2);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.product-hero + .product-hero {
  margin-top: 32px;
}

.product-hero--gallery {
  padding: 22px;
  height: auto;
  width: 638.39px;
  height: 959.36px;
}

.product-hero--details {
  padding: 22px;
}

.product-hero--details .product-hero-grid {
  grid-template-columns: 1fr;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 12px;
  grid-template-rows: 1fr auto;
  height: 100%;
}

.product-gallery .buy-box {
  margin-top: 10px;
}

.product-gallery-shell {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  padding: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0;
  height: 100%;
  min-height: 0;
  align-content: stretch;
}

.product-gallery-main {
  min-height: 0;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.product-gallery-slider {
  background: rgba(12, 12, 12, 0.2);
  border-radius: var(--radius-md);
}

.product-gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.35s ease;
  will-change: transform;
}

.product-gallery-slide {
  min-width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0;
}

.product-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(12, 12, 12, 0.65);
  color: var(--color-text);
  display: grid;
  place-items: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.product-gallery-arrow:hover {
  background: rgba(12, 12, 12, 0.85);
  transform: translateY(-50%) scale(1.04);
}

.product-gallery-arrow--prev {
  left: 12px;
}

.product-gallery-arrow--next {
  right: 12px;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.product-gallery-thumbs.is-hidden {
  display: none;
}

.product-gallery-thumb {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  display: grid;
  place-items: center;
  padding: 4px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-buy {
  display: grid;
  gap: 16px;
}

.product-title {
  font-size: 32px;
  margin: 10px 0 6px;
}

.product-short {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.product-desc-paragraph {
  display: block;
  margin: 0 0 14px;
}

.product-desc-paragraph:last-child {
  margin-bottom: 0;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-page [data-feature-list] {
  display: none !important;
}

.feature-pill {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--color-text);
  background: rgba(255,255,255,0.03);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.3;
}

.feature-pill-bullet {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: #c89b4a;
}

.product-cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.product-sections {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  align-self: start;
}

.product-section {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.product-section h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.consumables-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.product-page .consumables-grid,
.product-page .consumable-card,
.product-page .consumable-title,
.product-page .consumable-text {
  display: none !important;
}

.consumable-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  display: grid;
  gap: 6px;
}

.consumable-title {
  font-weight: 600;
  color: var(--color-text);
}

.consumable-text {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.5;
  font-size: 14px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 10px;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  align-items: start;
}

.spec-row strong {
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.3;
}

.spec-row span {
  text-align: left;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.buy-box {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  background: var(--color-surface-2);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
}

.product-hero--details .buy-box {
  max-width: 360px;
  justify-self: end;
}

.buy-box.sticky {
  position: sticky;
  top: 12px;
}

.tab-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tab-btn {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  color: var(--color-text);
  cursor: pointer;
  font-size: 13px;
}

.tab-btn.is-active {
  border-color: #c89b4a;
  box-shadow: 0 0 0 2px rgba(200,155,74,0.25);
}

.tab-panel {
  display: none;
  margin-top: 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.tab-panel.is-active {
  display: block;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    font-size: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar {
    display: none;
  }
  .nav a {
    white-space: nowrap;
  }
  .product-hero-grid {
    grid-template-columns: 1fr;
  }
  .product-layout {
    grid-template-columns: 1fr;
  }
  .product-hero--gallery {
    width: 100%;
    height: auto;
  }
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .consumables-grid {
    grid-template-columns: 1fr;
  }
  .buy-box.sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0 28px;
  }
  .hero-visual {
    min-height: 300px;
  }
  .info-card {
    padding: 14px 16px;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    padding-bottom: 44px;
  }
  .product-image {
    height: 240px;
  }
  .product-image img {
    width: 220px;
    height: 220px;
  }
  .cta-line {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-secondary {
    width: 100%;
  }
  .product-page {
    padding: 36px 0 52px;
  }
  .product-hero {
    padding: 20px;
  }
  .product-gallery-main {
    min-height: 260px;
  }
  .product-gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100%, 94vw);
    padding: 0 10px;
  }
  .content-stack {
    grid-template-columns: 1fr !important;
  }
  .hero-title {
    font-size: 28px;
  }
  .section-title {
    font-size: 20px;
  }
  .product-card {
    padding: 16px;
  }
  .product-image {
    height: 220px;
  }
  .product-image img {
    width: 200px;
    height: 200px;
  }
  .content-page {
    padding: 40px 0 56px;
  }
  .content-card {
    padding: 18px 16px;
  }
  .content-card h1 {
    font-size: 26px;
  }
  .cart-row {
    flex-direction: column;
    align-items: stretch;
  }
  .cart-right {
    justify-items: start;
    min-width: 0;
  }
  .cart-price-line {
    align-items: flex-start;
  }
  .cart-row-right {
    justify-content: flex-start;
  }
  .cart-card {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .cart-thumb {
    width: 100%;
    height: 180px;
  }
  .cart-thumb img {
    width: 140px;
    height: 140px;
  }
  .checkout-summary-card {
    position: static;
  }
  .checkout-item {
    grid-template-columns: 48px 1fr;
    align-items: start;
  }
  .checkout-item-price {
    grid-column: 2;
    justify-self: end;
  }
  .footer {
    padding: 28px 0 26px;
  }
  .footer-menu,
  .footer-contacts {
    gap: 10px 14px;
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .header-topline {
    gap: 6px;
  }
  .logo-mark img {
    height: 34px;
  }
  .btn-icon {
    width: 42px;
    height: 42px;
  }
  .btn-icon img {
    width: 34px;
    height: 34px;
  }
  .product-image {
    height: 200px;
  }
  .product-image img {
    width: 180px;
    height: 180px;
  }
  .price {
    font-size: 18px;
  }
}



.catalog-page {
  padding-top: 24px;
  padding-bottom: 48px;
  overflow: visible;
  width: auto;
  margin: 0;
}

.home-catalog {
  padding-top: 12px;
}

.home-catalog .catalog-head {
  margin: 0 0 14px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--color-border);
}

.home-catalog .catalog-head .section-title {
  margin: 0;
  text-align: center;
}

.home-catalog .catalog-shell {
  display: block;
  max-width: 1240px;
  margin: 0 auto;
}

.catalog-top {
  margin-bottom: 16px;
}

.catalog-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin: 0;
  width: 100%;
}

.catalog-shell > * {
  min-width: 0;
}

.catalog-sidebar {
  padding: 18px;
  position: static;
  text-align: left;
}

.home-catalog .catalog-sidebar {
  display: grid;
  gap: 10px;
  padding: 0 0 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.catalog-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.catalog-field-search {
  margin-bottom: 0;
}

.catalog-filters-toggle {
  min-height: 42px;
  white-space: nowrap;
  padding: 10px 14px;
  justify-self: start;
}

.catalog-filters-drawer {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-1);
  padding: 12px;
}

.catalog-filters-drawer[hidden] {
  display: none;
}

.catalog-filters-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 8px;
}

.home-catalog .catalog-sidebar .catalog-field {
  margin-bottom: 0;
}

.catalog-field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.catalog-field label {
  font-size: 14px;
  color: var(--color-text-muted);
}

.catalog-field input,
.catalog-field select {
  width: 100%;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.catalog-checkline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
}

.catalog-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

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

.home-catalog .catalog-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 0;
}

.catalog-actions .btn-primary,
.catalog-actions .btn-secondary {
  flex: 1;
}

.catalog-main {
  text-align: left;
  overflow-x: hidden;
  padding: 18px;
}

.home-catalog .catalog-main.content-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.catalog-main .products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 18px;
}

.catalog-main .product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.catalog-main .product-top {
  align-items: flex-start;
  min-height: 52px;
}

.catalog-main .product-title {
  line-height: 1.3;
  min-height: calc(1.3em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-catalog .catalog-main .product-card {
  padding: 14px;
  gap: 10px;
  background: var(--color-surface-1);
  border: 1px solid var(--color-border);
  box-shadow: none;
}

.home-catalog .catalog-main .product-card:hover {
  transform: none;
  box-shadow: none;
}

.home-catalog .catalog-main .product-top {
  min-height: 60px;
}

.home-catalog .catalog-main .product-title {
  font-size: 16px;
  line-height: 1.25;
  min-height: calc(1.25em * 3);
  -webkit-line-clamp: 3;
}

.home-catalog .catalog-main .product-badge {
  font-size: 11px;
  padding: 5px 9px;
}

.home-catalog .catalog-main .product-image {
  height: 260px;
  padding: 0;
  overflow: hidden;
  display: block;
}

.home-catalog .catalog-main .product-image img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  display: block;
}

.home-catalog .catalog-main .price {
  font-size: 18px;
}

.home-catalog .catalog-main .btn-primary,
.home-catalog .catalog-main .btn-secondary {
  font-size: 13px;
  padding: 10px 12px;
}

.catalog-main .product-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.catalog-main .product-meta > div:first-child {
  flex: 1;
}

.catalog-main .cta-line {
  margin-top: 10px;
}

.catalog-main .cta-line .btn-secondary {
  width: 100%;
}

.catalog-meta {
  margin-bottom: 10px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.catalog-meta-sort {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-catalog .catalog-meta-sort {
  display: none;
}

.catalog-meta-sort label {
  font-size: 14px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.catalog-meta-sort select {
  width: auto;
  min-width: 220px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  border-radius: 10px;
  padding: 9px 12px;
  font: inherit;
}

.catalog-card-meta,
.catalog-card-desc,
.catalog-card-status-row {
  margin-top: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.catalog-card-status-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.catalog-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  padding: 4px 8px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.catalog-status--in_stock {
  background: rgba(46, 204, 113, 0.12);
  border-color: rgba(46, 204, 113, 0.35);
}

.catalog-status--preorder {
  background: rgba(241, 196, 15, 0.12);
  border-color: rgba(241, 196, 15, 0.35);
}

.catalog-status--out_of_stock,
.catalog-status--archived {
  background: rgba(231, 76, 60, 0.12);
  border-color: rgba(231, 76, 60, 0.35);
}

.catalog-stock {
  font-size: 12px;
}

.catalog-pagination {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.catalog-page-btn {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  border-radius: 10px;
  min-width: 36px;
  height: 36px;
  cursor: pointer;
}

.catalog-page-btn.is-active {
  border-color: var(--color-accent);
  color: var(--color-accent-strong);
}

@media (max-width: 900px) {
  .catalog-shell {
    grid-template-columns: 1fr;
  }
  .catalog-sidebar {
    position: static;
  }
  .catalog-filters-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .catalog-main .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .catalog-filters-toggle {
    width: 100%;
  }
  .catalog-filters-grid {
    grid-template-columns: 1fr;
  }
  .catalog-price-grid {
    grid-template-columns: 1fr;
  }
  .catalog-actions {
    flex-direction: column;
  }
  .catalog-meta {
    flex-direction: column;
    align-items: stretch;
  }
  .catalog-meta-sort {
    width: 100%;
    justify-content: space-between;
  }
  .catalog-meta-sort select {
    min-width: 0;
    width: 100%;
  }
  .catalog-main .products-grid {
    grid-template-columns: 1fr;
  }
  .home-catalog .catalog-main .product-top {
    min-height: 56px;
  }
  .home-catalog .catalog-main .product-title {
    min-height: calc(1.25em * 2);
    -webkit-line-clamp: 2;
  }
  .home-catalog .catalog-main .product-image {
    height: 220px;
  }
  .home-catalog .catalog-main .product-image img {
    width: 100% !important;
    height: 100% !important;
  }
}

.catalog-spec-filters {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  text-align: left;
  display: none;
}

.catalog-spec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.catalog-spec-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin: 0;
}

.catalog-spec-clear {
  margin: 0;
  white-space: nowrap;
  padding: 8px 12px;
}

.catalog-spec-group {
  margin-bottom: 10px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.catalog-spec-group-label {
  font-size: 13px;
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.catalog-spec-values {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.catalog-spec-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}

.catalog-spec-item:hover {
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.catalog-spec-item:has(input:checked) {
  border-color: rgba(210, 187, 166, 0.7);
  background: rgba(179, 158, 141, 0.18);
}

.catalog-spec-item input {
  margin: 0;
}

.catalog-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.catalog-filter-chip {
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  border-radius: 999px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.catalog-filter-chip:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.catalog-filter-chip-x {
  opacity: 0.8;
  font-size: 14px;
}

@media (max-width: 760px) {
  .catalog-spec-head {
    flex-direction: column;
    align-items: stretch;
  }
  .catalog-spec-clear {
    width: 100%;
  }
}

.product-breadcrumbs {
  margin-bottom: 12px;
  color: var(--color-text-muted);
  font-size: 13px;
}

.product-breadcrumbs a:hover {
  color: var(--color-text);
}

.related-products {
  margin-top: 24px;
}

.related-products h2 {
  margin: 0 0 12px;
}

.related-products .product-image {
  padding: 0;
  overflow: hidden;
  display: block;
}

.related-products .product-image img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  display: block;
}
