
/* Site Header */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 16px 8px;
  background: rgba(247, 248, 250, 0.82);
  border-bottom: 1px solid rgba(226, 232, 240, 0.78);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  transition: transform 0.24s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.site-header.is-header-hidden:not(.is-menu-open) {
  transform: translateY(calc(-100% - 14px));
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.site-header__brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.site-header__logo {
  display: block;
  width: clamp(132px, 18vw, 190px);
  height: auto;
}

.site-header__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.site-header__nav {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(216, 227, 232, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
}

.site-header__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-header__link:hover,
.site-header__link:focus-visible {
  background: #111827;
  color: #fff;
  transform: translateY(-1px);
}


.site-header__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 14px 8px 10px;
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #0f3f3d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.site-header__whatsapp:hover,
.site-header__whatsapp:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(37, 211, 102, 0.46);
  background: #fff;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.site-header__whatsapp:focus-visible {
  outline: 2px solid rgba(37, 211, 102, 0.28);
  outline-offset: 2px;
}

.site-header__whatsapp-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.site-header__search {
  display: grid;
  grid-template-columns: minmax(160px, 260px) auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.site-header__search-input {
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid #d8e3e8;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.site-header__search-input::placeholder {
  color: #748091;
  font-weight: 500;
}

.site-header__search-input:focus-visible,
.site-header__search-submit:focus-visible,
.site-header__burger:focus-visible {
  outline: 2px solid rgba(11, 122, 117, 0.28);
  outline-offset: 2px;
}

.site-header__search-submit {
  min-height: 42px;
  padding: 10px 17px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(11, 122, 117, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header__search-submit:hover,
.site-header__search-submit:focus-visible {
  background: #086b66;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(11, 122, 117, 0.22);
}

.site-header__burger {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid #d8e3e8;
  border-radius: 14px;
  background: #fff;
  color: #111827;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.site-header__burger-line {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}

@media (max-width: 959px) {
  body.has-site-menu-open {
    overflow-x: clip;
  }

  .site-header {
    padding: 10px 12px;
    background: rgba(247, 248, 250, 0.96);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transform: none;
  }

  .site-header.is-header-hidden:not(.is-menu-open) {
    transform: none;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 14px;
  }

  .site-header__logo {
    width: 148px;
  }

  .site-header__burger {
    position: relative;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
  }

  .site-header__burger-line {
    position: absolute;
    width: 20px;
    height: 2px;
    margin: 0;
    transform-origin: center;
  }

  .site-header__burger-line:nth-child(1) {
    transform: translateY(-6px);
  }

  .site-header__burger-line:nth-child(2) {
    transform: translateY(0);
  }

  .site-header__burger-line:nth-child(3) {
    transform: translateY(6px);
  }

  .site-header.is-menu-open .site-header__burger-line:nth-child(1) {
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .site-header__burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .site-header.is-menu-open .site-header__burger-line:nth-child(3) {
    transform: rotate(-45deg);
  }

  .site-header__menu {
    position: fixed;
    top: var(--site-header-menu-top, 78px);
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    z-index: 60;
    display: grid;
    gap: 12px;
    max-height: calc(100dvh - var(--site-header-menu-top, 78px) - 12px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid #d8e3e8;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-header.is-menu-open .site-header__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-header__nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    width: 100%;
    padding: 4px;
    border: 0;
    border-radius: 18px;
    background: #f8fafc;
    box-shadow: inset 0 0 0 1px #e5edf2;
  }

  .site-header__link {
    justify-content: flex-start;
    min-height: 48px;
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 16px;
  }

  .site-header__link:hover,
  .site-header__link:focus-visible {
    background: #fff;
    color: #111827;
    transform: none;
  }

  .site-header__whatsapp {
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border-radius: 16px;
    background: #f0fdf4;
    box-shadow: none;
  }

  .site-header__search {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-header__search-input,
  .site-header__search-submit {
    min-height: 48px;
    border-radius: 16px;
  }

  .site-header__search-submit {
    width: 100%;
  }
}

/* Product Card */
.product-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 0;
}

.product-card__thumb {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: #f3f4f6;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.product-card__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card__thumb .woocommerce-placeholder {
  object-fit: contain;
  padding: 18%;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.product-card__title {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.product-card__title a {
  color: inherit;
  text-decoration: none;
}

.product-card__price {
  min-width: 0;
  color: #111827;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.product-card__price .price,
.product-card__price .amount {
  white-space: normal;
}

a.product-card__button,
.product-card__button,
button.sqo-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(11, 122, 117, 0.16);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

button.sqo-open:hover,
button.sqo-open:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(11, 122, 117, 0.22);
}

a.product-card__button:focus-visible,
.product-card__button:focus-visible,
button.sqo-open:focus-visible {
  outline: 2px solid rgba(11, 122, 117, 0.22);
  outline-offset: 2px;
}

button.sqo-open {
  width: min(100%, 360px);
}

.sqo-open:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Product: Size Selector (Hidden Select) */
.sqo-size-selector,
.sqo-color-selector {
  width: 100%;
  max-width: 240px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #cfd6dd;
}

.sqo-size-selector.is-hidden,
.sqo-color-selector.is-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.sqo-size-options,
.sqo-color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sqo-size-option {
  min-width: 40px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #cfd6dd;
  background: #fff;
  color: #1f2933;
  font-weight: 600;
  cursor: pointer;
}

.sqo-size-option.is-active {
  background: var(--size-accent);
  border-color: var(--size-accent);
  color: #fff;
}

.sqo-size-option.is-out,
.sqo-size-option:disabled,
.sqo-color-option.is-out,
.sqo-color-option:disabled {
  background: #e5e7eb;
  border-color: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
}

.sqo-color-option {
  min-width: 72px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #cfd6dd;
  background: #fff;
  color: #1f2933;
  font-weight: 600;
  cursor: pointer;
}

.sqo-color-option.is-active {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.sqo-size-hint {
  color: #8a3d00;
  margin: 0;
  font-size: 14px;
}

.sqo-stock {
  margin: 0;
  font-weight: 600;
}

.sqo-stock--ok {
  color: #1c7c2f;
}

.sqo-stock--out {
  color: #b42318;
}

.sqo-stock--neutral {
  color: #6b7280;
}

.catalog__title,
.product-layout__meta h1 {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 48px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.catalog__title {
  margin-bottom: 24px;
}

.catalog {
  overflow-x: clip;
}

.catalog * {
  min-width: 0;
}

.catalog__empty {
  margin: 0;
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: #4b5563;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: inset 0 0 0 1px #e5e7eb;
}

.catalog-layout {
  display: grid;
  gap: 22px;
  align-items: start;
}

.catalog-sidebar {
  min-width: 0;
}

.catalog-filters-toggle {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.catalog-filters-trigger {
  display: none;
}

.catalog-filters {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: inset 0 0 0 1px #e5e7eb, 0 18px 50px rgba(15, 23, 42, 0.04);
}

.catalog-filter-group {
  display: grid;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eef2f7;
}

.catalog-filter-group:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.catalog-filter-group__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.catalog-filter-group__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-filter-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #374151;
  font-size: 14px;
  line-height: 1.35;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.catalog-filter-option input {
  margin: 0;
  accent-color: #0b7a75;
}

.catalog-filter-option small {
  color: #6b7280;
}

.catalog-filter-option:has(input:checked) {
  border-color: rgba(11, 122, 117, 0.45);
  color: #0f3f3d;
  box-shadow: 0 8px 20px rgba(11, 122, 117, 0.1);
}

.catalog-filters__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 2px;
}

.catalog-filters__submit,
.catalog-filters__reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.catalog-filters__submit {
  border: 0;
  background: #111827;
  color: #fff;
  cursor: pointer;
}

.catalog-filters__reset {
  border: 1px solid #d1d5db;
  background: #fff;
  color: #111827;
}

.catalog-content {
  min-width: 0;
}

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

.catalog-content__count {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.4;
}

.catalog-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog-sort__label {
  color: #64748b;
  font-size: 13px;
  line-height: 1;
}

.catalog-sort__select {
  min-height: 38px;
  max-width: 190px;
  padding: 8px 36px 8px 12px;
  border: 1px solid #d8e3e8;
  border-radius: 999px;
  background:
    linear-gradient(45deg, transparent 50%, #0f172a 50%) right 16px center / 6px 6px no-repeat,
    linear-gradient(135deg, #0f172a 50%, transparent 50%) right 11px center / 6px 6px no-repeat,
    #fff;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  appearance: none;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
  cursor: pointer;
}

.catalog-sort__select:focus-visible {
  outline: 2px solid rgba(11, 122, 117, 0.22);
  outline-offset: 2px;
}

.catalog-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog .catalog-products::before,
.catalog .catalog-products::after,
.woocommerce .catalog ul.products::before,
.woocommerce .catalog ul.products::after {
  content: none !important;
  display: none !important;
}

.catalog-products__item {
  float: none;
  width: auto;
  margin: 0;
  min-width: 0;
  height: 100%;
  grid-template-rows: auto minmax(48px, auto) auto auto;
}

.catalog ul.products.catalog-products li.product.catalog-products__item {
  float: none;
  width: auto;
  margin: 0;
}

.catalog-products .product-card__button {
  justify-self: start;
  align-self: end;
  margin-top: auto;
  min-height: 42px;
  padding: 10px 16px;
  font-size: 14px;
}

.catalog-products .product-card__title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-products__item.is-out .product-card__title,
.catalog-products__item.is-out .product-card__price {
  opacity: 0.7;
}

.product-layout__meta .price {
  color: #111827;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

.product-layout__meta label {
  display: inline-block;
  margin-top: 4px;
  color: #111827;
  font-size: 15px;
  font-weight: 500;
}

.product-meta {
  display: grid;
  gap: 8px;
  padding: 2px 0 6px;
  color: #4b5563;
}

.product-meta__item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
  line-height: 1.45;
}

.product-meta__item span {
  color: #6b7280;
  font-weight: 500;
  min-width: 64px;
}

.product-description {
  margin-top: 12px;
  color: #374151;
  line-height: 1.7;
  font-size: 15px;
  max-width: 60ch;
}

.product-description p {
  margin: 0 0 10px;
}

/* Product: Embla Gallery */
.product-gallery {
  position: relative;
  display: grid;
  gap: 10px;
}

.product-gallery__embla {
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
}

.embla__viewport {
  overflow: hidden;
}

.embla__container {
  display: flex;
}

.embla__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.product-gallery__slide {
  aspect-ratio: 4 / 5;
}

.product-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-gallery__video,
.product-gallery__youtube-wrap {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.product-gallery__video {
  object-fit: cover;
}

.product-gallery__youtube {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.product-gallery__actions {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  pointer-events: none;
}

.product-gallery__nav {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.88);
  color: #111827;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.14);
  backdrop-filter: blur(8px);
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.product-gallery__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (hover: hover) and (pointer: fine) {
  .product-card__thumb:hover img,
  .product-card__thumb:focus-visible img {
    transform: scale(1.03);
  }

  .product-gallery__nav:hover,
  .product-gallery__nav:focus-visible {
    opacity: 0.92;
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.92);
  }
}

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

.product-gallery__thumb {
  position: relative;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.product-gallery__thumb.is-active {
  border-color: var(--size-accent);
}

.product-gallery__thumb-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.product-gallery__thumb-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: #111827;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-gallery__thumb-badge {
  position: absolute;
  right: 6px;
  bottom: 6px;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.82);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-recommendations {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid #e5e7eb;
}

.product-recommendations__head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.product-recommendations__title {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

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

.product-recommendations__toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.product-recommendations__actions {
  display: flex;
  gap: 10px;
}

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

.product-recommendations__container {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-recommendations__slide {
  min-width: 0;
  flex: 0 0 calc((100% - 54px) / 4);
  margin-right: 18px;
}

.product-recommendations__slide:last-child {
  margin-right: 0;
}

.product-recommendations__slide.product-card {
  gap: 10px;
}

.product-recommendations__slide .product-card__thumb {
  border-radius: 12px;
  box-shadow: none;
}

.product-recommendations__slide .product-card__title {
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.product-recommendations__slide .product-card__price {
  font-size: 15px;
}

.product-recommendations__slide .product-card__button {
  justify-self: start;
  min-height: 42px;
  padding: 10px 16px;
  font-size: 14px;
}

ul.products .product-card__button,
.product-recommendations__slide .product-card__button {
  background: var(--brand);
  color: #fff;
  border: 0;
}

.product-recommendations__nav {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #111827;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.product-recommendations__nav:hover,
.product-recommendations__nav:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
}

.product-recommendations__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 959px) {
  .catalog-layout {
    gap: 18px;
  }

  .catalog-sidebar {
    display: grid;
    gap: 12px;
  }

  .catalog-filters-trigger {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr) 28px;
    align-items: center;
    gap: 14px;
    min-height: 50px;
    max-width: 100%;
    padding: 12px 16px;
    border: 1px solid #d8e3e8;
    border-radius: 16px;
    background: #fff;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }

  .catalog-filters-trigger:hover,
  .catalog-filters-trigger:active {
    background: #fff;
  }

  .catalog-filters-trigger::before,
  .catalog-filters-trigger::after {
    content: "";
    grid-column: 3;
    grid-row: 1;
    justify-self: center;
    align-self: center;
    border-radius: 999px;
  }

  .catalog-filters-trigger::before {
    width: 2px;
    height: 12px;
    background: #0f172a;
    transition: transform 0.22s ease, opacity 0.22s ease;
    z-index: 2;
  }

  .catalog-filters-trigger::after {
    width: 28px;
    height: 28px;
    background:
      linear-gradient(#0f172a, #0f172a) center / 12px 2px no-repeat,
      #f1f5f9;
    z-index: 1;
  }

  .catalog-filters-trigger small {
    min-width: 0;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
  }

  .catalog-filters-toggle:not(:checked) + .catalog-filters-trigger + .catalog-filters {
    display: none;
  }

  .catalog-filters-toggle:checked + .catalog-filters-trigger::before {
    transform: scaleY(0);
    opacity: 0;
  }


  .catalog-filters {
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
  }
}

@media (max-width: 768px) {
  .catalog__title {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1.04;
  }

  .catalog-content__head {
    flex-wrap: wrap;
    margin-bottom: 14px;
  }

  .catalog-sort {
    margin-left: auto;
  }

  .catalog-sort__label {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .product-card {
    gap: 10px;
  }

  .product-card__title {
    font-size: 16px;
    line-height: 1.12;
  }

  .product-card__price {
    font-size: 16px;
  }

  .product-card__button,
  button.sqo-open {
    width: 100%;
    min-height: 46px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 15px;
  }

  .product-layout {
    gap: 24px;
  }

  .product-layout__meta {
    gap: 12px;
  }

  .product-layout__meta h1 {
    font-size: 24px;
    line-height: 1;
  }

  .catalog-products .product-card__button {
    width: 100%;
  }

  .catalog-products__item {
    grid-template-rows: auto minmax(40px, auto) auto auto;
  }

  .catalog-products .product-card__title {
    min-height: 40px;
  }

  .product-layout__meta .price {
    font-size: 22px;
  }

  .product-meta {
    gap: 6px;
  }

  .product-meta__item {
    gap: 6px;
    font-size: 13px;
  }

  .product-meta__item span {
    min-width: 56px;
  }

  .sqo-color-options,
  .sqo-size-options {
    gap: 8px;
  }

  .sqo-color-option {
    min-width: 80px;
    padding: 10px 14px;
  }

  .sqo-size-option {
    min-width: 42px;
    padding: 10px 12px;
  }

  .product-description {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.6;
  }

  .product-gallery {
    gap: 12px;
  }

  .product-gallery__actions {
    display: none;
  }

  .product-gallery__slide {
    aspect-ratio: 1 / 1.2;
  }

  .product-gallery__thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    padding-bottom: 4px;
  }

  .product-gallery__thumb {
    flex: 0 0 68px;
  }
}

@media (min-width: 560px) {
  .catalog-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 18px;
  }
}

@media (max-width: 640px) {
  .product-recommendations {
    margin-top: 40px;
    padding-top: 24px;
  }

  .product-recommendations__toolbar {
    align-items: center;
    flex-direction: row;
  }

  .product-recommendations__actions {
    width: 100%;
    justify-content: flex-end;
  }

  .product-recommendations__slide {
    flex-basis: 82%;
    margin-right: 14px;
  }
}

@media (max-width: 480px) {
  main {
    padding-inline: 12px;
  }

  .catalog-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 10px;
  }

  .catalog-products .product-card__title {
    min-height: 38px;
    font-size: 15px;
  }

  .catalog-products .product-card__price {
    font-size: 15px;
  }

  .catalog-filter-option {
    font-size: 13px;
  }
}

@media (min-width: 960px) {
  .catalog-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
  }

  .catalog-sidebar {
    position: sticky;
    top: 18px;
  }

  .catalog-filter-group__options {
    display: grid;
    gap: 8px;
  }

  .catalog-filter-option {
    width: 100%;
    justify-content: flex-start;
    min-height: 32px;
    padding: 5px 6px;
    border-color: transparent;
    background: transparent;
    border-radius: 10px;
  }

  .catalog-filter-option:has(input:checked) {
    background: #eef9f7;
    border-color: rgba(11, 122, 117, 0.2);
    box-shadow: none;
  }

  .catalog-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 28px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .product-recommendations__slide {
    flex-basis: calc((100% - 18px) / 2);
  }
}

/* Home Featured Slider */
.home-featured {
  width: min(1100px, calc(100% - 32px));
  margin: 18px auto 38px;
  overflow: clip;
}

.home-featured__head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}

.home-featured__carousel {
  position: relative;
}

.home-featured__viewport {
  overflow: hidden;
}

.home-featured__container {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-featured__slide {
  min-width: 0;
  flex: 0 0 calc((100% - 54px) / 4);
  margin-right: 18px;
}

.home-featured__slide:last-child {
  margin-right: 0;
}

.home-featured__thumb {
  position: relative;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.home-featured__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f97316;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.28);
}

.home-featured__title {
  font-size: 17px;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.home-featured__price {
  font-size: 15px;
}

.home-featured__button {
  justify-self: start;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
}

.home-featured__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-featured__nav {
  width: 42px;
  height: 42px;
  border: 1px solid #d8e3e8;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-featured__nav:hover,
.home-featured__nav:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.home-featured__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (min-width: 641px) and (max-width: 1024px) {
  .home-featured__slide {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  .home-featured {
    width: min(100% - 24px, 560px);
    margin: 14px auto 30px;
  }

  .home-featured__head {
    margin-bottom: 12px;
  }

  .home-featured__slide {
    flex-basis: 82%;
    margin-right: 14px;
  }

  .home-featured__actions {
    gap: 8px;
  }

  .home-featured__nav {
    width: 38px;
    height: 38px;
  }
}

/* Content Pages */
main > article > h1 {
  margin: 8px 0 28px;
  color: #0f172a;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.delivery-page {
  display: grid;
  gap: 22px;
  margin-bottom: 28px;
}

.delivery-hero,
.delivery-card,
.delivery-return,
.delivery-note {
  border: 1px solid #dce7ee;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.045);
}

.delivery-hero {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 38px);
}

.delivery-hero__eyebrow,
.delivery-card__label {
  margin: 0;
  color: #0b7a75;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-hero h2,
.delivery-return h2 {
  max-width: 760px;
  margin: 0;
  color: #102f2d;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.delivery-hero p,
.delivery-card p,
.delivery-return p,
.delivery-note p {
  margin: 0;
  color: #607086;
  font-size: 16px;
  line-height: 1.65;
}

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

.delivery-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.delivery-card h3,
.delivery-checklist h3 {
  margin: 0;
  color: #17212b;
  font-size: 21px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.delivery-return {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.75fr);
  gap: 22px;
  padding: clamp(20px, 3vw, 28px);
}

.delivery-return__content {
  display: grid;
  gap: 14px;
}

.delivery-table {
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid #dce7ee;
  border-radius: 18px;
  background: #fff;
}

.delivery-table__row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(130px, 0.5fr);
  gap: 14px;
  padding: 16px 18px;
  color: #3d4b5c;
  font-size: 15px;
  line-height: 1.45;
}

.delivery-table__row + .delivery-table__row {
  border-top: 1px solid #eef2f7;
}

.delivery-table__row--head {
  background: #f6fafb;
  color: #102f2d;
}

.delivery-table__row strong {
  color: #0f172a;
}

.delivery-checklist {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
  border-radius: 20px;
  background: #f6fafb;
}

.delivery-checklist ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-checklist li {
  position: relative;
  padding-left: 26px;
  color: #3d4b5c;
  font-size: 15px;
  line-height: 1.45;
}

.delivery-checklist li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.delivery-note {
  display: grid;
  gap: 10px;
  padding: 22px 24px;
}

@media (max-width: 760px) {
  main > article > h1 {
    margin-bottom: 20px;
    font-size: 32px;
  }

  .delivery-grid,
  .delivery-return {
    grid-template-columns: 1fr;
  }

  .delivery-hero,
  .delivery-card,
  .delivery-return,
  .delivery-note {
    border-radius: 18px;
  }

  .delivery-table__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px;
  }
}

/* Site Footer */
.site-footer {
  position: relative;
  margin-top: 72px;
  overflow: clip;
  border-top: 1px solid #e4ebf0;
  background: transparent;
  color: #17212b;
}

.site-footer::before {
  content: none;
}

.site-footer__top {
  position: absolute;
  top: 0;
  left: clamp(16px, calc((100vw - 1100px) / 2 + 16px), 44px);
  z-index: 2;
  width: 54px;
  height: 54px;
  border: 1px solid #dde7ed;
  border-top: 0;
  border-radius: 0 0 16px 16px;
  background: #ffffff;
  color: #0f766e;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
  transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-footer__top:hover,
.site-footer__top:focus-visible {
  color: #102f2d;
  transform: translateY(2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.site-footer__top:focus-visible {
  outline: 2px solid rgba(11, 122, 117, 0.26);
  outline-offset: 3px;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 1.15fr) repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.8vw, 54px);
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 42px;
}

.site-footer__inner::before {
  content: none;
}

.site-footer__brand,
.site-footer__column,
.site-footer__contact {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
}

.site-footer__logo-link {
  display: inline-flex;
  width: fit-content;
}

.site-footer__logo {
  display: block;
  width: min(190px, 100%);
  height: auto;
  opacity: 0.92;
}

.site-footer__tagline {
  max-width: 30ch;
  margin: 0;
  color: #607086;
  font-size: 15px;
  line-height: 1.55;
}

.site-footer__title {
  margin: 0 0 6px;
  color: #153f3c;
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.site-footer__column a,
.site-footer__contact a {
  width: fit-content;
  color: #3d4b5c;
  font-size: 15.5px;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__column a::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: rgba(11, 122, 117, 0.55);
  transform: translateY(-1px);
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible,
.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
  color: #0b7a75;
  transform: translateX(2px);
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer__social,
.site-footer__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid #dce7ec;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.site-footer__social {
  background: #ffffff;
}

.site-footer__social--whatsapp,
.site-footer__whatsapp {
  border-color: #cfeee0;
  background: #f3fbf6;
  color: #12633d !important;
}

.site-footer__social--instagram {
  border-color: #ead7e4;
  background: #fff8fc;
  color: #87325f !important;
}

.site-footer__social:hover,
.site-footer__social:focus-visible,
.site-footer__whatsapp:hover,
.site-footer__whatsapp:focus-visible {
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.site-footer__social img {
  display: block;
  width: 24px;
  height: 24px;
}

.site-footer__phone {
  color: #101923 !important;
  font-size: clamp(22px, 2.4vw, 30px) !important;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-footer__note,
.site-footer__schedule {
  color: #607086;
  font-size: 15px;
  line-height: 1.5;
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 24px;
  border-top: 1px solid #dce7ee;
  color: #66778c;
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-footer {
    margin-top: 56px;
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-footer {
    margin-top: 48px;
    text-align: center;
  }

  .site-footer__top {
    left: 50%;
    transform: translateX(-50%);
  }

  .site-footer__top:hover,
  .site-footer__top:focus-visible {
    transform: translateX(-50%) translateY(2px);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
    width: min(100% - 24px, 420px);
    padding-top: 76px;
  }

  .site-footer__inner::before {
    content: none;
  }

  .site-footer__brand,
  .site-footer__column,
  .site-footer__contact {
    justify-items: center;
  }

  .site-footer__tagline {
    max-width: 32ch;
  }

  .site-footer__socials {
    justify-content: center;
  }

  .site-footer__column a::before {
    content: none;
  }

  .site-footer__bottom {
    justify-content: center;
    text-align: center;
  }
}
