/* =========================================================
   PRIME VAPE — CABEÇALHO
   Visual remodelado com base no layout Hubt
========================================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  height: 64px;
  padding: 0 18px;

  border-bottom: 1px solid var(--border);

  background: rgba(5, 5, 4, 0.92);

  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.02),
    0 12px 30px rgba(0, 0, 0, 0.16);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* =========================================================
   LOGO E IDENTIDADE
========================================================= */

.logo-area {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  gap: 9px;

  min-width: 0;
}

.logo-image {
  display: block;
  flex: 0 0 auto;

  width: 38px;
  height: 38px;

  border: 1px solid var(--border);
  border-radius: 50%;

  background: var(--surface-soft);

  object-fit: cover;

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.22),
    0 0 0 3px rgba(var(--accent-rgb), 0.05);
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 6px;

  min-width: 0;
}

.logo-text h1 {
  overflow: hidden;

  margin: 0;

  color: var(--text);

  font-family: var(--site-font-family);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.logo-text span {
  display: inline-flex;
  align-items: center;

  min-height: 22px;
  padding: 0 7px;

  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 999px;

  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent-light);

  font-family: var(--site-font-family);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

/* Informações centrais da loja */
.storefront-header-info {
  align-items: center;
  display: flex;
  gap: 9px;
  left: 50%;
  max-width: min(46vw, 620px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.storefront-header-info.is-empty {
  display: none;
}

.storefront-header-clock,
.storefront-header-whatsapp {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.storefront-header-clock {
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 6px 11px;
}

.storefront-header-clock[hidden],
.storefront-header-whatsapp[hidden] {
  display: none !important;
}

.storefront-header-clock strong {
  color: #f1b64a;
  font-size: 0.68rem;
  line-height: 1.2;
}

.storefront-header-clock strong.is-open {
  color: #45d18a;
}

.storefront-header-clock time {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-size: 0.72rem;
  white-space: nowrap;
}

.storefront-header-whatsapp {
  align-items: center;
  color: var(--text);
  cursor: copy;
  display: grid;
  gap: 8px;
  grid-template-columns: 30px minmax(0, 1fr);
  padding: 5px 10px;
  position: relative;
  text-align: left;
}

.storefront-header-whatsapp:hover,
.storefront-header-whatsapp:focus-visible,
.storefront-header-whatsapp.is-copied {
  border-color: rgba(69, 209, 138, 0.6);
  background: rgba(69, 209, 138, 0.09);
}

.storefront-header-whatsapp-icon {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  color: #071b0e;
  display: flex;
  font-size: 0.58rem;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.storefront-header-whatsapp > span:nth-child(2) {
  display: grid;
  gap: 1px;
}

.storefront-header-whatsapp small {
  color: #45d18a;
  font-size: 0.62rem;
  font-weight: 800;
}

.storefront-header-whatsapp strong {
  font-size: 0.7rem;
  white-space: nowrap;
}

.storefront-header-whatsapp em {
  bottom: -27px;
  left: 50%;
  opacity: 0;
  padding: 4px 7px;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  border-radius: 4px;
  background: #111;
  color: #fff;
  font-size: 0.62rem;
  font-style: normal;
  white-space: nowrap;
}

.storefront-header-whatsapp:hover em,
.storefront-header-whatsapp:focus-visible em,
.storefront-header-whatsapp.is-copied em {
  opacity: 1;
}

/* =========================================================
   AÇÕES DO CABEÇALHO
========================================================= */

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 8px;

  min-width: 0;
}

.header-actions > .button-primary,
.header-actions > .button-secondary {
  min-height: 38px;
  padding: 0 13px;

  border-radius: var(--radius-sm);

  font-size: 0.78rem;
  white-space: nowrap;
}

/* =========================================================
   BOTÃO DE BUSCA
========================================================= */

#open-search-modal-button.search-trigger-button {
  position: relative;

  display: grid;
  place-items: center;
  flex: 0 0 auto;

  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;

  overflow: visible;

  border: 1px solid rgba(var(--accent-rgb), 0.42);
  border-radius: 11px;

  appearance: none;
  -webkit-appearance: none;

  background: linear-gradient(180deg, #302719 0%, #1d1811 58%, #12100d 100%);

  color: #f6c861;

  box-shadow:
    0 7px 18px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(0, 0, 0, 0.38);

  cursor: pointer;

  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background 150ms ease,
    color 150ms ease,
    box-shadow 150ms ease;
}

#open-search-modal-button.search-trigger-button > span {
  display: none;
}

#open-search-modal-button.search-trigger-button::before {
  content: "";

  position: absolute;
  inset: 0;
  margin: auto;

  width: 19px;
  height: 19px;

  background-color: currentColor;

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7.25'/%3E%3Cline x1='21' y1='21' x2='16.4' y2='16.4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7.25'/%3E%3Cline x1='21' y1='21' x2='16.4' y2='16.4'/%3E%3C/svg%3E");

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;

  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35));

  pointer-events: none;

  transition:
    transform 150ms ease,
    filter 150ms ease;
}

#open-search-modal-button.search-trigger-button::after {
  content: none;
}

#open-search-modal-button.search-trigger-button:hover::before {
  transform: scale(1.08);
  filter: drop-shadow(0 2px 4px rgba(246, 200, 97, 0.45));
}

#open-search-modal-button.search-trigger-button:active::before {
  transform: scale(0.94);
}

#open-search-modal-button.search-trigger-button:hover {
  transform: translateY(-2px);

  border-color: rgba(var(--accent-rgb), 0.78);

  background: linear-gradient(180deg, #40331f 0%, #261e14 58%, #17120d 100%);

  color: #ffe09a;

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.34),
    0 0 0 3px rgba(var(--accent-rgb), 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

#open-search-modal-button.search-trigger-button:active {
  transform: translateY(0);

  background: linear-gradient(180deg, #17130e 0%, #211a12 100%);

  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.3),
    inset 0 2px 5px rgba(0, 0, 0, 0.32);
}

#open-search-modal-button.search-trigger-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

#open-search-modal-button.search-trigger-button.is-active {
  border-color: var(--accent);

  background: linear-gradient(180deg, #4a391d 0%, #2b2114 100%);

  color: #ffe5aa;

  box-shadow:
    0 0 0 3px rgba(var(--accent-rgb), 0.15),
    0 9px 22px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* =========================================================
   CONTADOR DA BUSCA
========================================================= */

.search-trigger-count {
  position: absolute;
  top: -6px;
  right: -6px;
  z-index: 3;

  display: grid;
  place-items: center;

  min-width: 19px;
  height: 19px;
  padding: 0 5px;

  border: 2px solid #111111;
  border-radius: 999px;

  background: var(--accent);
  color: #17120b;

  font-family: var(--site-font-family);
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.32);
}

.search-trigger-count[hidden] {
  display: none;
}
/* =========================================================
   ABAS MOBILE
========================================================= */

.mobile-store-tabs {
  display: none;
}

/* =========================================================
   STATUS DO USUÁRIO
========================================================= */

.login-status {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  align-items: center;
  column-gap: 9px;
  row-gap: 1px;

  min-width: 188px;
  min-height: 38px;
  padding: 6px 10px;

  border: 1px solid var(--border);
  border-radius: var(--radius-sm);

  background: rgba(255, 255, 255, 0.025);

  transition:
    border-color 150ms ease,
    background 150ms ease;
}

.login-status:hover {
  border-color: var(--border-strong);

  background: rgba(255, 255, 255, 0.04);
}

.login-status strong,
.login-status small {
  grid-column: 2;

  overflow: hidden;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.login-status strong {
  color: var(--text);

  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.login-status small {
  color: var(--text-muted);

  font-size: 0.66rem;
  line-height: 1.2;
}

/* =========================================================
   INDICADOR DE STATUS
========================================================= */

.status-dot {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--warning);

  box-shadow:
    0 0 0 4px rgba(245, 158, 11, 0.1),
    0 0 8px rgba(245, 158, 11, 0.5);
}

.status-dot.is-online {
  background: var(--green);

  box-shadow:
    0 0 0 4px rgba(34, 197, 94, 0.1),
    0 0 8px rgba(34, 197, 94, 0.5);

  animation: header-status-pulse 2.4s ease-in-out infinite;
}

@keyframes header-status-pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.48;
  }
}

/* =========================================================
   CONTEÚDO PRINCIPAL
========================================================= */

.main-content {
  display: grid;
  gap: 22px;

  min-width: 0;
  margin-left: var(--sidebar-width);

  padding: 88px calc(var(--cart-panel-width) + var(--content-right-gutter)) 42px
    24px;
}

/* =========================================================
   FOCO E ACESSIBILIDADE
========================================================= */

.search-trigger-button:focus-visible,
.header-actions a:focus-visible,
.header-actions button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* =========================================================
   TELAS INTERMEDIÁRIAS
========================================================= */

@media (max-width: 1240px) {
  .storefront-header-info {
    max-width: 40vw;
  }
  .storefront-header-clock {
    min-width: 160px;
  }
  .storefront-header-clock time {
    font-size: 0.66rem;
  }
  .storefront-header-whatsapp strong {
    font-size: 0.64rem;
  }
  .login-status {
    min-width: 170px;
  }

  .main-content {
    padding-right: calc(var(--cart-panel-width) + var(--content-right-gutter));
  }
}

@media (max-width: 1080px) {
  .main-content {
    margin-left: 0;
    padding-top: 84px;
  }
}

@media (max-width: 900px) {
  .header {
    height: auto;
    min-height: 112px;
    padding: 10px 14px 54px;
  }

  .storefront-header-info {
    bottom: 7px;
    left: 50%;
    max-width: calc(100vw - 28px);
    top: auto;
    transform: translateX(-50%);
  }

  .storefront-header-clock,
  .storefront-header-whatsapp {
    min-height: 38px;
  }

  .login-status {
    min-width: 155px;
  }

  .main-content {
    padding-top: 132px;
  }
}

/* =========================================================
   CELULAR
========================================================= */

#mobile-search-tab {
  position: relative;

  display: grid;
  place-items: center;

  min-width: 0;
  height: 42px;
  padding: 0;

  border: 1px solid rgba(var(--accent-rgb), 0.42);
  border-radius: 9px;

  appearance: none;
  -webkit-appearance: none;

  background: linear-gradient(180deg, #302719 0%, #17130e 100%);

  color: #f6c861;

  box-shadow:
    0 5px 12px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);

  cursor: pointer;

  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background 150ms ease,
    color 150ms ease,
    box-shadow 150ms ease;
}

#mobile-search-tab > span {
  display: none;
}

#mobile-search-tab::before {
  content: "";

  position: absolute;
  inset: 0;
  margin: auto;

  width: 18px;
  height: 18px;

  background-color: currentColor;

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7.25'/%3E%3Cline x1='21' y1='21' x2='16.4' y2='16.4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7.25'/%3E%3Cline x1='21' y1='21' x2='16.4' y2='16.4'/%3E%3C/svg%3E");

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;

  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35));

  pointer-events: none;

  transition:
    transform 150ms ease,
    filter 150ms ease;
}

#mobile-search-tab::after {
  content: none;
}

#mobile-search-tab:hover::before,
#mobile-search-tab:focus-visible::before {
  transform: scale(1.08);
  filter: drop-shadow(0 2px 4px rgba(246, 200, 97, 0.45));
}

#mobile-search-tab:active::before {
  transform: scale(0.94);
}

#mobile-search-tab:hover,
#mobile-search-tab:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.78);

  background: linear-gradient(180deg, #40331f 0%, #211a12 100%);

  color: #ffe09a;

  box-shadow:
    0 7px 16px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(var(--accent-rgb), 0.11);
}

#mobile-search-tab:active {
  transform: scale(0.97);
}

@media (max-width: 430px) {
  .header {
    padding-inline: 8px;
  }

  .logo-text h1 {
    max-width: 92px;

    font-size: 0.84rem;
  }

  .logo-text span {
    display: none;
  }

  .header-actions > .button-primary,
  .header-actions > .button-secondary {
    min-height: 34px;
    padding: 0 8px;

    font-size: 0.68rem;
  }

  .mobile-store-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-inline: 6px;
  }

  .mobile-store-tabs button {
    min-height: 34px;

    font-size: 0.61rem;
  }

  .main-content {
    padding: 142px 8px 22px;
  }

  .storefront-header-info {
    gap: 5px;
    width: calc(100vw - 16px);
  }
  .storefront-header-clock {
    min-width: 0;
    flex: 1;
    padding-inline: 7px;
  }
  .storefront-header-clock strong {
    font-size: 0.59rem;
  }
  .storefront-header-clock time {
    font-size: 0.58rem;
  }
  .storefront-header-whatsapp {
    min-width: 0;
    padding-inline: 7px;
  }
  .storefront-header-whatsapp strong {
    font-size: 0.58rem;
  }
}
/* =========================================================
   CABEÇALHO — RELÓGIO E WHATSAPP
   Somente CSS. Adicione no final do arquivo atual.
========================================================= */

.storefront-header-info {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: max-content;
  max-width: min(50vw, 660px);
}

.storefront-header-info.is-empty {
  display: none;
}

.storefront-header-clock,
.storefront-header-whatsapp {
  position: relative;
  min-height: 44px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 7px 18px rgba(0, 0, 0, 0.14);
  transition:
    border-color 120ms linear,
    background-color 120ms linear,
    box-shadow 120ms linear;
}

.storefront-header-clock[hidden],
.storefront-header-whatsapp[hidden] {
  display: none !important;
}

/* =========================================================
   RELÓGIO
========================================================= */

.storefront-header-clock {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 9px;
  row-gap: 1px;
  min-width: 210px;
  padding: 7px 11px 7px 9px;
}

.storefront-header-clock::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(241, 182, 74, 0.28);
  border-radius: 8px;
  background-color: #f1b64a;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M12 7v5l3 2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M12 7v5l3 2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 18px;
  mask-size: 18px;
  -webkit-mask-position: center;
  mask-position: center;
  opacity: 0.95;
}

.storefront-header-clock strong {
  grid-column: 2;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: #f1b64a;
  font-size: 0.61rem;
  font-weight: 850;
  line-height: 1.25;
  white-space: nowrap;
}

.storefront-header-clock strong::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(241, 182, 74, 0.1);
}

.storefront-header-clock strong.is-open {
  color: #45d18a;
}

.storefront-header-clock strong.is-open::before {
  box-shadow:
    0 0 0 3px rgba(69, 209, 138, 0.12),
    0 0 7px rgba(69, 209, 138, 0.38);
}

.storefront-header-clock time {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.65rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* =========================================================
   WHATSAPP
========================================================= */

.storefront-header-whatsapp {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-width: 194px;
  padding: 6px 11px 6px 7px;
  color: var(--text);
  cursor: copy;
  text-align: left;
}

.storefront-header-whatsapp:hover,
.storefront-header-whatsapp:focus-visible,
.storefront-header-whatsapp.is-copied {
  border-color: rgba(69, 209, 138, 0.5);
  background: linear-gradient(
    180deg,
    rgba(69, 209, 138, 0.1),
    rgba(69, 209, 138, 0.045)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 8px 20px rgba(0, 0, 0, 0.16),
    0 0 0 2px rgba(69, 209, 138, 0.055);
}

.storefront-header-whatsapp:focus-visible {
  outline: 2px solid rgba(69, 209, 138, 0.7);
  outline-offset: 2px;
}

.storefront-header-whatsapp-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: #25d366;
  color: #052d16;
  font-size: 0.58rem;
  font-weight: 950;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 4px 10px rgba(37, 211, 102, 0.18);
}

.storefront-header-whatsapp > span:nth-child(2) {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.storefront-header-whatsapp small {
  color: #45d18a;
  font-size: 0.56rem;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.storefront-header-whatsapp strong {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.67rem;
  font-weight: 780;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.storefront-header-whatsapp em {
  position: absolute;
  top: calc(100% + 8px);
  bottom: auto;
  left: 50%;
  z-index: 30;
  min-height: 27px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(15, 18, 20, 0.98);
  color: #ffffff;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.28);
  font-size: 0.57rem;
  font-style: normal;
  font-weight: 750;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-3px);
  transition:
    opacity 100ms linear,
    transform 100ms ease;
}

.storefront-header-whatsapp em::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: rgba(15, 18, 20, 0.98);
  transform: translateX(-50%) rotate(45deg);
}

.storefront-header-whatsapp:hover em,
.storefront-header-whatsapp:focus-visible em,
.storefront-header-whatsapp.is-copied em {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.storefront-header-whatsapp.is-copied {
  border-color: rgba(69, 209, 138, 0.72);
}

.storefront-header-whatsapp.is-copied .storefront-header-whatsapp-icon {
  background: #45d18a;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1240px) {
  .storefront-header-info {
    max-width: 43vw;
  }

  .storefront-header-clock {
    min-width: 176px;
  }

  .storefront-header-whatsapp {
    min-width: 170px;
  }

  .storefront-header-clock time,
  .storefront-header-whatsapp strong {
    font-size: 0.6rem;
  }
}

@media (max-width: 900px) {
  .storefront-header-info {
    align-items: stretch;
    width: calc(100vw - 28px);
    max-width: none;
  }

  .storefront-header-clock,
  .storefront-header-whatsapp {
    flex: 1 1 0;
    min-width: 0;
    min-height: 40px;
  }

  .storefront-header-whatsapp em {
    top: auto;
    bottom: calc(100% + 7px);
  }

  .storefront-header-whatsapp em::before {
    top: auto;
    bottom: -4px;
  }
}

@media (max-width: 430px) {
  .storefront-header-info {
    gap: 5px;
    width: calc(100vw - 16px);
  }

  .storefront-header-clock {
    grid-template-columns: 23px minmax(0, 1fr);
    column-gap: 6px;
    padding: 6px 7px 6px 6px;
  }

  .storefront-header-clock::before {
    width: 23px;
    height: 23px;
    border-radius: 7px;
    -webkit-mask-size: 15px;
    mask-size: 15px;
  }

  .storefront-header-clock strong {
    font-size: 0.51rem;
  }

  .storefront-header-clock strong::before {
    width: 5px;
    height: 5px;
  }

  .storefront-header-clock time {
    font-size: 0.52rem;
  }

  .storefront-header-whatsapp {
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 6px;
    padding: 5px 7px 5px 5px;
  }

  .storefront-header-whatsapp-icon {
    width: 25px;
    height: 25px;
    border-radius: 7px;
    font-size: 0.49rem;
  }

  .storefront-header-whatsapp small {
    font-size: 0.48rem;
  }

  .storefront-header-whatsapp strong {
    font-size: 0.52rem;
  }

  .storefront-header-whatsapp em {
    max-width: calc(100vw - 24px);
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (prefers-reduced-motion: reduce) {
  .storefront-header-clock,
  .storefront-header-whatsapp,
  .storefront-header-whatsapp em {
    transition: none !important;
  }
}
/* =========================================================
   RELÓGIO + WHATSAPP
   Sem bordas, gap maior e aparência igual à imagem
========================================================= */

.storefront-header-info {
  display: flex;
  align-items: center;
  gap: 16px; /* afasta mais o WhatsApp do relógio */
  width: max-content;
  max-width: none;
}

.storefront-header-clock,
.storefront-header-whatsapp {
  min-height: auto;
  padding: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* ===================== RELÓGIO ===================== */

.storefront-header-clock {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 8px;
  row-gap: 1px;
  min-width: max-content;
}

.storefront-header-clock::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 18px;
  height: 18px;
  border: 0 !important;
  border-radius: 0 !important;
  background-color: #5a5a5a; /* altere aqui a cor do ícone */
  box-shadow: none !important;

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M12 7v5l3 2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M12 7v5l3 2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.storefront-header-clock strong {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  color: #35a853; /* cor do "Aberto agora" */
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

.storefront-header-clock strong::before {
  content: none !important;
  display: none !important;
}

.storefront-header-clock strong::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 2px;
  background-color: currentColor;

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M5.5 7.5 10 12l4.5-4.5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M5.5 7.5 10 12l4.5-4.5z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.storefront-header-clock time {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  color: #9a9a9a; /* cor do "Até às 19:00" */
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.1;
  white-space: nowrap;
}

/* ===================== WHATSAPP ===================== */

.storefront-header-whatsapp {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 8px;
  row-gap: 1px;
  min-width: max-content;
  cursor: pointer;
}

.storefront-header-whatsapp-icon,
.storefront-header-whatsapp:hover .storefront-header-whatsapp-icon,
.storefront-header-whatsapp:focus-visible .storefront-header-whatsapp-icon,
.storefront-header-whatsapp.is-copied .storefront-header-whatsapp-icon {
  position: relative;
  grid-column: 1;
  grid-row: 1 / span 2;
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: transparent !important;
  font-size: 0 !important;
  box-shadow: none !important;
  overflow: hidden;
}

.storefront-header-whatsapp-icon::after {
  content: none !important;
  display: none !important;
}

.storefront-header-whatsapp-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%235a5a5a' d='M16.04 2.67A13.12 13.12 0 0 0 4.8 22.56L3 29.33l6.93-1.82A13.1 13.1 0 1 0 16.04 2.67Zm0 23.99c-2.16 0-4.28-.58-6.12-1.68l-.44-.26-4.11 1.08 1.1-4-.29-.46a10.87 10.87 0 1 1 9.86 5.32Zm5.97-8.13c-.33-.17-1.94-.96-2.24-1.07-.3-.11-.52-.17-.74.17-.22.33-.85 1.07-1.04 1.29-.19.22-.39.25-.72.08-.33-.16-1.39-.51-2.65-1.64a9.93 9.93 0 0 1-1.84-2.29c-.19-.33-.02-.51.14-.68.15-.15.33-.39.49-.58.16-.19.22-.33.33-.55.11-.22.05-.41-.03-.58-.08-.16-.74-1.79-1.01-2.45-.27-.64-.55-.56-.74-.57h-.63c-.22 0-.58.08-.88.41-.3.33-1.15 1.12-1.15 2.73s1.18 3.17 1.34 3.39c.16.22 2.31 3.53 5.59 4.96.78.34 1.39.54 1.87.69.79.25 1.51.21 2.08.13.63-.09 1.94-.79 2.21-1.56.27-.77.27-1.43.19-1.56-.08-.14-.3-.22-.63-.39Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.storefront-header-whatsapp > span:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.storefront-header-whatsapp > span:nth-child(2)::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #5a5a5a;

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M5.5 7.5 10 12l4.5-4.5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M5.5 7.5 10 12l4.5-4.5z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.storefront-header-whatsapp strong {
  color: #4f4f4f; /* cor do número */
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.1;
  white-space: nowrap;
}

.storefront-header-whatsapp small {
  grid-column: 2;
  grid-row: 2;
  color: #9a9a9a; /* cor do texto "WhatsApp" */
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.1;
  white-space: nowrap;
}

.storefront-header-whatsapp em {
  display: none !important;
}

/* ===================== RESPONSIVO ===================== */

@media (max-width: 430px) {
  .storefront-header-info {
    gap: 12px;
  }

  .storefront-header-clock,
  .storefront-header-whatsapp {
    column-gap: 6px;
  }

  .storefront-header-clock::before,
  .storefront-header-whatsapp-icon,
  .storefront-header-whatsapp:hover .storefront-header-whatsapp-icon,
  .storefront-header-whatsapp:focus-visible .storefront-header-whatsapp-icon,
  .storefront-header-whatsapp.is-copied .storefront-header-whatsapp-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }

  .storefront-header-clock strong,
  .storefront-header-whatsapp strong {
    font-size: 0.86rem;
  }

  .storefront-header-clock time,
  .storefront-header-whatsapp small {
    font-size: 0.76rem;
  }
}
/* =========================================================
   WHATSAPP — NÚMERO EM CIMA E TEXTO EMBAIXO
   Adicione no final do CSS atual.
========================================================= */

.storefront-header-whatsapp > span:nth-child(2) {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  gap: 2px;

  min-width: 0;
}

.storefront-header-whatsapp > span:nth-child(2)::after {
  content: none !important;
  display: none !important;
}

.storefront-header-whatsapp strong {
  grid-row: 1;

  display: inline-flex;
  align-items: center;
  gap: 4px;

  color: #d8d8d8;

  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.15;
  white-space: nowrap;
}

.storefront-header-whatsapp strong::after {
  content: "";

  width: 7px;
  height: 7px;

  background-color: currentColor;

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M5.5 7.5 10 12l4.5-4.5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M5.5 7.5 10 12l4.5-4.5z'/%3E%3C/svg%3E");

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;

  opacity: 0.7;
}

.storefront-header-whatsapp small {
  grid-row: 2;

  display: block;

  color: #858b8f;

  font-size: 0.54rem;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

@media (max-width: 430px) {
  .storefront-header-whatsapp strong {
    font-size: 0.6rem;
  }

  .storefront-header-whatsapp small {
    font-size: 0.48rem;
  }
}
/* =========================================================
   WHATSAPP — ALINHA O TEXTO COM O INÍCIO DO NÚMERO
   Adicione no final do CSS atual.
========================================================= */

.storefront-header-whatsapp > span:nth-child(2) {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  justify-items: start;
  align-content: center;
  gap: 2px;

  min-width: 0;
  margin: 0;
  padding: 0;

  text-align: left;
}

.storefront-header-whatsapp strong,
.storefront-header-whatsapp small {
  justify-self: start;

  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0;

  text-align: left;
}

.storefront-header-whatsapp strong {
  grid-row: 1;
}

.storefront-header-whatsapp small {
  grid-row: 2;

  display: block;

  margin-left: 0 !important;
  padding-left: 0 !important;

  color: #858b8f;

  font-size: 0.54rem;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

@media (max-width: 430px) {
  .storefront-header-whatsapp small {
    font-size: 0.48rem;
  }
}

/* =========================================================
   HORARIOS DE ATENDIMENTO - POPOVER DO RELOGIO
========================================================= */

.storefront-header-clock {
  position: relative;
  cursor: default;
  isolation: isolate;
}

.storefront-header-clock > small {
  grid-column: 2;
  grid-row: 2;
  display: block;
  color: #9a9a9a;
  font-size: 0.54rem;
  font-weight: 500;
  line-height: 1.15;
  white-space: nowrap;
}

.storefront-hours-popover {
  position: absolute;
  z-index: 1000;
  top: calc(100% + 10px);
  left: 50%;
  display: block;
  width: 250px;
  max-width: calc(100vw - 24px);
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(241, 182, 74, 0.24);
  border-radius: 7px;
  background: #171717;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.46);
  color: #f5f5f5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition:
    opacity 140ms linear,
    transform 140ms ease,
    visibility 0s linear 140ms;
}

.storefront-header-clock:hover .storefront-hours-popover,
.storefront-header-clock:focus .storefront-hours-popover,
.storefront-header-clock:focus-visible .storefront-hours-popover,
.storefront-header-clock:focus-within .storefront-hours-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.storefront-hours-popover > strong {
  display: block;
  margin: 0 0 10px;
  color: #f1b64a;
  font-size: 0.69rem;
  font-weight: 750;
  line-height: 1.2;
}

#storefront-hours-list {
  display: grid;
  gap: 0;
}

#storefront-hours-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.64rem;
  line-height: 1.3;
}

#storefront-hours-list > div:first-child {
  border-top: 0;
}

#storefront-hours-list span {
  color: rgba(255, 255, 255, 0.72);
}

#storefront-hours-list strong {
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 430px) {
  .storefront-header-clock > small {
    font-size: 0.48rem;
  }

  .storefront-hours-popover {
    left: 0;
    width: min(250px, calc(100vw - 24px));
    transform: translate(0, -6px);
  }

  .storefront-header-clock:hover .storefront-hours-popover,
  .storefront-header-clock:focus .storefront-hours-popover,
  .storefront-header-clock:focus-visible .storefront-hours-popover,
  .storefront-header-clock:focus-within .storefront-hours-popover {
    transform: translate(0, 0);
  }
}
/* =========================================================
   WHATSAPP — ALINHA O TEXTO COM O INÍCIO DO NÚMERO
   Adicione no final do CSS atual.
========================================================= */

.storefront-header-whatsapp > span:nth-child(2) {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  justify-items: start;
  align-content: center;
  gap: 2px;

  min-width: 0;
  margin: 0;
  padding: 0;

  text-align: left;
}

.storefront-header-whatsapp strong,
.storefront-header-whatsapp small {
  justify-self: start;

  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0;

  text-align: left;
}

.storefront-header-whatsapp strong {
  grid-row: 1;
}

.storefront-header-whatsapp small {
  grid-row: 2;

  display: block;

  margin-left: 0 !important;
  padding-left: 0 !important;

  color: #858b8f;

  font-size: 0.54rem;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

@media (max-width: 430px) {
  .storefront-header-whatsapp small {
    font-size: 0.48rem;
  }
}
/* =========================================================
   WHATSAPP — ALINHA O TEXTO COM O INÍCIO DO NÚMERO
   Adicione no final do CSS atual.
========================================================= */

.storefront-header-whatsapp > span:nth-child(2) {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  justify-items: start;
  align-content: center;
  gap: 2px;

  min-width: 0;
  margin: 0;
  padding: 0;

  text-align: left;
}

.storefront-header-whatsapp strong,
.storefront-header-whatsapp small {
  justify-self: start;

  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0;

  text-align: left;
}

.storefront-header-whatsapp strong {
  grid-row: 1;
}

.storefront-header-whatsapp small {
  grid-row: 2;

  display: block;

  margin-left: 0 !important;
  padding-left: 0 !important;

  color: #858b8f;

  font-size: 0.54rem;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

@media (max-width: 430px) {
  .storefront-header-whatsapp small {
    font-size: 0.48rem;
  }
}
/* =========================================================
   WHATSAPP — ALINHAMENTO DEFINITIVO
   Número e "WhatsApp" começam exatamente no mesmo ponto.
   Adicione no final do CSS atual.
========================================================= */

.storefront-header-whatsapp > span:nth-child(2) {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  justify-items: start !important;
  align-content: center !important;
  gap: 2px !important;

  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;

  text-align: left !important;
}

.storefront-header-whatsapp strong {
  grid-column: 1 !important;
  grid-row: 1 !important;
  justify-self: start !important;

  margin: 0 !important;
  padding: 0 !important;

  text-align: left !important;
}

.storefront-header-whatsapp small {
  grid-column: 1 !important;
  grid-row: 2 !important;
  justify-self: start !important;

  display: block !important;

  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;

  color: #858b8f;

  font-size: 0.54rem;
  font-weight: 500;
  line-height: 1.1;

  text-align: left !important;
  text-indent: 0 !important;
  text-transform: none !important;
  white-space: nowrap;
}

@media (max-width: 430px) {
  .storefront-header-whatsapp small {
    font-size: 0.48rem;
  }
}
/* =========================================================
   RELÓGIO — MAIOR E STATUS MAIS CENTRALIZADO
   Adicione no final do CSS atual.
========================================================= */

.storefront-header-clock {
  grid-template-columns: 26px minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  align-items: center !important;
  column-gap: 9px !important;
  row-gap: 2px !important;

  min-width: max-content !important;
}

/* Ícone maior */

.storefront-header-clock::before {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  align-self: center !important;
  justify-self: center !important;

  width: 23px !important;
  height: 23px !important;

  -webkit-mask-size: contain !important;
  mask-size: contain !important;
}

/* Status aberto/fechado mais centralizado */

.storefront-header-clock > strong {
  grid-column: 2 !important;
  grid-row: 1 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-self: stretch !important;

  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;

  font-size: 0.76rem !important;
  line-height: 1.15 !important;

  text-align: center !important;
}

/* Horário centralizado abaixo do status */

.storefront-header-clock > time,
.storefront-header-clock > small {
  grid-column: 2 !important;
  grid-row: 2 !important;

  justify-self: stretch !important;

  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;

  font-size: 0.58rem !important;
  line-height: 1.15 !important;

  text-align: center !important;
}

/* Evita que a seta altere o centro visual do texto */

.storefront-header-clock > strong::after {
  flex: 0 0 auto;

  width: 7px !important;
  height: 7px !important;
  margin-left: 4px !important;
}

@media (max-width: 430px) {
  .storefront-header-clock {
    grid-template-columns: 22px minmax(0, 1fr) !important;
    column-gap: 7px !important;
  }

  .storefront-header-clock::before {
    width: 20px !important;
    height: 20px !important;
  }

  .storefront-header-clock > strong {
    font-size: 0.64rem !important;
  }

  .storefront-header-clock > time,
  .storefront-header-clock > small {
    font-size: 0.5rem !important;
  }
}
/* =========================================================
   RELÓGIO — PONTA DE SETA AO LADO DE "ABERTO"
   Adicione no final do CSS atual.
========================================================= */

.storefront-header-clock > strong::after {
  content: "" !important;

  flex: 0 0 auto;

  width: 0 !important;
  height: 0 !important;
  margin-left: 5px !important;

  border: 0 !important;
  border-left: 4px solid transparent !important;
  border-right: 4px solid transparent !important;
  border-top: 5px solid currentColor !important;

  background: transparent !important;

  -webkit-mask: none !important;
  mask: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;

  transform: translateY(1px);
}
