:root {
  color-scheme: light;
  --bg: #fff8ef;
  --bg-soft: #f7efe3;
  --surface: #ffffff;
  --surface-warm: #fffaf3;
  --ink: #1f201c;
  --muted: #6f7169;
  --muted-strong: #45483f;
  --line: rgba(47, 49, 42, 0.12);
  --line-strong: rgba(55, 139, 85, 0.28);
  --accent: #2f8f5b;
  --accent-2: #78c84d;
  --accent-soft: rgba(47, 143, 91, 0.11);
  --warm: #ffb35c;
  --danger: #b42318;
  --shadow: 0 24px 70px rgba(63, 55, 43, 0.14);
  --shadow-soft: 0 14px 36px rgba(63, 55, 43, 0.1);
  --gradient-accent: linear-gradient(135deg, #2f8f5b, #78c84d);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 18px;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 179, 92, 0.12), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(120, 200, 77, 0.1), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #fffaf3 24%, #fffdf8 68%, #ffffff 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

button:disabled {
  cursor: progress;
  opacity: 0.58;
}

button,
a,
input,
select,
textarea,
.product-card,
.department-chip,
.trust-card,
.faq article {
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.noticebar {
  min-height: 38px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(47, 143, 91, 0.1);
  padding: 8px 16px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 250, 243, 0.92) 100%);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(255, 250, 243, 0.9) 36%, #ffffff 100%),
    var(--surface);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  filter: saturate(0.72) contrast(1.02) brightness(1.04);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0 0 auto;
  height: 190px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0) 100%);
}

.hero::after {
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 78%);
}

.topbar,
.hero__content {
  position: relative;
  z-index: 2;
}

.topbar {
  width: min(1240px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 20px 0;
}

.brand,
.topbar__links,
.currency-switch,
.manager-link {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--ink);
  font-weight: 950;
}

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
}

.brand__mark img {
  display: block;
  width: 38px;
  height: 38px;
}

.topbar__links,
.currency-switch {
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(63, 55, 43, 0.08);
  backdrop-filter: blur(16px);
}

.topbar__links a {
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 850;
}

.topbar__links a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.manager-link {
  min-height: 46px;
  gap: 9px;
  border: 1px solid rgba(47, 143, 91, 0.24);
  border-radius: 999px;
  padding: 6px 14px 6px 7px;
  background: #ffffff;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(47, 143, 91, 0.12);
}

.manager-link:hover {
  border-color: rgba(47, 143, 91, 0.44);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(47, 143, 91, 0.16);
}

.telegram-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--gradient-accent);
  color: #ffffff;
}

.telegram-icon svg {
  width: 17px;
  height: 17px;
}

.currency-switch__button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 12px;
  background: transparent;
  color: var(--muted-strong);
  font-weight: 900;
  cursor: pointer;
}

.currency-switch__button:hover {
  color: var(--accent);
}

.currency-switch__button.is-active {
  background: var(--gradient-accent);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(47, 143, 91, 0.22);
}

.hero__content {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(38px, 7vw, 86px) 0 clamp(28px, 5vw, 64px);
}

#catalogo,
#destacados,
#sales,
#wholesale,
#top {
  scroll-margin-top: 18px;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.42fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
}

.hero__main {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.2rem, 8vw, 6.3rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h1 span {
  color: var(--accent);
}

h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero__copy {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  font-weight: 780;
}

.hero__actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  margin-top: 26px;
}

.hero__actions {
  max-width: 960px;
}

.hero__actions > .button {
  flex: 0 0 auto;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 850;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  max-width: 780px;
}

.hero__metrics span,
.trust-stats span {
  border: 1px solid rgba(47, 143, 91, 0.14);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.hero__metrics strong,
.trust-stats strong {
  display: block;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-2);
}

.hero__note {
  border: 1px solid rgba(47, 143, 91, 0.16);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero__note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

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

.hero__deal {
  align-self: stretch;
  display: grid;
  gap: 14px;
  align-content: center;
}

.hero__deal > small {
  color: var(--accent);
  font-weight: 950;
  text-transform: uppercase;
}

.hero__deal > strong {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.hero__deal > div {
  display: grid;
  gap: 8px;
}

.hero__deal > div span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  color: var(--muted);
  font-weight: 820;
}

.hero__deal b {
  color: var(--ink);
}

.hero__deal .product-card__media {
  min-height: 210px;
}

.hero__deal .product-card__amazon-card img {
  height: 190px;
  padding: 18px;
}

.hero__deal .button {
  width: 100%;
}

.product-card small,
.trust-card small,
.faq p,
.section__header p,
.inquiry p,
.form-hint {
  color: var(--muted);
}

.button {
  position: relative;
  display: inline-flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 950;
  cursor: pointer;
  text-align: center;
  white-space: normal;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--gradient-accent);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(47, 143, 91, 0.2);
}

.button--primary:hover {
  box-shadow: 0 20px 46px rgba(47, 143, 91, 0.28);
}

.button--secondary,
.button--ghost,
.button--details {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(63, 55, 43, 0.06);
}

.button--secondary:hover,
.button--ghost:hover,
.button--details:hover {
  border-color: var(--line-strong);
  background: var(--accent-soft);
  color: var(--accent);
}

.button--card {
  width: 100%;
  background: var(--ink);
  color: #ffffff;
}

.button--card:hover {
  background: var(--accent);
  box-shadow: 0 16px 36px rgba(47, 143, 91, 0.22);
}

.section {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0;
}

.section--tight {
  padding: 54px 0;
}

.section__header,
.inquiry,
.editorial-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.section__header {
  margin-bottom: 28px;
}

.section__header--compact {
  align-items: end;
  gap: 24px;
  margin-bottom: 20px;
}

.section__header--compact h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.15rem);
}

.section__header p {
  max-width: 560px;
  margin: 0;
}

.trust-proof {
  padding-bottom: 54px;
}

.warehouse-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 16px;
}

.warehouse-photo {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(47, 143, 91, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(10, 20, 15, 0.08), rgba(10, 20, 15, 0.58)),
    url("./assets/hero-inventory.png") center / cover;
  box-shadow: var(--shadow-soft);
}

.warehouse-photo--wide {
  grid-row: span 2;
  min-height: 476px;
}

.warehouse-photo--rack {
  background-position: 60% center;
}

.warehouse-photo--check {
  background-position: 40% center;
}

.warehouse-photo--team {
  background-position: 72% center;
}

.warehouse-photo span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-weight: 950;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.location-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.map-card {
  display: grid;
  min-height: 180px;
  place-content: center;
  border-radius: 22px;
  background:
    radial-gradient(circle at 52% 45%, rgba(47, 143, 91, 0.3), transparent 3rem),
    linear-gradient(135deg, #d8eadf, #fff8ef);
  color: var(--ink);
  text-align: center;
}

.map-card span {
  color: var(--accent);
  font-weight: 950;
}

.map-card strong {
  font-size: 2rem;
  line-height: 1;
}

.catalog--first {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: 28px;
}

.catalog--first .section__header {
  align-items: end;
  margin-top: 36px;
}

.search-hub {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(47, 143, 91, 0.18);
  border-radius: 34px;
  padding: clamp(18px, 3vw, 28px);
  margin-bottom: 16px;
  background:
    radial-gradient(circle at 88% 0%, rgba(120, 200, 77, 0.22), transparent 18rem),
    radial-gradient(circle at 8% 20%, rgba(255, 179, 92, 0.18), transparent 16rem),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-hub--hero {
  flex: 1 1 520px;
  min-width: min(100%, 420px);
  max-width: 680px;
  border-radius: 26px;
  padding: 10px;
  margin: 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(63, 55, 43, 0.12);
}

.search-hub--hero .search-hub__box {
  border-radius: 20px;
  box-shadow: none;
}

.search-hub--hero .search-hub__box input {
  min-height: 46px;
  font-size: 1rem;
}

.search-hub--hero .search-hub__icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
}

.search-hub--hero .search-hub__icon::before {
  width: 12px;
  height: 12px;
  margin: 10px 0 0 10px;
}

.search-hub--hero .search-hub__icon::after {
  margin: 24px 0 0 23px;
}

.search-hub--hero .search-suggestions,
.search-hub--hero .quick-search {
  padding-inline: 4px;
}

.search-hub--hero .quick-search__chip {
  min-height: 34px;
  padding-inline: 12px;
  font-size: 0.82rem;
}

.search-hub__header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.search-hub__header h2 {
  font-size: clamp(2rem, 4.3vw, 4.25rem);
}

.search-hub__header p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.search-hub__box {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(47, 143, 91, 0.22);
  border-radius: 24px;
  padding: 10px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(63, 55, 43, 0.12);
}

.search-hub__icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: var(--gradient-accent);
  box-shadow: 0 12px 26px rgba(47, 143, 91, 0.2);
}

.search-hub__icon::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  margin: 11px 0 0 11px;
  border: 3px solid #ffffff;
  border-radius: 999px;
}

.search-hub__icon::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 3px;
  margin: 27px 0 0 25px;
  border-radius: 999px;
  background: #ffffff;
  transform: rotate(45deg);
  transform-origin: left center;
}

.search-hub__box input {
  min-height: 54px;
  border: 0;
  padding: 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 850;
  outline: 0;
  box-shadow: none;
}

.search-hub__box input:focus {
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.search-hub__clear {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: var(--surface-warm);
  color: var(--muted-strong);
  font-weight: 900;
  cursor: pointer;
}

.search-hub__clear[hidden] {
  display: none;
}

.search-hub__clear:hover {
  border-color: var(--line-strong);
  color: var(--accent);
}

.search-suggestions,
.quick-search {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-suggestions {
  margin-top: 14px;
}

.quick-search {
  margin-top: 12px;
}

.search-suggestions__item,
.quick-search__chip {
  min-height: 40px;
  border-radius: 999px;
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
}

.search-suggestions__item {
  border: 1px solid rgba(47, 143, 91, 0.22);
  background: var(--accent-soft);
  color: var(--accent);
}

.quick-search__chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted-strong);
}

.search-suggestions__item:hover,
.quick-search__chip:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(47, 143, 91, 0.18);
  border-radius: 26px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-weight: 850;
}

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

input::placeholder,
textarea::placeholder {
  color: rgba(69, 72, 63, 0.48);
}

select option {
  background: #ffffff;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(47, 143, 91, 0.56);
  outline: 3px solid rgba(47, 143, 91, 0.13);
  box-shadow: 0 0 0 4px rgba(47, 143, 91, 0.06);
}

textarea {
  resize: vertical;
}

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

.catalog__empty {
  grid-column: 1 / -1;
  border: 1px dashed rgba(47, 143, 91, 0.32);
  border-radius: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted-strong);
  text-align: center;
}

.catalog__empty strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.18rem;
}

.catalog--locked .filters,
.catalog--locked .catalog__meta {
  box-shadow: var(--shadow-soft);
}

.catalog__empty--locked {
  padding: clamp(28px, 5vw, 48px);
  background:
    radial-gradient(circle at 20% 0%, rgba(120, 200, 77, 0.14), transparent 18rem),
    rgba(255, 255, 255, 0.78);
}

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

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

.product-card,
.faq article,
.inquiry-form,
.department-chip,
.trust-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(63, 55, 43, 0.07);
}

.product-card,
.faq article {
  border-radius: 22px;
}

.department-chip:hover,
.product-card:hover,
.faq article:hover,
.trust-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.product-card__media {
  position: relative;
  display: grid;
  min-height: 168px;
  place-content: center;
  overflow: hidden;
  border: 1px solid rgba(47, 143, 91, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at 72% 20%, rgba(120, 200, 77, 0.2), transparent 7rem),
    linear-gradient(135deg, #f8fff2, #fff7ec);
  text-align: center;
}

.product-card__amazon-card {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(47, 49, 42, 0.02);
}

.product-card__amazon-card:hover {
  border-color: rgba(47, 143, 91, 0.28);
  transform: translateY(-1px);
}

.product-card__amazon-card img {
  width: 100%;
  height: 148px;
  object-fit: contain;
  padding: 18px 18px 10px;
}

.product-card__amazon-card > small {
  position: absolute;
  right: 12px;
  bottom: 10px;
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.product-card__amazon-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 999px;
  padding: 5px 8px;
  background: #111111;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 950;
}

.product-card__fallback {
  display: none;
}

.product-card__amazon-card.is-image-missing {
  background:
    radial-gradient(circle at 72% 20%, rgba(120, 200, 77, 0.2), transparent 7rem),
    linear-gradient(135deg, #f8fff2, #fff7ec);
}

.product-card__amazon-card.is-image-missing .product-card__fallback {
  display: grid;
  place-items: center;
}

.product-card__amazon-card.is-image-missing > small,
.product-card__amazon-card.is-image-missing .product-card__amazon-badge {
  display: none;
}

.product-card__fallback-initials {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.product-card__media--empty small,
.product-card__fallback small {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 850;
}

.product-card--featured {
  border-color: rgba(47, 143, 91, 0.2);
}

.product-card__title {
  display: -webkit-box;
  min-height: 2.56em;
  overflow: hidden;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.32;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-card__badges span,
.product-card__badges a {
  border: 1px solid rgba(47, 143, 91, 0.14);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(47, 143, 91, 0.07);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1;
}

.product-card__badges span:first-child,
.product-card__badges a:first-child {
  background: rgba(47, 143, 91, 0.1);
  color: var(--accent);
}

.product-card__badges a {
  border-color: rgba(47, 143, 91, 0.24);
  background: rgba(47, 143, 91, 0.1);
  text-decoration: none;
}

.product-card__badges a:hover {
  border-color: rgba(47, 143, 91, 0.42);
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

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

.product-card__condition {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(47, 143, 91, 0.12);
  border-radius: 16px;
  padding: 8px 10px;
  background: rgba(47, 143, 91, 0.06);
}

.product-card__condition span {
  color: var(--ink);
  font-weight: 950;
}

.product-card__condition small {
  display: none;
  color: var(--muted);
  font-weight: 800;
}

.product-card__fact {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
  border: 1px solid rgba(47, 49, 42, 0.08);
  border-radius: 16px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.product-card__fact-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(47, 143, 91, 0.1);
  color: var(--accent);
}

.product-card__fact-icon::before {
  width: 14px;
  height: 14px;
  display: block;
  content: "";
  border: 1.8px solid currentColor;
}

.product-card__fact-icon--box::before {
  border-radius: 4px;
  box-shadow: inset 0 5px 0 rgba(47, 143, 91, 0.13);
}

.product-card__fact-icon--tag::before {
  border-radius: 5px 5px 5px 1px;
  transform: rotate(-45deg);
}

.product-card__fact-icon--pin::before {
  width: 12px;
  height: 12px;
  border-radius: 50% 50% 50% 2px;
  transform: rotate(-45deg);
}

.product-card__fact-icon--link::before {
  width: 15px;
  height: 9px;
  border-radius: 999px;
}

.product-card__fact small,
.product-card__price small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.1;
}

.product-card__fact strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card__description {
  display: none;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.product-card__description a {
  color: var(--accent);
  font-weight: 850;
}

.product-card.is-expanded .product-card__description {
  display: block;
}

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

.product-card__commerce span {
  border: 1px solid rgba(47, 49, 42, 0.08);
  border-radius: 16px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.72);
}

.product-card__commerce small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
}

.product-card__commerce strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.15;
}

.product-card__commerce span:last-child {
  background: rgba(47, 143, 91, 0.08);
}

.product-card__commerce span:last-child strong {
  color: var(--accent);
}

.product-card__footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
  margin-top: auto;
}

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

.product-card__actions .button--card {
  grid-column: 1 / -1;
}

.product-card__price {
  justify-self: start;
  color: var(--muted-strong);
  text-align: left;
}

.product-card__price span {
  color: var(--muted-strong);
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.05;
}

.product-card .button {
  min-height: 38px;
  padding: 0 12px;
  font-size: 0.84rem;
}

.product-card .button--details {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
}

.product-card .button--card {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--gradient-accent);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(47, 143, 91, 0.18);
}

.product-card .button--card:hover {
  box-shadow: 0 16px 34px rgba(47, 143, 91, 0.24);
}

.product-card .button--media {
  border-color: var(--line);
  background: #ffffff;
  box-shadow: none;
  color: var(--ink);
}

.sales-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sales-card {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(47, 143, 91, 0.16);
  border-radius: 22px;
  padding: 18px;
  background:
    radial-gradient(circle at 92% 0%, rgba(120, 200, 77, 0.16), transparent 10rem),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.sales-card span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.sales-card strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.2;
}

.sales-card small {
  color: var(--muted);
  font-weight: 850;
}

.case-grid {
  display: grid;
  grid-template-columns: 1.16fr 1fr 1fr;
  gap: 16px;
}

.case-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(47, 143, 91, 0.16);
  border-radius: 26px;
  padding: 22px;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 179, 92, 0.16), transparent 12rem),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.case-card--featured {
  background:
    radial-gradient(circle at 88% 0%, rgba(120, 200, 77, 0.2), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 243, 0.94));
}

.case-card span {
  width: fit-content;
  border: 1px solid rgba(47, 143, 91, 0.18);
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.case-card > strong {
  color: var(--ink);
  font-size: clamp(2.05rem, 3.5vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.case-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.14;
}

.case-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 760;
}

.case-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 0;
}

.case-card dl div {
  display: grid;
  gap: 2px;
  border: 1px solid rgba(47, 143, 91, 0.12);
  border-radius: 16px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.case-card dt,
.case-card dd {
  margin: 0;
}

.case-card dt {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 850;
}

.case-card dd {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 950;
}

.trust-strip {
  width: min(1240px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 18px auto 0;
}

.trust-strip--wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
  padding-bottom: 24px;
}

.trust-card {
  min-height: 116px;
  display: grid;
  gap: 6px;
  align-content: start;
  border-radius: 22px;
  padding: 22px;
}

.trust-card strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.editorial-band {
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editorial-band p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.wholesale-grid article {
  border: 1px solid rgba(47, 143, 91, 0.16);
  border-radius: 28px;
  padding: 22px;
  background:
    radial-gradient(circle at 82% 0%, rgba(120, 200, 77, 0.18), transparent 12rem),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.wholesale-grid strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
}

.wholesale-grid span,
.wholesale-grid em {
  display: block;
  margin-top: 10px;
}

.wholesale-grid span {
  color: var(--muted-strong);
  font-weight: 850;
}

.wholesale-grid em {
  color: var(--accent);
  font-style: normal;
  font-weight: 950;
}

.department-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.department-chip {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 22px;
  padding: 18px;
  color: var(--ink);
  cursor: pointer;
}

.department-chip strong {
  color: var(--accent);
  font-size: 1.65rem;
}

.inquiry {
  width: min(1240px, calc(100% - 40px));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.inquiry-form {
  display: grid;
  gap: 14px;
  border-radius: 24px;
  padding: 24px;
}

.budget-request {
  padding-top: 54px;
  padding-bottom: 54px;
}

.budget-request .inquiry-form {
  background:
    radial-gradient(circle at 88% 0%, rgba(120, 200, 77, 0.14), transparent 14rem),
    rgba(255, 255, 255, 0.92);
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 650;
}

.checkbox input {
  width: auto;
  margin-top: 5px;
}

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

.order-panel {
  position: fixed;
  z-index: 50;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 2.1fr);
  gap: 18px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  border: 1px solid rgba(47, 143, 91, 0.2);
  border-radius: 26px;
  padding: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(120, 200, 77, 0.16), transparent 18rem),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 80px rgba(31, 32, 28, 0.22);
  backdrop-filter: blur(18px);
}

.order-panel[hidden] {
  display: none;
}

.has-order-panel {
  padding-bottom: 168px;
}

.order-panel__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 900;
}

.order-panel__summary {
  display: grid;
  gap: 5px;
  align-content: center;
  padding-right: 22px;
}

.order-panel__summary span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-panel__summary strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.order-panel__summary small,
.order-panel__totals span:last-child {
  color: var(--muted);
  font-weight: 760;
}

.order-panel__form {
  display: grid;
  grid-template-columns: 180px minmax(180px, 1fr) minmax(160px, auto);
  gap: 12px;
  align-items: end;
}

.order-panel__form label {
  display: grid;
  gap: 7px;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 850;
}

.order-panel__quantity span {
  display: grid;
  grid-template-columns: 40px minmax(54px, 1fr) 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}

.order-panel__quantity button {
  border: 0;
  background: var(--accent-soft);
  color: var(--accent);
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 950;
}

.order-panel__quantity input,
.order-panel__contact input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 14px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 800;
}

.order-panel__quantity input {
  border: 0;
  border-radius: 0;
  padding: 0 6px;
  text-align: center;
}

.order-panel__totals {
  display: grid;
  gap: 2px;
  align-self: center;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 850;
}

.order-panel__totals strong {
  color: var(--ink);
  font-size: 1rem;
}

.order-panel__actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 10px;
}

.order-panel__actions .button {
  min-height: 44px;
}

.order-panel .form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  font-size: 0.86rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.faq article {
  padding: 22px;
}

.faq article p {
  margin-bottom: 0;
}

.footer {
  margin-top: 0;
  padding: clamp(72px, 9vw, 112px) clamp(20px, 5vw, 72px) clamp(36px, 6vw, 64px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 28%, #ffffff 100%);
  color: var(--muted);
}

.footer__inner {
  width: min(1240px, 100%);
  display: grid;
  gap: clamp(44px, 7vw, 78px);
  margin: 0 auto;
}

.footer__top,
.footer__main,
.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.footer__top a,
.footer__bottom span {
  color: var(--muted);
  font-size: clamp(0.9rem, 1.45vw, 1.1rem);
  font-weight: 850;
}

.footer__top a:last-child,
.footer__bottom span:last-child {
  justify-self: end;
}

.footer__top a:hover,
.footer__contact:hover {
  color: var(--accent);
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer__social {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 143, 91, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(63, 55, 43, 0.08);
}

.footer__social:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 143, 91, 0.28);
  background: var(--accent-soft);
  color: var(--accent);
}

.footer__pill {
  width: fit-content;
  min-width: 156px;
  justify-self: start;
  border: 1px solid rgba(47, 143, 91, 0.14);
  border-radius: 999px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 0 16px 38px rgba(63, 55, 43, 0.08);
}

.footer__pill:last-child {
  justify-self: end;
}

.footer__pill:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 143, 91, 0.28);
  background: #ffffff;
  color: var(--accent);
  box-shadow: 0 18px 42px rgba(47, 143, 91, 0.12);
}

.footer__contact {
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 850;
}

@media (max-width: 760px) {
  .footer {
    margin-top: 0;
    padding: 46px 20px 38px;
  }

  .footer__inner {
    gap: 34px;
  }

  .footer__top,
  .footer__main,
  .footer__bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer__top a:last-child,
  .footer__bottom span:last-child,
  .footer__pill,
  .footer__pill:last-child {
    justify-self: center;
  }

  .footer__pill {
    min-width: min(100%, 220px);
    padding: 15px 22px;
  }
}

.reveal {
  animation: fadeUp 520ms ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1100px) {
  .topbar {
    flex-wrap: wrap;
  }

  .manager-link {
    margin-left: auto;
  }

  .hero__layout,
  .search-hub__header,
  .section__header,
  .inquiry,
  .editorial-band,
  .location-card {
    grid-template-columns: 1fr;
  }

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

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

  .warehouse-photo--wide {
    grid-column: 1 / -1;
    min-height: 320px;
  }

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

  .case-card--featured {
    grid-column: 1 / -1;
  }

  .department-list,
  .trust-strip,
  .wholesale-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog--first {
    margin-top: 0;
    padding-top: 28px;
  }

  .order-panel {
    grid-template-columns: 1fr;
  }

  .order-panel__form {
    grid-template-columns: minmax(160px, 0.7fr) minmax(220px, 1.3fr);
  }

  .order-panel__totals {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 12px;
  }

  .noticebar {
    font-size: 0.76rem;
  }

  .topbar {
    width: min(100% - 28px, 1180px);
    align-items: stretch;
    flex-direction: column;
  }

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

  .manager-link {
    margin-left: 0;
  }

  .topbar__links,
  .manager-link,
  .currency-switch {
    width: 100%;
    justify-content: space-between;
  }

  .topbar__links,
  .hero__note,
  .hero__badges {
    display: none;
  }

  .manager-link {
    justify-content: flex-start;
  }

  .currency-switch__button {
    flex: 1;
  }

  .hero__content,
  .section,
  .inquiry,
  .trust-strip {
    width: min(100% - 28px, 1180px);
  }

  .hero__content {
    padding: 22px 0 30px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.65rem);
    line-height: 1.04;
  }

  .hero__note {
    padding: 18px;
  }

  .section {
    padding: 58px 0;
  }

  .catalog--first {
    margin-top: 0;
    padding-top: 18px;
  }

  #catalogo,
  #destacados,
  #sales,
  #cases,
  #wholesale,
  #top {
    scroll-margin-top: 12px;
  }

  .hero__copy,
  .editorial-band p:last-child {
    font-size: 0.98rem;
  }

  .filters,
  .product-grid,
  .catalog-grid,
  .faq-grid,
  .sales-grid,
  .case-grid,
  .department-list,
  .trust-strip,
  .warehouse-grid,
  .trust-stats,
  .wholesale-grid {
    grid-template-columns: 1fr;
  }

  .case-card--featured {
    grid-column: auto;
  }

  .case-card dl {
    grid-template-columns: 1fr;
  }

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

  .hero__metrics {
    margin-top: 18px;
  }

  .hero__metrics span {
    padding: 10px;
  }

  .hero__metrics strong {
    font-size: 1.18rem;
  }

  .warehouse-photo,
  .warehouse-photo--wide {
    min-height: 220px;
  }

  .filters {
    gap: 14px;
    border-radius: 22px;
    padding: 14px;
  }

  .search-hub {
    border-radius: 24px;
    padding: 16px;
  }

  .search-hub__header {
    gap: 12px;
  }

  .search-hub__box {
    grid-template-columns: auto minmax(0, 1fr);
    border-radius: 20px;
  }

  .search-hub__clear {
    grid-column: 1 / -1;
    width: 100%;
  }

  .search-suggestions__item,
  .quick-search__chip {
    flex: 1 1 auto;
    min-width: calc(50% - 8px);
  }

  input,
  select,
  textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .catalog__meta {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog__meta .button,
  .hero__actions .button {
    width: 100%;
  }

  .search-hub--hero {
    flex-basis: 100%;
    min-width: 100%;
    max-width: none;
  }

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

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

  .product-card__media {
    min-height: 150px;
  }

  .product-card__amazon-card img {
    height: 130px;
    padding: 16px 16px 8px;
  }

  .product-card__price {
    justify-self: start;
    text-align: left;
  }

  .form-actions .button {
    width: 100%;
  }

  .has-order-panel {
    padding-bottom: 360px;
  }

  .order-panel {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    max-height: min(86vh, 520px);
    overflow: auto;
    border-radius: 22px;
    padding: 16px;
  }

  .order-panel__summary {
    padding-right: 36px;
  }

  .order-panel__form,
  .order-panel__actions,
  .order-panel__totals {
    grid-template-columns: 1fr;
  }

  .order-panel__actions .button {
    width: 100%;
  }
}
