:root {
  --primary: #0f766e;
  --primary-dark: #0a5c56;
  --accent: #14b8a6;
  --background: #f8fafc;
  --surface: #ffffff;
  --ink: #102a2a;
  --muted: #64748b;
  --line: #e2e8f0;
  --shadow: 0 18px 45px rgba(15, 118, 110, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family: "Manrope", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.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;
}

.container {
  width: min(100% - 28px, 1280px);
  margin-inline: auto;
}

.product-header {
  position: relative;
  z-index: 50;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.announcement {
  color: #dffbf7;
  background: var(--primary-dark);
  font-size: 10px;
  font-weight: 600;
}

.announcement__inner {
  min-height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement p {
  margin: 0;
}

.announcement__inner > div {
  display: none;
  align-items: center;
  gap: 12px;
}

.announcement i {
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
}

.header-main__inner {
  min-height: 62px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
}

.brand__mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--primary));
  border-radius: 11px 11px 11px 4px;
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.2);
}

.brand__mark svg {
  width: 25px;
}

.brand__name {
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.brand__name span {
  color: var(--primary);
}

.icon-button,
.action {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #334155;
  background: var(--background);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.icon-button svg,
.action svg {
  width: 19px;
}

.header-search {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.action--account,
.action--wishlist,
.language {
  display: none;
}

.action {
  position: relative;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.action:hover {
  color: var(--primary);
  background: #f0fdfa;
  border-color: #99f6e4;
}

.action--cart > span {
  position: absolute;
  top: -7px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.language {
  position: relative;
}

.language__toggle {
  cursor: pointer;
}

.language__menu {
  position: absolute;
  z-index: 70;
  top: calc(100% + 8px);
  right: 0;
  width: 145px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: 160ms ease;
}

.language__menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language__menu button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 9px 10px;
  color: #475569;
  background: transparent;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
}

.language__menu button:hover,
.language__menu button.is-active {
  color: var(--primary);
  background: #f0fdfa;
}

.main-nav {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  border: 0;
  opacity: 0;
  transition: opacity 200ms ease;
}

.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: min(84vw, 330px);
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(-102%);
  transition: transform 220ms ease;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mobile-menu__panel > a {
  padding: 12px;
  color: #475569;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
}

.mobile-menu__panel > a:hover {
  color: var(--primary);
  background: #f0fdfa;
}

.breadcrumb {
  min-height: 53px;
  display: flex;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  color: #64748b;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.breadcrumb svg {
  width: 12px;
  flex: 0 0 12px;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  overflow: hidden;
  color: #334155;
  text-overflow: ellipsis;
}

.product-main {
  display: grid;
  gap: 18px;
}

.product-gallery,
.product-details,
.product-tabs {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(15, 118, 110, 0.07);
}

.product-gallery {
  padding: 12px;
}

.product-gallery__stage {
  position: relative;
  min-height: 350px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(20, 184, 166, 0.16), transparent 28%),
    linear-gradient(145deg, #fbfffe, #ecfdf9);
  border-radius: 14px;
}

.product-gallery__stage::after {
  position: absolute;
  left: -55px;
  bottom: -75px;
  width: 190px;
  height: 190px;
  background: rgba(15, 118, 110, 0.05);
  border-radius: 50%;
  content: "";
}

.product-gallery__badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  color: #fff;
  background: #dc2626;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
}

.product-gallery__favorite {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #475569;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 11px;
  cursor: pointer;
}

.product-gallery__favorite svg {
  width: 18px;
}

.product-gallery__favorite.is-active {
  color: #dc2626;
  background: #fff1f2;
  border-color: #fecdd3;
}

.product-gallery__favorite.is-active svg {
  fill: currentColor;
}

.gallery-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92%, 510px);
  max-height: 92%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.94);
  transition: opacity 260ms ease, transform 260ms ease;
}

.gallery-image.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.product-gallery__thumbs button {
  height: 66px;
  display: grid;
  place-items: center;
  padding: 5px;
  color: var(--primary);
  background: #f8fffd;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.product-gallery__thumbs button:hover,
.product-gallery__thumbs button.is-active {
  background: #f0fdfa;
  border-color: var(--accent);
}

.product-gallery__thumbs button.is-active {
  box-shadow: inset 0 0 0 1px var(--accent);
}

.product-gallery__thumbs svg {
  width: 58px;
  height: 50px;
}

.product-details {
  padding: 22px 18px;
}

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

.product-brand {
  padding: 5px 8px;
  color: var(--primary);
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-sku {
  color: #94a3b8;
  font-size: 9px;
  font-weight: 600;
}

@media (max-width: 619px) {
  .product-main,
  .product-gallery,
  .product-details,
  .product-tabs {
    min-width: 0;
  }

  .product-gallery,
  .product-details,
  .product-tabs {
    overflow: hidden;
  }

  .gallery-image {
    width: min(72%, 260px);
    max-width: 100%;
    height: auto;
  }

  .product-details__topline {
    display: grid;
    justify-content: start;
  }

  .product-sku {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

.product-details h1 {
  margin: 0 0 13px;
  color: var(--ink);
  font-size: clamp(22px, 4vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.product-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  padding-bottom: 17px;
  border-bottom: 1px solid #edf2f7;
  font-size: 11px;
}

.product-rating > span:first-child {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: -0.05em;
}

.product-rating strong {
  color: #334155;
}

.product-rating a {
  color: var(--primary);
  font-weight: 700;
}

.product-rating i {
  width: 1px;
  height: 13px;
  background: var(--line);
}

.product-rating__sold {
  color: #64748b;
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
}

.product-price > div {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.product-price small {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
}

.product-price strong {
  color: var(--primary);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.product-price del {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
}

.product-price > span {
  padding: 6px 9px;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 7px;
  font-size: 9px;
  font-weight: 800;
}

.vat-note {
  margin: 1px 0 16px;
  color: #94a3b8;
  font-size: 9px;
  font-weight: 600;
}

.benefit-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.benefit-badges span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  color: var(--primary-dark);
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-radius: 7px;
  font-size: 9px;
  font-weight: 800;
}

.benefit-badges svg {
  width: 14px;
}

.delivery-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 14px;
  padding: 13px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.delivery-card > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.delivery-card svg {
  width: 23px;
  flex: 0 0 23px;
  color: var(--primary);
}

.delivery-card p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.delivery-card strong {
  font-size: 11px;
}

.delivery-card span {
  color: #64748b;
  font-size: 9px;
  font-weight: 600;
}

.delivery-card button {
  color: var(--primary);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 17px;
}

.stock-status > span {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #dcfce7;
}

.stock-status strong {
  color: #15803d;
  font-size: 11px;
}

.stock-status small {
  color: #64748b;
  font-size: 9px;
  font-weight: 600;
}

.purchase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.purchase-row > div {
  grid-column: 1 / -1;
}

.purchase-row label {
  display: block;
  margin-bottom: 7px;
  color: #475569;
  font-size: 10px;
  font-weight: 700;
}

.quantity-selector {
  width: 132px;
  height: 42px;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.quantity-selector button {
  color: var(--primary);
  background: #f8fafc;
  border: 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.quantity-selector input {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 0;
  outline: 0;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  -moz-appearance: textfield;
}

.quantity-selector input::-webkit-inner-spin-button {
  display: none;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button svg {
  width: 17px;
}

.button--cart {
  color: var(--primary);
  background: #f0fdfa;
  border: 1px solid var(--accent);
}

.button--cart:hover {
  background: #ccfbf1;
}

.button--buy {
  color: #fff;
  background: var(--primary);
  border: 1px solid var(--primary);
  box-shadow: 0 8px 19px rgba(15, 118, 110, 0.2);
}

.button--buy:hover {
  background: var(--primary-dark);
  box-shadow: 0 11px 24px rgba(15, 118, 110, 0.25);
}

.button:active {
  transform: scale(0.98);
}

.whatsapp-button {
  width: 100%;
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.whatsapp-button svg {
  width: 17px;
}

.purchase-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
  margin-top: 15px;
  color: #64748b;
  font-size: 9px;
  font-weight: 600;
}

.purchase-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.purchase-assurance svg {
  width: 13px;
  color: var(--primary);
  stroke-width: 2.4;
}

.product-tabs {
  margin-top: 22px;
  overflow: hidden;
}

.product-tabs__nav {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.product-tabs__nav::-webkit-scrollbar {
  display: none;
}

.product-tabs__nav button {
  min-height: 50px;
  flex: 1 0 auto;
  padding: 0 18px;
  color: #64748b;
  background: #fff;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.product-tabs__nav button.is-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.product-tabs__nav span {
  padding: 2px 5px;
  color: var(--primary);
  background: #f0fdfa;
  border-radius: 5px;
  font-size: 8px;
}

.product-tabs__panel {
  padding: 24px 18px;
}

.description-grid {
  display: grid;
  gap: 24px;
}

.eyebrow,
.section-heading > div > span {
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.description-grid h2 {
  margin: 7px 0 12px;
  font-size: clamp(20px, 3vw, 27px);
  line-height: 1.35;
}

.description-grid p {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
}

.description-grid ul {
  display: grid;
  gap: 9px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.description-grid li {
  position: relative;
  padding-left: 21px;
  color: #475569;
  font-size: 11px;
  font-weight: 600;
}

.description-grid li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 13px;
  height: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  content: "✓";
  font-size: 8px;
}

.description-visual {
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: linear-gradient(145deg, #f8fffd, #ecfdf9);
  border-radius: 14px;
}

.description-visual svg {
  width: min(82%, 300px);
  height: 210px;
}

.description-visual circle {
  fill: rgba(20, 184, 166, 0.1);
  stroke: none;
}

.specifications {
  display: grid;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.specifications div {
  display: grid;
  grid-template-columns: 42% 1fr;
  border-bottom: 1px solid var(--line);
}

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

.specifications dt,
.specifications dd {
  margin: 0;
  padding: 13px;
  font-size: 10px;
}

.specifications dt {
  color: #475569;
  background: #f8fafc;
  font-weight: 700;
}

.specifications dd {
  color: var(--ink);
  font-weight: 600;
}

.reviews-summary {
  display: grid;
  gap: 22px;
}

.reviews-score {
  text-align: center;
}

.reviews-score strong {
  display: block;
  font-size: 42px;
}

.reviews-score span,
.reviews-summary blockquote > span {
  color: #f59e0b;
  letter-spacing: 1px;
}

.reviews-score p {
  margin: 5px 0 0;
  color: #64748b;
  font-size: 9px;
  font-weight: 600;
}

.reviews-bars {
  display: grid;
  gap: 9px;
}

.reviews-bars > div {
  display: grid;
  grid-template-columns: 12px 1fr 30px;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 9px;
  font-weight: 700;
}

.reviews-bars i {
  height: 6px;
  overflow: hidden;
  background: #e2e8f0;
  border-radius: 99px;
}

.reviews-bars b {
  height: 100%;
  display: block;
  background: #f59e0b;
  border-radius: inherit;
}

.reviews-summary blockquote {
  margin: 0;
  padding: 18px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.reviews-summary blockquote p {
  color: #475569;
  font-size: 11px;
  line-height: 1.7;
}

.reviews-summary blockquote footer {
  font-size: 10px;
  font-weight: 800;
}

.reviews-summary blockquote small {
  margin-left: 7px;
  color: var(--primary);
  font-size: 8px;
}

.related-products {
  padding: 38px 0 105px;
}

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

.section-heading h2 {
  margin: 4px 0 0;
  font-size: 22px;
}

.section-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
}

.section-heading > a svg {
  width: 14px;
}

.related-products__grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.related-products__grid::-webkit-scrollbar {
  display: none;
}

.product-card {
  min-width: min(74vw, 250px);
  flex: 0 0 min(74vw, 250px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 9px 28px rgba(15, 118, 110, 0.07);
  scroll-snap-align: start;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  border-color: #99f6e4;
  box-shadow: 0 14px 34px rgba(15, 118, 110, 0.11);
  transform: translateY(-3px);
}

.product-card__image {
  position: relative;
  height: 180px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: linear-gradient(145deg, #f8fffd, #ecfdf9);
  border-bottom: 1px solid #edf7f5;
}

.product-card__image > svg {
  width: 72%;
  height: 72%;
}

.product-card__image > span {
  position: absolute;
  top: 11px;
  left: 11px;
  padding: 5px 7px;
  color: #fff;
  background: #dc2626;
  border-radius: 7px;
  font-size: 9px;
  font-weight: 800;
}

.product-card__image button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #475569;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}

.product-card__image button svg {
  width: 16px;
}

.product-card__body {
  padding: 14px;
}

.product-card h3 {
  min-height: 46px;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.card-rating span {
  color: #f59e0b;
  font-size: 12px;
}

.card-rating small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 9px;
}

.card-price strong {
  color: var(--primary);
  font-size: 17px;
  font-weight: 800;
}

.card-price strong small {
  font-size: 8px;
}

.card-price del {
  color: #94a3b8;
  font-size: 9px;
}

.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 11px;
}

.card-badges span {
  min-height: 23px;
  display: inline-flex;
  align-items: center;
  padding: 0 7px;
  color: var(--primary-dark);
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-radius: 6px;
  font-size: 8px;
  font-weight: 800;
}

.card-cart {
  width: 100%;
  min-height: 35px;
  color: #fff;
  background: var(--primary);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.mobile-purchase-bar {
  position: fixed;
  z-index: 45;
  inset-inline: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -9px 25px rgba(15, 23, 42, 0.09);
  backdrop-filter: blur(12px);
}

.mobile-purchase-bar .button {
  min-height: 44px;
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 78px;
  max-width: calc(100% - 30px);
  padding: 11px 16px;
  color: #fff;
  background: #102a2a;
  border-radius: 9px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
  font-size: 10px;
  font-weight: 700;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (min-width: 620px) {
  .container {
    width: min(100% - 40px, 1280px);
  }

  .announcement__inner {
    justify-content: space-between;
  }

  .announcement__inner > div {
    display: flex;
  }

  .header-main__inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: none;
  }

  .action--account,
  .action--wishlist,
  .language {
    display: block;
  }

  .product-gallery__stage {
    min-height: 480px;
  }

  .product-gallery__thumbs button {
    height: 82px;
  }

  .purchase-row {
    grid-template-columns: 132px 1fr 1fr;
    align-items: end;
  }

  .purchase-row > div {
    grid-column: auto;
  }

  .description-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .reviews-summary {
    grid-template-columns: 0.6fr 1fr 1.5fr;
    align-items: center;
  }

  .related-products__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .product-card {
    min-width: 0;
  }
}

@media (min-width: 850px) {
  .header-main__inner {
    grid-template-columns: minmax(155px, 1fr) minmax(380px, 650px) minmax(220px, 1fr);
    gap: 24px;
  }

  .header-search {
    height: 42px;
    display: flex;
    align-items: center;
    color: var(--muted);
    background: var(--background);
    border: 1px solid #dce6e5;
    border-radius: 10px;
  }

  .header-search:focus-within {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
  }

  .header-search > svg {
    width: 19px;
    margin: 0 10px 0 15px;
  }

  .header-search input {
    min-width: 0;
    height: 100%;
    flex: 1;
    color: var(--ink);
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 12px;
  }

  .header-search button {
    height: 32px;
    margin: 4px;
    padding: 0 15px;
    color: #fff;
    background: var(--primary);
    border: 0;
    border-radius: 7px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
  }

  .main-nav {
    display: block;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid var(--line);
  }

  .main-nav__inner {
    position: relative;
    height: 42px;
    display: flex;
    align-items: center;
  }

  .categories-toggle {
    min-width: 190px;
    height: 34px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    color: #fff;
    background: var(--primary);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
  }

  .categories-toggle svg {
    width: 15px;
  }

  .categories-toggle svg:last-child {
    width: 12px;
    margin-left: auto;
  }

  .categories-menu {
    position: absolute;
    z-index: 60;
    top: calc(100% + 8px);
    left: 0;
    width: 210px;
    display: grid;
    padding: 7px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 11px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: 180ms ease;
  }

  .categories-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .categories-menu a {
    padding: 10px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 600;
  }

  .categories-menu a:hover {
    color: var(--primary);
    background: #f0fdfa;
  }

  .nav-links {
    height: 100%;
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.5vw, 38px);
    padding: 0 28px;
  }

  .nav-link {
    height: 100%;
    display: inline-flex;
    align-items: center;
    color: #475569;
    border-bottom: 2px solid transparent;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
  }

  .nav-link:hover {
    color: var(--primary);
    border-bottom-color: var(--accent);
  }

  .nav-link--deal {
    color: var(--primary);
  }

  .delivery-note {
    display: none;
  }

  .breadcrumb {
    min-height: 58px;
  }

  .product-main {
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
    align-items: start;
    gap: 22px;
  }

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

  .product-gallery__stage {
    min-height: 535px;
  }

  .product-details {
    padding: 28px;
  }

  .product-tabs__panel {
    padding: 32px;
  }

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

  .mobile-purchase-bar {
    display: none;
  }

  .related-products {
    padding-bottom: 60px;
  }

  .toast {
    bottom: 24px;
  }
}

@media (min-width: 1120px) {
  .delivery-note {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 9px;
    font-weight: 600;
    white-space: nowrap;
  }

  .delivery-note svg {
    width: 15px;
    color: var(--primary);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
