@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Oswald:wght@600;700&display=swap");

:root {
  --bg: #070707;
  --ink: #fff7ea;
  --muted: #c7b7a4;
  --muted-dark: #81766b;
  --panel: rgba(255, 255, 255, .07);
  --panel-strong: rgba(255, 255, 255, .12);
  --line: rgba(255, 255, 255, .12);
  --yellow: #ffc928;
  --gold: #f6a900;
  --red: #be1d18;
  --green: #21c55d;
  --navy: #07142a;
  --radius: 26px;
  --shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 4%, rgba(190, 29, 24, .35), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(255, 201, 40, .18), transparent 24rem),
    linear-gradient(180deg, #070707 0%, #0c0706 48%, #070707 100%);
  color: var(--ink);
  font-family: Archivo, system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.site-shell {
  width: min(100% - 18px, 1440px);
  margin: 0 auto;
  position: relative;
}

.announcement {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-items: center;
  padding: 10px 0;
  color: #f8ead9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.announcement span,
.announcement a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.announcement span::before,
.announcement a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(255, 201, 40, .7);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 0 0 24px 24px;
  background: rgba(7, 7, 7, .86);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .3);
}

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

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  color: #170c02;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(255, 201, 40, .22);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  margin-top: 2px;
}

.search-box {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  padding: 0 16px;
  color: var(--muted);
  order: 3;
}

.search-box span {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 8px;
}

.desktop-nav a,
.cart-trigger {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--ink);
  padding: 0 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cart-trigger {
  gap: 8px;
}

.cart-trigger strong {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: #150c02;
}

.hero {
  min-height: 690px;
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 44px 0 26px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: -.035em;
  line-height: .86;
}

h1 {
  max-width: 900px;
  font-size: clamp(72px, 18vw, 164px);
  text-shadow: 0 18px 60px rgba(0, 0, 0, .38);
}

h2 {
  font-size: clamp(44px, 9vw, 98px);
}

.hero-text,
.muted {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn-primary,
.btn-secondary,
.btn-whatsapp,
.btn-clear {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.btn-primary {
  border: 0;
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  color: #160b02;
  box-shadow: 0 22px 48px rgba(255, 201, 40, .22);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--ink);
}

.btn-whatsapp {
  border: 0;
  background: linear-gradient(135deg, #25d366, #14b84f);
  color: #06150b;
  box-shadow: 0 22px 48px rgba(37, 211, 102, .22);
}

.btn-clear {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: var(--muted);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-whatsapp:hover {
  transform: translateY(-2px);
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-benefits span {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(0,0,0,.26);
  color: #f6e5d4;
  padding: 10px 13px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 201, 40, .18), transparent 34%),
    linear-gradient(145deg, rgba(190,29,24,.38), rgba(255,255,255,.05));
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto -16% -28% -16%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(255, 201, 40, .26), transparent 62%);
}

.hero-visual img {
  width: min(85%, 620px);
  transform: rotate(-4deg) scale(1.04);
  filter: drop-shadow(0 34px 45px rgba(0,0,0,.45));
}

.hero-card {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: min(78%, 270px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(8,8,8,.82);
  backdrop-filter: blur(16px);
  padding: 17px;
}

.hero-card span,
.hero-card small {
  display: block;
  color: var(--muted);
}

.hero-card span {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin: 8px 0 5px;
  font-size: 24px;
}

.quick-strip {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #061a39, #0d2752);
  padding: 12px;
  box-shadow: var(--shadow);
}

.quick-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  align-items: center;
  padding: 12px;
}

.quick-strip span {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: var(--yellow);
  color: #07142a;
  font-weight: 900;
}

.quick-strip strong {
  font-weight: 900;
}

.quick-strip small {
  color: #c9d6ea;
}

.section {
  padding: 68px 0 0;
}

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

.section-link {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.category-card {
  min-height: 146px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 201, 40, .12), transparent 44%),
    rgba(255,255,255,.06);
  color: var(--ink);
  padding: 16px;
  transition: .18s ease;
}

.category-card.active {
  border-color: rgba(255, 201, 40, .7);
  background:
    radial-gradient(circle at top right, rgba(255, 201, 40, .2), transparent 46%),
    rgba(255, 201, 40, .08);
}

.category-card span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.category-card strong {
  font-family: Oswald, Impact, sans-serif;
  font-size: 54px;
  line-height: 1;
}

.category-card small {
  color: var(--muted);
  line-height: 1.35;
}

.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 16px;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar { display: none; }

.tab {
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--muted);
  padding: 0 16px;
  font-weight: 900;
  white-space: nowrap;
}

.tab.active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #160b02;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.product-media {
  position: relative;
  min-height: 170px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 201, 40, .18), transparent 45%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(190,29,24,.14));
}

.product-media img {
  width: 84%;
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.38));
}

.product-media span {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  background: #080808;
  color: var(--yellow);
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-info {
  padding: 14px;
}

.product-info h3 {
  margin: 0;
  font-size: clamp(18px, 4vw, 26px);
  line-height: 1.05;
}

.product-info p {
  min-height: 58px;
  margin: 9px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-buy strong {
  color: var(--yellow);
  font-size: 20px;
}

.add-btn {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #100a03;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mini-qty {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mini-qty button,
.mini-qty span {
  display: grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #100a03;
  font-weight: 900;
}

.mini-qty span {
  background: rgba(255,255,255,.1);
  color: var(--ink);
}

.combo-band {
  display: grid;
  gap: 20px;
  align-items: center;
  margin-top: 72px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(6, 20, 42, .92), rgba(6, 20, 42, .58)),
    radial-gradient(circle at right, rgba(255, 201, 40, .22), transparent 38%),
    #06142a;
  padding: clamp(22px, 5vw, 42px);
  box-shadow: var(--shadow);
}

.combo-band p {
  max-width: 700px;
  color: #d8e2f2;
  font-size: 18px;
  line-height: 1.45;
}

.split-section {
  display: grid;
  gap: 18px;
}

.delivery-grid,
.value-grid {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.delivery-grid article,
.value-grid article,
.delivery-panel {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  padding: 18px;
}

.delivery-grid strong,
.value-grid strong,
.delivery-panel strong {
  display: block;
  font-size: 20px;
}

.delivery-grid span,
.value-grid span,
.delivery-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.4;
}

.delivery-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 330px;
  background:
    radial-gradient(circle at top right, rgba(37, 211, 102, .22), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
}

.delivery-panel b {
  font-family: Oswald, Impact, sans-serif;
  color: var(--yellow);
  font-size: 58px;
  line-height: .9;
}

.brand-section {
  text-align: center;
}

.brand-section h2,
.brand-section .value-grid {
  margin-inline: auto;
}

.brand-section h2 {
  max-width: 980px;
}

.location-section {
  display: grid;
  gap: 18px;
  align-items: stretch;
  padding-bottom: 70px;
}

.map-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: #f0ddbf;
  box-shadow: var(--shadow);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(50,30,10,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50,30,10,.08) 1px, transparent 1px);
  background-size: 54px 54px;
}

.map-route {
  position: absolute;
  inset: 18%;
  border: 24px solid rgba(190, 29, 24, .2);
  border-radius: 999px;
  transform: rotate(-8deg);
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(84%, 420px);
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  border-radius: 24px;
  background: #070707;
  color: var(--ink);
  padding: 32px 18px;
  text-align: center;
  box-shadow: 0 22px 50px rgba(0,0,0,.26);
}

.map-pin span {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 18px rgba(190, 29, 24, .18);
}

.map-pin strong {
  font-family: Oswald, Impact, sans-serif;
  font-size: 42px;
  text-transform: uppercase;
}

.map-pin small {
  color: var(--muted);
}

.site-footer {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 26px 0 96px;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  font-size: 22px;
  font-weight: 900;
}

.site-footer span {
  margin-top: 4px;
  color: var(--muted);
}

.floating-cart {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #041408;
  padding: 0 18px;
  box-shadow: 0 18px 50px rgba(37, 211, 102, .32);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.floating-cart span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}

.cart-drawer.open {
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.58);
  opacity: 0;
  transition: .22s ease;
}

.cart-drawer.open .cart-backdrop {
  opacity: 1;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 470px);
  height: 100%;
  overflow: auto;
  transform: translateX(104%);
  transition: .24s ease;
  border-left: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at top right, rgba(255, 201, 40, .14), transparent 24rem),
    #090909;
  padding: 18px;
  box-shadow: -30px 0 90px rgba(0,0,0,.42);
}

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

.cart-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.cart-panel h2 {
  font-size: 44px;
}

.icon-btn {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--ink);
  font-size: 26px;
}

.cart-lines {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  padding: 14px;
}

.cart-line strong,
.cart-line span {
  display: block;
}

.cart-line span {
  margin: 5px 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.cart-line b {
  color: var(--yellow);
}

.remove-line {
  width: auto !important;
  padding: 0 11px;
}

.cart-empty,
.empty-state {
  border: 1px dashed rgba(255,255,255,.16);
  border-radius: 20px;
  color: var(--muted);
  padding: 18px;
}

.checkout-form {
  display: grid;
  gap: 13px;
}

.form-grid {
  display: grid;
  gap: 13px;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 15px;
  outline: 0;
  background: rgba(255,255,255,.07);
  color: var(--ink);
  padding: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.checkout-form option {
  background: #111;
}

.totals {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(0,0,0,.24);
  padding: 14px;
}

.totals div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

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

.totals strong {
  color: var(--ink);
}

.totals div:last-child strong {
  color: var(--yellow);
  font-size: 22px;
}

.checkout-btn {
  width: 100%;
}

.checkout-ok,
.checkout-error {
  border-radius: 15px;
  padding: 12px;
  font-size: 13px;
  line-height: 1.4;
}

.checkout-ok {
  border: 1px solid rgba(37, 211, 102, .3);
  background: rgba(37, 211, 102, .12);
  color: #aff8c9;
}

.checkout-error {
  border: 1px solid rgba(255, 96, 96, .3);
  background: rgba(255, 96, 96, .12);
  color: #ffd1d1;
}

@media (min-width: 760px) {
  .announcement {
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
  }

  .site-header {
    grid-template-columns: auto 1fr auto auto;
    border-radius: 999px;
    margin-top: 10px;
  }

  .search-box {
    grid-column: auto;
    order: initial;
  }

  .desktop-nav {
    display: flex;
  }

  .hero {
    grid-template-columns: 1.05fr .95fr;
  }

  .quick-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-cards {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .combo-band,
  .split-section,
  .location-section {
    grid-template-columns: 1fr .8fr;
  }

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

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

@media (min-width: 1120px) {
  .site-shell {
    width: min(100% - 48px, 1440px);
  }

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

@media (max-width: 520px) {
  .site-shell {
    width: min(100% - 12px, 1440px);
  }

  .announcement {
    font-size: 10px;
  }

  .site-header {
    padding: 9px;
  }

  .cart-trigger span {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-visual {
    min-height: 290px;
  }

  .category-card small {
    display: none;
  }

  .category-card {
    min-height: 112px;
  }

  .product-media {
    min-height: 138px;
  }

  .product-info h3 {
    font-size: 18px;
  }

  .product-info p {
    display: none;
  }

  .product-buy {
    display: grid;
    gap: 9px;
  }

  .add-btn,
  .mini-qty {
    width: 100%;
    justify-content: space-between;
  }

  .floating-cart {
    left: 12px;
    right: 12px;
    justify-content: center;
  }
}
