/* ============================================================
   MELODÍA MUSIC STORE — styles.css
   Estética: minimalista, blanco/negro, tipografía editorial
   ============================================================ */

/* ── Reset & Variables ─────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg:       #FAFAF8;
  --fg:       #0D0D0D;
  --fg2:      #555550;
  --fg3:      #999990;
  --border:   #E0DFD8;
  --accent:   #0D0D0D;
  --white:    #FFFFFF;
  --danger:   #C0392B;
  --info:     #1a5276;
  --success:  #27ae60;
  --sans:     'DM Mono', monospace;
  --serif:    'Cormorant Garamond', serif;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  font-size: 13px;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Navegación ────────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 60px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  cursor: pointer;
}
.nav-logo span {
  font-style: italic;
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--fg2);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-actions button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg2);
  font-size: 18px;
  position: relative;
  transition: color 0.2s;
  padding: 4px;
}
.nav-actions button:hover { color: var(--fg); }

.badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--fg);
  color: var(--white);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
}

/* ── Botón hamburguesa ─────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--fg);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1),
              opacity   0.25s ease,
              width     0.3s ease;
}
/* Animación a X cuando está abierto */
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Menú móvil desplegable ────────────────────────────────── */
.mobile-menu {
  display: none;
  position: sticky;
  top: 60px;
  z-index: 99;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { max-height: 400px; }
.mobile-menu ul   { list-style: none; padding: 0.5rem 0; }
.mobile-menu ul li a {
  display: block;
  padding: 0.85rem 1.5rem;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg2);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-left: 2px solid transparent;
}
.mobile-menu ul li a:hover {
  background: var(--bg);
  color: var(--fg);
  border-left-color: var(--fg);
}

/* ── Barra de búsqueda ─────────────────────────────────────── */
.search-bar {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 0 2.5rem;
  height: 48px;
  background: var(--white);
  gap: 1rem;
}
.search-bar input {
  border: none;
  background: none;
  outline: none;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--fg);
  flex: 1;
  letter-spacing: 0.03em;
}
.search-bar input::placeholder { color: var(--fg3); }
.search-bar i { color: var(--fg3); font-size: 16px; }
.search-bar button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg2);
  font-size: 16px;
  font-family: var(--sans);
  transition: color 0.2s;
}
.search-bar button:hover { color: var(--fg); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  padding: 5rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: url('img/background.webp') no-repeat center right;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--white) 30%,
    rgba(255, 255, 255, 0.75) 55%,
    rgba(255, 255, 255, 0.1) 100%
  );
  z-index: 0;
}

.hero-text h1 {
  font-family: var(--serif);
  font-size: 62px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-text h1 em {
  font-style: italic;
  font-weight: 300;
}

.hero-text p {
  color: var(--fg2);
  line-height: 1.8;
  font-size: 12px;
  max-width: 360px;
  margin-bottom: 2rem;
  position:relative;
  z-index: 1;
}



/* ── Botones ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fg);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  position: relative;
  z-index: 1;
}
.btn-primary:hover { opacity: 0.8; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  color: var(--fg2);
  border: 1px solid var(--border);
  padding: 12px 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  margin-left: 12px;
  position: relative;
  z-index: 1;
}
.btn-outline:hover { border-color: var(--fg); }

/* ── Filtros ───────────────────────────────────────────────── */
.filters {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }

.filter-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg3);
  white-space: nowrap;
  margin-right: 0.5rem;
}

.filter-btn {
  background: none;
  border: 1px solid var(--border);
  padding: 6px 16px;
  font-family: var(--sans);
  font-size: 11px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  color: var(--fg2);
  letter-spacing: 0.04em;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--fg);
  color: var(--white);
  border-color: var(--fg);
}

/* ── Catálogo ──────────────────────────────────────────────── */
.catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem 1rem;
}
.catalog-header h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
}
.catalog-meta {
  font-size: 11px;
  color: var(--fg3);
  letter-spacing: 0.04em;
}

.catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  padding: 0 2.5rem 3rem;
  border-top: 1px solid var(--border);
}

/* ── Tarjeta de producto ───────────────────────────────────── */
.product-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.product-card:nth-child(4n) { border-right: none; }
.product-card:hover { background: #F5F5F2; }

.product-img {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 1.25rem;
  background: #F0EFEB;
  overflow: hidden;
  position: relative;
}

/* Skeleton loader: pulso mientras carga la imagen */
.product-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #F0EFEB 25%, #E8E7E2 50%, #F0EFEB 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.4s ease infinite;
  z-index: 0;
}

/* La imagen se pone encima del skeleton una vez cargada */
.product-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s cubic-bezier(.4, 0, .2, 1), opacity 0.3s;
  opacity: 0;
}
.product-img img.loaded { opacity: 1; }

/* Zoom suave al hacer hover en la tarjeta */
.product-card:hover .product-img img { transform: scale(1.05); }

/* Imágenes verticales: contain para mostrar el instrumento completo */
.product-img.img-contain img {
  object-fit: contain;
  object-position: center;
  padding: 8px;
}

/* Fallback si la imagen falla */
.product-img.img-error::after {
  content: '🎵';
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: #F0EFEB;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--fg);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  text-transform: uppercase;
  z-index: 2;
}
.product-badge.sale { background: var(--danger); }
.product-badge.new  { background: var(--info); }

.product-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 4px;
  line-height: 1.3;
}
.product-brand {
  font-size: 10px;
  color: var(--fg3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.product-price .old {
  text-decoration: line-through;
  color: var(--fg3);
  font-size: 12px;
  margin-right: 6px;
}

.product-actions {
  display: flex;
  gap: 6px;
}

.icon-btn {
  background: none;
  border: 1px solid var(--border);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--fg2);
  font-size: 15px;
}
.icon-btn:hover,
.icon-btn.loved {
  background: var(--fg);
  color: var(--white);
  border-color: var(--fg);
}

/* ── Panel lateral ─────────────────────────────────────────── */
.panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.panel-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 420px;
  max-width: 95vw;
  background: var(--white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}
.panel.open { transform: translateX(0); }

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.panel-head h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
}

.panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
}
.panel-foot {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg2);
  font-size: 20px;
  padding: 4px;
  transition: color 0.2s;
}
.close-btn:hover { color: var(--fg); }

/* ── Ítems del carrito ─────────────────────────────────────── */
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }

.cart-item-img {
  width: 72px;
  height: 72px;
  background: #F0EFEB;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.3s;
  opacity: 0;
}
.cart-item-img img.loaded { opacity: 1; }
.cart-item-info { flex: 1; }

.cart-item-name {
  font-family: var(--serif);
  font-size: 15px;
  margin-bottom: 2px;
}
.cart-item-brand {
  font-size: 10px;
  color: var(--fg3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  background: none;
  border: 1px solid var(--border);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--fg);
  transition: all 0.2s;
}
.qty-btn:hover {
  background: var(--fg);
  color: var(--white);
  border-color: var(--fg);
}
.qty-val {
  font-size: 13px;
  min-width: 20px;
  text-align: center;
}

.cart-item-price {
  font-size: 14px;
  white-space: nowrap;
}

.remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg3);
  font-size: 16px;
  padding: 0;
  transition: color 0.2s;
}
.remove-btn:hover { color: var(--danger); }

/* Estado vacío */
.cart-empty {
  text-align: center;
  padding: 3rem 0;
  color: var(--fg3);
}
.cart-empty i {
  font-size: 48px;
  display: block;
  margin-bottom: 1rem;
}
.cart-empty p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
}

/* Totales */
.cart-totals { margin-bottom: 1.25rem; }
.cart-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--fg2);
}
.cart-row.total {
  font-size: 15px;
  color: var(--fg);
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 10px;
}
.cart-row.total .label {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

/* ── Checkout ──────────────────────────────────────────────── */
.checkout-section { margin-bottom: 1.5rem; }
.checkout-section label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg3);
  margin-bottom: 6px;
}
.checkout-section input,
.checkout-section select {
  width: 100%;
  border: 1px solid var(--border);
  padding: 10px 12px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--fg);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.checkout-section input:focus,
.checkout-section select:focus { border-color: var(--fg); }

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.card-input-wrap { position: relative; }
.card-input-wrap i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fg3);
  font-size: 16px;
}

/* Step dots */
.step-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 1.5rem;
}
.step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s;
}
.step-dot.active {
  background: var(--fg);
  width: 20px;
  border-radius: 3px;
}

/* ── Detalle de producto ───────────────────────────────────── */
.detail-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #F0EFEB;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
}
.detail-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #F0EFEB 25%, #E8E7E2 50%, #F0EFEB 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.4s ease infinite;
  z-index: 0;
}
.detail-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(.4, 0, .2, 1), opacity 0.3s;
  opacity: 0;
}
.detail-img img.loaded { opacity: 1; }
.detail-img:hover img  { transform: scale(1.04); }
.detail-badge {
  display: inline-block;
  background: var(--fg);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.detail-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4px;
}
.detail-brand {
  font-size: 11px;
  color: var(--fg3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.detail-price {
  font-size: 22px;
  margin-bottom: 1.25rem;
}
.detail-desc {
  font-size: 12px;
  color: var(--fg2);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.detail-specs {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-bottom: 1.5rem;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
}
.spec-row:last-child { border-bottom: none; }
.spec-key {
  color: var(--fg3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stars {
  color: var(--fg);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.review-count {
  font-size: 10px;
  color: var(--fg3);
  margin-bottom: 1rem;
}

/* ── Confirmación de pedido ────────────────────────────────── */
.success-panel {
  text-align: center;
  padding: 2rem 0;
}
.success-icon {
  font-size: 56px;
  margin-bottom: 1rem;
  display: block;
}
.success-panel h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 8px;
}
.success-panel p {
  color: var(--fg2);
  font-size: 12px;
  line-height: 1.7;
}
.order-num {
  display: inline-block;
  background: #F0F0EC;
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin: 1.25rem 0;
  text-transform: uppercase;
}

/* ── Toast ─────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--fg);
  color: var(--white);
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.04em;
  z-index: 999;
  opacity: 0;
  transition: all 0.3s;
  white-space: nowrap;
  pointer-events: none;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── Footer ────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background: var(--white);
}

footer h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1rem;
}
footer p {
  font-size: 11px;
  color: var(--fg2);
  line-height: 1.7;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul li a {
  color: var(--fg2);
  text-decoration: none;
  font-size: 11px;
  cursor: pointer;
  transition: color 0.2s;
}
footer ul li a:hover { color: var(--fg); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
}
.footer-bottom p {
  font-size: 10px;
  color: var(--fg3);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Animación skeleton loader ─────────────────────────────── */
@keyframes skeleton-pulse {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Animación de entrada de tarjetas ──────────────────────── */
@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: card-enter 0.45s cubic-bezier(.4,0,.2,1) both;
}
/* Delay escalonado para los primeros 8 productos */
.product-card:nth-child(1)  { animation-delay: 0.03s; }
.product-card:nth-child(2)  { animation-delay: 0.07s; }
.product-card:nth-child(3)  { animation-delay: 0.11s; }
.product-card:nth-child(4)  { animation-delay: 0.15s; }
.product-card:nth-child(5)  { animation-delay: 0.19s; }
.product-card:nth-child(6)  { animation-delay: 0.23s; }
.product-card:nth-child(7)  { animation-delay: 0.27s; }
.product-card:nth-child(8)  { animation-delay: 0.31s; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .mobile-menu { display: block; }

  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.25rem 2.5rem;
  }
  .hero-text h1 { font-size: 40px; }
  .hero-visual  { display: none; }

  .filters { padding: 1rem 1.25rem; }

  .catalog {
    padding: 0 1.25rem 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .product-card:nth-child(4n) { border-right: 1px solid var(--border); }
  .product-card:nth-child(2n) { border-right: none; }

  .catalog-header { padding: 1.5rem 1.25rem 0.75rem; }
  .detail-img     { aspect-ratio: 3 / 2; }

  footer { grid-template-columns: 1fr 1fr; padding: 2rem 1.25rem; }
  .footer-bottom {
    padding: 1rem 1.25rem;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}