/* ================================================
   VARIÁVEIS GLOBAIS
   Altere aqui para mudar o tema inteiro
================================================ */
:root {
  --color-primary:    #e55331;   /* laranja — cor dominante */
  --color-black:      #000000;
  --color-white:      #ffffff;
  --color-gray-card:  #888888;   /* fundo dos cards de setor */
  --color-gray-light: #e9ecef;   /* fundo dos accordions */
  --color-gray-text:  #6c757d;
  --color-green:      #33A749;   /* setor disponível */
  --color-esgotado:   #e55331;

  --font-main:        'Roboto', sans-serif;
  --content-max-width: 1140px;
  --navbar-height:    55px;
}

/* ================================================
   RESET & BASE
================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-primary);
  color: #212529;
  font-size: 14px;
  line-height: 1.5;
}

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

ul {
  list-style: none;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================================================
   NAVBAR
================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-black);
  height: var(--navbar-height);
}

.navbar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 30px;
  width: auto;
}

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

.btn-entrar {
  background: transparent;
  border: 1.5px solid var(--color-white);
  color: var(--color-white);
  padding: 6px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.btn-entrar:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lang {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  padding: 2px;
}

/* ================================================
   GW COVER
================================================ */
.gw-cover {
  background-color: #eaeaea;
  background-image:
    linear-gradient(to bottom, rgba(234, 234, 234, 0) 450px, #e55331 550px),
    url('https://s3.guicheweb.com.br/imagenseventos/12-12-2025_18-16-46.jpg');
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center top;
}

/* ================================================
   HERO
================================================ */
.hero {
  background: transparent;
}

.hero-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 24px 16px 0;
  text-align: center;
}

.hero-banner-img {
  width: 100%;
  margin: 0 auto;
}

/* ================================================
   PICOTE (borda estilo ingresso)
================================================ */
.picote {
  max-width: var(--content-max-width);
  margin: -8px auto 0;
  height: 8px;
  position: relative;
  z-index: 11;
  background-color: transparent;
  background-image: url('https://s3.guicheweb.com.br/responsivo/imgs/borderticket.png');
  background-repeat: repeat-x;
  background-position: top left;
  background-size: auto 8px;
}

/* ================================================
   MAIN WRAP & CONTENT CARD
================================================ */
.main-wrap {
  background-color: transparent;
  padding-bottom: 0;
}

.content-card {
  max-width: 1130px;
  margin: 0 auto 20px;
  background: var(--color-white);
  border: 1px solid #e9e9e9;
  border-top: none;
  padding: 28px 24px 32px;
  position: relative;
  z-index: 10;
}

/* ================================================
   DETALHES DO EVENTO
================================================ */
.event-details {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 28px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.event-poster-col {
  flex: 0 0 280px;
  width: 280px;
}

.event-poster {
  width: 100%;
  border-radius: 4px;
  cursor: zoom-in;
}

.share-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.share-label {
  font-size: 13px;
  color: var(--color-gray-text);
  margin-right: 4px;
}

.share-icon {
  color: var(--color-gray-text);
  font-size: 17px;
  padding: 5px 8px;
  transition: color 0.2s;
}

.share-icon:hover { color: #333; }

.event-info-col {
  flex: 1;
  padding-top: 4px;
}

.event-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.event-date {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 4px;
}

.event-time {
  font-size: 18px;
  margin-bottom: 12px;
  color: #444;
}

.event-location {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.event-location i {
  color: #333;
  margin-top: 2px;
  flex-shrink: 0;
}

.event-socials { display: flex; gap: 8px; }

.btn-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-gray-light);
  border-radius: 8px;
  font-size: 20px;
  color: #333;
  transition: background 0.2s;
}

.btn-social:hover { background: #d4d8db; }

/* ================================================
   QUICK NAV
================================================ */
.quick-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.quick-nav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-white);
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: #333;
  transition: background 0.2s, border-color 0.2s;
}

.quick-nav-btn:hover {
  background: var(--color-gray-light);
  border-color: #c0c4c8;
}

/* ================================================
   SEÇÃO INGRESSOS
================================================ */
.section-ingressos {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}

.mapa-setores {
  text-align: center;
  margin-bottom: 24px;
}

.mapa-img {
  max-width: 540px;
  margin: 0 auto;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

/* Card de setor */
.setor-card {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}

.setor-header {
  background: var(--color-gray-card);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}

.setor-header:hover { background: #7a7a7a; }

.setor-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.setor-cor {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  flex-shrink: 0;
}

.setor-nome {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
  display: block;
}

.setor-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-top: 1px;
}

.setor-chevron {
  color: var(--color-white);
  font-size: 14px;
  transition: transform 0.3s;
}

.setor-header.open .setor-chevron { transform: rotate(180deg); }

/* Corpo do setor */
.setor-body {
  display: none;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 6px 6px;
  background: var(--color-white);
}

.setor-body.open { display: block; }

.ingresso-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.ingresso-row:last-child { border-bottom: none; }

.ingresso-info p {
  margin-bottom: 3px;
  font-size: 13px;
}

.tag-esgotado {
  color: var(--color-esgotado);
  font-weight: 700;
  font-size: 12px;
  margin-left: 4px;
}

.info-icon {
  color: var(--color-gray-text);
  font-size: 11px;
}

/* Contador +/- */
.contador {
  display: flex;
  align-items: center;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.contador-btn {
  background: var(--color-gray-light);
  border: none;
  width: 34px;
  height: 34px;
  font-size: 20px;
  font-weight: 300;
  cursor: pointer;
  color: #333;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.contador-btn:hover { background: #cdd0d4; }

.contador-val {
  min-width: 36px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 0 4px;
}

/* ================================================
   SEÇÃO VÍDEO
================================================ */
.section-video {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 43%; /* ~350px em 900px de largura */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

/* ================================================
   SEÇÃO INFORMAÇÕES
================================================ */
.section-info {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}

/* Accordion genérico */
.accordion {
  margin-bottom: 16px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #dee2e6;
}

.accordion-header {
  background: var(--color-gray-light);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  user-select: none;
  transition: background 0.2s;
}

.accordion-header:hover { background: #dde0e3; }

.accordion-header i {
  font-size: 14px;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}

.accordion-header.expanded i { transform: rotate(180deg); }

.accordion-body {
  display: none;
  background: var(--color-gray-light);
}

.accordion-body.show { display: block; }

.info-content {
  padding: 20px 20px 12px;
}

.info-content p {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.65;
}

.info-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 10px;
}

.info-content ul li {
  margin-bottom: 4px;
  font-size: 15px;
}

.info-content hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 14px 0;
}

.info-question {
  font-weight: 700;
  margin-top: 4px;
  margin-bottom: 6px !important;
}

.link-destaque {
  color: #0066cc;
  text-decoration: underline;
}

.link-destaque:hover { color: #0044aa; }

/* Grid "Confira os setores" */
.confira-title {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  margin: 18px 0 14px;
  letter-spacing: 0.3px;
}

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

.setor-info-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.setor-info-card ul {
  list-style: disc;
  padding-left: 16px;
}

.setor-info-card ul li {
  font-size: 14px;
  margin-bottom: 3px;
}

/* Regras: parágrafo espalhado */
.regras-content p {
  margin-bottom: 12px;
  font-size: 15px;
}

/* ================================================
   SEÇÃO LOCALIZAÇÃO
================================================ */
.section-localizacao {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
}

.map-wrapper {
  border-radius: 4px;
  overflow: hidden;
}

.map-wrapper iframe { display: block; }

/* ================================================
   FOOTER
================================================ */
.footer {
  background: #111;
  color: var(--color-white);
}

/* Faixa de ícones sociais */
.footer-social-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 24px 20px;
  border-bottom: 1px solid #2a2a2a;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #2a2a2a;
  border-radius: 50%;
  font-size: 18px;
  color: var(--color-white);
  transition: background 0.2s;
}

.footer-social-icon:hover { background: #404040; }

/* Grid de links */
.footer-links-row {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 36px 24px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-white);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--color-white);
}

/* Coluna de badges/app */
.footer-col--badges {
  margin-left: auto;
}

.footer-badges {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.badge-img {
  height: 60px;
  width: auto;
  display: block;
}

.footer-app-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-app-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.app-btn {
  display: block;
  line-height: 0;
}

.app-store-img {
  height: 36px;
  width: auto;
  display: block;
}

/* Rodapé final */
.footer-bottom {
  background: var(--color-black);
  text-align: center;
  padding: 16px 20px;
}

.footer-bottom p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 3px;
}

/* ================================================
   WHATSAPP FLUTUANTE
================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.25s, background 0.25s, bottom 0.25s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128C7E;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: waPulse 2.2s infinite;
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  50%  { transform: scale(1.5); opacity: 0;   }
  100% { transform: scale(1);   opacity: 0;   }
}

/* ================================================
   RESPONSIVO — TABLET (≤ 768px)
================================================ */
@media (max-width: 768px) {

  .content-card {
    padding: 20px 16px 28px;
  }

  /* Evento: empilha as colunas */
  .event-details {
    flex-direction: column;
    align-items: center;
  }

  .event-poster-col {
    flex: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }

  .event-info-col {
    width: 100%;
    text-align: center;
  }

  .event-location,
  .event-socials {
    justify-content: center;
  }

  /* Quick nav: centralizado */
  .quick-nav { justify-content: center; }

  /* Grid setores info: 1 coluna */
  .setores-info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Footer: colunas empilhadas */
  .footer-links-row {
    flex-direction: column;
    gap: 28px;
  }

  .footer-col--badges {
    margin-left: 0;
  }

}

/* ================================================
   RESPONSIVO — MOBILE (≤ 480px)
================================================ */
@media (max-width: 480px) {

  .event-title {
    font-size: 24px;
  }

  .event-date {
    font-size: 22px;
  }

  .event-time {
    font-size: 17px;
  }

  .event-location {
    font-size: 16px;
    display: block;
    text-align: center;
  }

  .btn-social {
    width: 36px;
    height: 36px;
    font-size: 16px;
    border-radius: 6px;
  }

  .quick-nav-btn span {
    display: none; /* só ícone em telas muito pequenas */
  }

  .quick-nav-btn {
    padding: 0;
    width: 44px;
    height: 44px;
    justify-content: center;
    font-size: 18px;
  }

  .mapa-img {
    max-width: 100%;
  }

  .video-wrapper {
    padding-top: 56.25%; /* 16:9 em mobile */
  }

  .setores-info-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 18px;
    right: 16px;
  }

  .whatsapp-icon {
    width: 26px;
    height: 26px;
  }

}

/* ================================================
   NAVBAR USER (logado)
================================================ */
.navbar-user {
  display: none;
  align-items: center;
  gap: 10px;
}

.navbar-user.visible {
  display: flex;
}

.user-account-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  cursor: pointer;
  padding: 4px 12px 4px 4px;
}

.user-account-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

.user-account-btn:hover {
  border-color: rgba(255,255,255,0.5);
}

.user-account-btn:hover .user-account-label {
  color: #fff;
}

.user-account-btn:hover .user-avatar {
  background: #2a9040;
}

.user-avatar {
  width: 34px;
  height: 34px;
  background: #33A749;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}

/* User dropdown */
.navbar-user {
  position: relative;
}

.user-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  min-width: 180px;
  z-index: 500;
  overflow: hidden;
}

.user-dropdown.open {
  display: block;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  color: #222;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.user-dropdown-item:hover {
  background: #f5f5f5;
}

.user-dropdown-item i {
  width: 16px;
  color: #555;
}

.user-dropdown-sair i,
.user-dropdown-sair {
  color: #c0392b;
}

.user-dropdown-sair:hover {
  background: #fff5f5;
}

.user-dropdown-divider {
  height: 1px;
  background: #eeeeee;
  margin: 4px 0;
}

/* ================================================
   MEUS PEDIDOS MODAL
================================================ */
.pedidos-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  padding: 20px 16px 40px;
  overflow-y: auto;
}

.pedidos-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.pedidos-modal {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 560px;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  transform: translateY(-16px);
  transition: transform 0.2s ease-out;
}

.pedidos-overlay.active .pedidos-modal {
  transform: translateY(0);
}

.pedidos-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
  font-weight: 700;
  font-size: 15px;
  color: #111;
}

.pedidos-modal-header i {
  color: #33A749;
  margin-right: 8px;
}

.pedidos-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  font-size: 18px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}

.pedidos-close-btn:hover {
  color: #333;
  background: #f0f0f0;
}

.pedidos-modal-body {
  padding: 20px;
  background: #f4f4f4;
  min-height: 120px;
}

.pedidos-empty {
  text-align: center;
  padding: 40px 20px;
  color: #999;
}

.pedidos-empty i {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
  opacity: 0.3;
}

.pedidos-empty p {
  margin: 0;
  font-size: 14px;
}

.pedido-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

.pedido-card:last-child {
  margin-bottom: 0;
}

.pedido-card-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid #f0f0f0;
}

.pedido-card-evento {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.pedido-card-evento span {
  font-weight: 400;
  color: #888;
  font-size: 13px;
}

.pedido-card-date {
  font-size: 11px;
  color: #aaa;
  margin-top: 3px;
}

.pedido-card-items {
  padding: 10px 16px;
  font-size: 12px;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

.pedido-method {
  padding: 8px 16px 10px;
  font-size: 12px;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

/* Individual ticket inside a pedido */
.ticket-card {
  background: #111;
  margin: 12px;
  border-radius: 8px;
  overflow: hidden;
  padding: 16px;
}

.ticket-card + .ticket-card {
  margin-top: 0;
  border-top: 2px dashed rgba(255,255,255,0.1);
  border-radius: 0 0 8px 8px;
}

.ticket-card-setor {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}

.ticket-card-qr {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.ticket-card-qr canvas {
  border-radius: 6px;
  display: block;
}

.ticket-card-uuid {
  font-size: 9px;
  font-family: monospace;
  color: rgba(255,255,255,0.3);
  text-align: center;
  word-break: break-all;
  line-height: 1.5;
}

/* ================================================
   CART BAR
================================================ */
.cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 97, 0, 0.9);
  z-index: 300;
  display: none;
}

.cart-bar.visible {
  display: block;
}

.cart-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 8px 24px;
}

.cart-bar-left {
  display: flex;
  flex-direction: column;
}

.resumo-cart1 {
  font-size: 12px;
  color: #fff;
  margin: 0 0 1px;
}

.resumo-cart2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1px;
}

.resumo-cart3 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.cart-bar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.cart-bar-ready {
  font-size: 12px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.cart-bar-btn {
  background: #fff;
  color: #333;
  border: none;
  border-radius: 4px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.cart-bar-btn i {
  color: #000;
}

.cart-bar-btn:hover {
  background: #e2f5e8;
}

/* ================================================
   AUTH MODAL
================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-image: url('https://gw-bucket.s3.amazonaws.com/imagens/site/logogw_fundo_login.png');
  background-color: #eaeaea;
  background-repeat: repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  width: 90%;
  max-width: 350px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 5px 5px 0 #01A73F;
  transform: scaleX(0) scaleY(0);
  transition: transform 0.2s ease-out;
}

.modal-overlay.active .modal-card {
  transform: scaleX(1) scaleY(1);
}

.modal-back-btn {
  background: none;
  border: none;
  color: #555;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-back-btn:hover {
  color: #111;
}

.modal-logo {
  text-align: center;
  margin-bottom: 20px;
}

.modal-logo img {
  width: 60%;
  min-width: 150px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.modal-field {
  margin-bottom: 0;
}

.modal-field input,
.modal-field select {
  width: 100%;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  padding: 10px 15px;
  margin: 5px 0;
  font-size: 14px;
  outline: none;
  background: #fff;
  font-family: var(--font-main);
  color: #333;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.modal-field input:focus,
.modal-field select:focus {
  border-color: #01A73F;
}

.modal-field input::placeholder {
  color: #aaa;
}

.modal-field select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  color: #aaa;
}

.modal-field select.filled {
  color: #333;
}

.modal-forgot {
  display: block;
  font-size: 13px;
  color: #01A73F;
  margin: 6px 0 10px 0;
  text-align: left;
}

.modal-forgot:hover {
  text-decoration: underline;
}

.modal-btn-green {
  width: 100%;
  background: #01A73F;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  margin: 8px 0;
  transition: background 0.2s;
}

.modal-btn-green:hover {
  background: #019035;
}

.modal-footer-text {
  text-align: center;
  font-size: 13px;
  color: #555;
  margin-top: 6px;
}

.modal-link-green {
  color: #01A73F;
  font-weight: 500;
}

.modal-link-green:hover {
  text-decoration: underline;
}

/* cart bar: hide item pills on very small screens */
@media (max-width: 600px) {
  .cart-bar-items {
    display: none;
  }
}
