* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top, rgba(250, 204, 21, 0.08), transparent 35%),
    #0f172a;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

/* =========================================================
   TOPO DA LOJA — DESKTOP
   Padrão visual Bolão Esportivo
========================================================= */

.store-hero {
  position: relative;
  width: 100%;
  padding: 28px 32px;

  background:
    radial-gradient(circle at 78% 20%,
      rgba(250, 204, 21, 0.055),
      transparent 28%),
    linear-gradient(180deg,
      #020905 0%,
      #020704 100%);

  border-bottom: 1px solid rgba(250, 204, 21, 0.14);
}


/* CONTEÚDO CENTRAL */

.store-hero-content {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;

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

  gap: 40px;
}


/* =========================================================
   LADO ESQUERDO
========================================================= */

.store-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  min-width: 0;
}


.store-heading-text {
  min-width: 0;
}


/* BOTÃO VOLTAR */

.back-btn {
  position: static;

  width: 42px;
  height: 42px;

  flex: 0 0 42px;

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

  padding: 0;

  border-radius: 12px;

  border: 1px solid rgba(255, 255, 255, 0.11);

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

  color: #cbd5e1;

  cursor: pointer;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}


.back-btn svg {
  width: 18px;
  height: 18px;
}


.back-btn:hover {
  color: #facc15;

  border-color: rgba(250, 204, 21, 0.32);

  background: rgba(250, 204, 21, 0.06);

  transform: translateX(-2px);
}


/* LABEL */

.store-label {
  display: block;

  margin: 1px 0 7px;

  color: #facc15;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 1.8px;
}


/* TÍTULO */

.store-hero h1 {
  margin: 0;

  color: #f8fafc;

  font-size: 30px;
  line-height: 1.15;

  font-weight: 800;

  letter-spacing: -0.7px;
}


/* SUBTÍTULO */

.store-hero p {
  margin: 8px 0 0;

  max-width: 580px;

  color: #7f9189;

  font-size: 13px;
  line-height: 1.55;
}


/* =========================================================
   CARD DO SALDO
========================================================= */

.store-user-box {
  min-width: 230px;

  padding: 14px;

  display: flex;
  align-items: center;

  gap: 14px;

  text-align: left;

  background:
    linear-gradient(145deg,
      rgba(5, 18, 11, 0.96),
      rgba(2, 10, 6, 0.96));

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 14px;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.20);

  backdrop-filter: none;
}


/* SALDO */

.store-balance {
  min-width: 100px;

  display: flex;
  flex-direction: column;

  padding-right: 14px;

  border-right: 1px solid rgba(255, 255, 255, 0.07);
}


.store-balance-label {
  color: #718078 !important;

  font-size: 8px !important;
  font-weight: 800;

  letter-spacing: 1.2px;
}


.store-user-box strong {
  display: block;

  margin: 3px 0 1px;

  color: #facc15;

  font-size: 19px;
  line-height: 1.1;

  font-weight: 800;
}


.store-balance small {
  color: #637168;

  font-size: 9px;
}


/* =========================================================
   BOTÃO MEUS PEDIDOS
========================================================= */

.orders-btn {
  width: auto;

  min-height: 38px;

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

  gap: 7px;

  padding: 0 11px;

  border-radius: 10px;

  border: 1px solid rgba(250, 204, 21, 0.20);

  background: rgba(250, 204, 21, 0.055);

  color: #e8ecE9;

  font-size: 11px;
  font-weight: 700;

  white-space: nowrap;

  cursor: pointer;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}


.orders-btn svg {
  width: 15px;
  height: 15px;

  color: #facc15;

  flex-shrink: 0;
}


.orders-btn:hover {
  color: #ffffff;

  background: rgba(250, 204, 21, 0.10);

  border-color: rgba(250, 204, 21, 0.38);
}


/* CONTADOR DE PEDIDOS */

.badge {
  min-width: 19px;
  height: 19px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-left: 2px;

  padding: 0 5px;

  border-radius: 999px;

  background: #facc15;

  color: #111805 !important;

  font-size: 9px !important;
  font-weight: 900;

  line-height: 1;
}

/* BUSCA E CATEGORIAS */
.search {
  max-width: 1180px;
  margin: 22px auto 0;
  padding: 0 18px;
}

.search input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 6, 23, 0.72);
  color: white;
  outline: none;
  font-size: 15px;
}

.search input:focus {
  border-color: #facc15;
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.12);
}

.categories {
  max-width: 1180px;
  margin: 16px auto 0;
  display: flex;
  gap: 10px;
  padding: 0 18px 8px;
  overflow-x: auto;
}

.category-btn {
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 700;
}

.category-btn.active {
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #111;
}

.sort-box {
  max-width: 1180px;
  margin: 10px auto 0;
  display: flex;
  gap: 10px;
  padding: 0 18px;
  overflow-x: auto;
}

.sort-btn {
  background: rgba(2, 6, 23, 0.75);
  border: 1px solid rgba(250, 204, 21, 0.22);
  color: #e5e7eb;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 800;
}

.sort-btn.active {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.35);
}

.store-info-box {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 0 18px;
}

.store-info-content {
  background:
    linear-gradient(135deg,
      rgba(250, 204, 21, 0.12),
      rgba(249, 115, 22, 0.08));

  border: 1px solid rgba(250, 204, 21, 0.22);

  border-radius: 18px;

  padding: 18px 20px;

  display: flex;
  gap: 14px;
  align-items: flex-start;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25);
}

.store-info-icon {
  font-size: 26px;
  flex-shrink: 0;
}

.store-info-content h3 {
  margin: 0 0 8px;
  color: #facc15;
  font-size: 17px;
}

.store-info-content p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 14px;
}

.store-info-content strong {
  color: #ffffff;
}

@media (max-width: 768px) {
  .store-info-content {
    flex-direction: column;
  }
}

/* GRID */
.store {
  max-width: 1180px;
  margin: 22px auto 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
  padding: 0 18px;
}

/* CARD PRODUTO */
.product-card {
  background: linear-gradient(180deg, #1e293b, #111827);
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.25s;
  border: 1px solid rgba(250, 204, 21, 0.14);
  position: relative;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 204, 21, 0.45);
}

.card-gallery {
  padding: 12px;
}

.zoom-wrapper {
  position: relative;
}

.zoom-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 16px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-container img,
.product-card>img,
.card-gallery .main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  background: #f8fafc;
}

.card-gallery .thumbs {
  display: flex;
  gap: 7px;
  margin-top: 10px;
  overflow-x: auto;
}

.card-gallery .thumbs img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #f8fafc;
  cursor: pointer;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 3px;
}

.product-info {
  padding: 14px;
}

.product-info h3 {
  font-size: 15px;
  min-height: 42px;
  margin: 0 0 10px;
  line-height: 1.35;
}

.price {
  font-size: 21px;
  color: #22c55e;
  font-weight: 900;
  margin-bottom: 12px;
}

.btn-view {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.zoom-result {
  display: none;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-box {
  background: #1e293b;
  padding: 25px;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
}

.modal-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid #334155;
  background: #0f172a;
  color: white;
}

.modal-box button {
  width: 100%;
  padding: 12px;
  margin-top: 7px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}

.success {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #22c55e;
  padding: 15px 25px;
  border-radius: 10px;
  display: none;
  z-index: 9999;
}

@keyframes pulseVip {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .store-hero {
    padding: 72px 14px 24px;
  }

  .store-hero-content {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .store-hero h1 {
    font-size: 28px;
  }

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

  .zoom-container {
    height: 165px;
  }

  .product-info h3 {
    font-size: 13px;
    min-height: 38px;
  }

  .price {
    font-size: 18px;
  }

  .btn-view {
    padding: 10px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .store {
    grid-template-columns: 1fr;
  }

  .zoom-container {
    height: 230px;
  }
}

.session-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  backdrop-filter: blur(6px);
}

.session-box {
  width: 90%;
  max-width: 380px;
  background: linear-gradient(180deg, #1e293b, #0f172a);
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 22px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
}

.session-icon {
  font-size: 52px;
  margin-bottom: 12px;
}

.session-box h2 {
  margin: 0 0 12px;
  color: #facc15;
}

.session-box p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
}

.session-box button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  font-weight: bold;
  cursor: pointer;
}

/* =========================================================
   LOJA — CONTROLES DO CATÁLOGO
========================================================= */

.store-catalog-controls {
  width: min(1180px, calc(100% - 48px));

  margin: 26px auto 0;
}


/* =========================================================
   INFORMAÇÕES / CONFIANÇA
========================================================= */

.store-info-box {
  width: 100%;
  max-width: none;

  margin: 0;
  padding: 0;
}

.store-info-content {
  width: 100%;

  display: grid;
  grid-template-columns:
    auto minmax(0, 1fr) auto;

  align-items: center;

  gap: 16px;

  padding: 16px 18px;

  background:
    linear-gradient(145deg,
      rgba(6, 18, 12, 0.98),
      rgba(3, 12, 8, 0.98));

  border:
    1px solid rgba(234, 179, 8, 0.12);

  border-radius: 14px;

  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.18);
}


/* ÍCONE */

.store-info-icon {
  width: 38px;
  height: 38px;

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

  flex-shrink: 0;

  color: #eab308;

  background:
    rgba(234, 179, 8, 0.055);

  border:
    1px solid rgba(234, 179, 8, 0.15);

  border-radius: 10px;

  font-size: 0;
}

.store-info-icon svg {
  width: 18px;
  height: 18px;
}


/* TEXTO */

.store-info-text {
  min-width: 0;
}

.store-info-eyebrow {
  display: block;

  margin-bottom: 4px;

  color: #d9ad00;

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 1.3px;
}

.store-info-content h3 {
  margin: 0;

  color: #edf2ef;

  font-size: 13px;
  font-weight: 800;

  line-height: 1.35;
}

.store-info-content p {
  max-width: 690px;

  margin: 5px 0 0;

  color: #748178;

  font-size: 9px;

  line-height: 1.55;
}

.store-info-content strong {
  color: #dce4df;
}


/* INDICADORES */

.store-info-features {
  display: flex;
  align-items: center;

  gap: 10px;
}

.store-info-features>div {
  min-width: 92px;

  padding: 9px 11px;

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

  border:
    1px solid rgba(255, 255, 255, 0.055);

  border-radius: 9px;
}

.store-info-features strong {
  display: block;

  margin-bottom: 2px;

  color: #f0c21c;

  font-size: 10px;
  font-weight: 800;
}

.store-info-features span {
  color: #65736b;

  font-size: 7px;
  font-weight: 700;
}


/* =========================================================
   TÍTULO DO CATÁLOGO
========================================================= */

.store-catalog-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  margin-top: 30px;
}

.store-catalog-heading>div {
  min-width: 0;
}

.store-catalog-eyebrow {
  display: block;

  margin-bottom: 5px;

  color: #d9ad00;

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 1.4px;
}

.store-catalog-heading h2 {
  margin: 0;

  color: #f6f8f7;

  font-size: 20px;
  font-weight: 800;

  line-height: 1.25;
}

.store-catalog-heading p {
  max-width: 420px;

  margin: 0;

  color: #68766e;

  font-size: 9px;

  line-height: 1.5;

  text-align: right;
}


/* =========================================================
   BUSCA
========================================================= */

.store-search-row {
  margin-top: 16px;
}

.search {
  position: relative;

  width: 100%;
  max-width: none;

  margin: 0;
  padding: 0;
}

.search>svg {
  position: absolute;

  top: 50%;
  left: 14px;

  width: 16px;
  height: 16px;

  transform:
    translateY(-50%);

  color: #617068;

  pointer-events: none;
}

.search input {
  width: 100%;
  height: 46px;

  padding:
    0 14px 0 42px;

  background:
    rgba(4, 14, 8, 0.78);

  border:
    1px solid rgba(255, 255, 255, 0.065);

  border-radius: 11px;

  color: #eaf0ec;

  font-size: 11px;

  outline: none;

  transition:
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.search input::placeholder {
  color: #526158;
}

.search input:focus {
  background:
    rgba(5, 17, 10, 0.90);

  border-color:
    rgba(234, 179, 8, 0.32);

  box-shadow:
    0 0 0 3px rgba(234, 179, 8, 0.055);
}


/* =========================================================
   FILTROS / CATEGORIAS
========================================================= */

.store-filter-section {
  margin-top: 16px;
}

.store-filter-title {
  margin-bottom: 8px;
}

.store-filter-title>span {
  color: #7a8880;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: .9px;
}

.categories {
  width: 100%;
  max-width: none;

  margin: 0;
  padding: 0 0 4px;

  display: flex;

  gap: 7px;

  overflow-x: auto;

  scrollbar-width: thin;
}

.category-btn {
  min-height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 13px;

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

  border:
    1px solid rgba(255, 255, 255, 0.065);

  border-radius: 9px;

  color: #aab6af;

  font-size: 9px;
  font-weight: 700;

  white-space: nowrap;

  cursor: pointer;

  transition:
    color .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.category-btn:hover {
  color: #e6ece8;

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

  border-color:
    rgba(255, 255, 255, 0.10);
}

.category-btn.active {
  color: #0a0d0b;

  background:
    linear-gradient(135deg,
      #facc15,
      #eab308);

  border-color:
    rgba(234, 179, 8, 0.28);

  box-shadow:
    0 8px 18px rgba(234, 179, 8, 0.09);
}


/* =========================================================
   ORDENAÇÃO
========================================================= */

.store-sort-section {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-top: 12px;
  padding-top: 12px;

  border-top:
    1px solid rgba(255, 255, 255, 0.045);
}

.store-sort-label {
  color: #647169;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: .8px;

  white-space: nowrap;
}

.sort-box {
  max-width: none;

  margin: 0;
  padding: 0;

  display: flex;
  justify-content: flex-end;

  gap: 7px;

  overflow-x: auto;
}

.sort-btn {
  min-height: 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 12px;

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

  border:
    1px solid rgba(255, 255, 255, 0.055);

  border-radius: 8px;

  color: #88968e;

  font-size: 8px;
  font-weight: 800;

  white-space: nowrap;

  cursor: pointer;

  transition:
    background .2s ease,
    border-color .2s ease,
    color .2s ease;
}

.sort-btn:hover {
  color: #d7ded9;

  border-color:
    rgba(255, 255, 255, 0.10);
}

.sort-btn.active {
  color: #e8c833;

  background:
    rgba(234, 179, 8, 0.055);

  border-color:
    rgba(234, 179, 8, 0.18);

  box-shadow: none;
}


/* =========================================================
   ESPAÇO ENTRE FILTROS E PRODUTOS
========================================================= */

.store-catalog-controls+.store {
  margin-top: 22px;
}


/* =========================================================
   DESKTOP COMPACTO
========================================================= */

@media (min-width: 769px) and (max-width: 1000px) {

  .store-catalog-controls {
    width:
      calc(100% - 32px);
  }

  .store-info-content {
    grid-template-columns:
      auto minmax(0, 1fr);
  }

  .store-info-features {
    grid-column:
      1 / -1;

    padding-left: 54px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .store-catalog-controls {
    width:
      calc(100% - 28px);

    margin-top: 18px;
  }


  /* INFO */

  .store-info-content {
    grid-template-columns:
      auto minmax(0, 1fr);

    gap: 11px;

    padding: 14px;
  }

  .store-info-features {
    grid-column:
      1 / -1;

    width: 100%;

    display: grid;
    grid-template-columns:
      repeat(2, 1fr);

    gap: 7px;

    padding-left: 0;
  }

  .store-info-features>div {
    min-width: 0;
  }


  /* CABEÇALHO */

  .store-catalog-heading {
    display: block;

    margin-top: 24px;
  }

  .store-catalog-heading p {
    margin-top: 6px;

    max-width: 100%;

    text-align: left;
  }


  /* BUSCA */

  .search input {
    height: 44px;
  }


  /* ORDENAÇÃO */

  .store-sort-section {
    align-items: flex-start;
    flex-direction: column;

    gap: 7px;
  }

  .sort-box {
    width: 100%;

    justify-content: flex-start;
  }

}

/* =========================================================
   LOJA — GRID DE PRODUTOS
========================================================= */

.store {
  width: min(1180px, calc(100% - 48px));
  max-width: none;

  margin: 22px auto 70px;

  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 16px;

  padding: 0;
}


/* =========================================================
   CARD
========================================================= */

.product-card {
  position: relative;

  min-width: 0;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  background:
    linear-gradient(180deg,
      rgba(6, 18, 12, 0.99),
      rgba(3, 12, 8, 0.99)) !important;

  border:
    1px solid rgba(255, 255, 255, 0.07) !important;

  border-radius: 15px !important;

  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.18) !important;

  cursor: pointer;

  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-3px) !important;

  border-color:
    rgba(234, 179, 8, 0.22) !important;

  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.24) !important;
}


/* =========================================================
   CARD VIP
========================================================= */

.product-card-vip {
  border-color:
    rgba(234, 179, 8, 0.15) !important;
}

.product-vip-badge {
  position: absolute;

  top: 10px;
  left: 10px;

  z-index: 20;

  min-height: 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 9px;

  background:
    linear-gradient(135deg,
      #facc15,
      #dcae00);

  border-radius: 999px;

  color: #111608;

  font-size: 8px;
  font-weight: 900;

  letter-spacing: .8px;

  box-shadow:
    0 7px 18px rgba(0, 0, 0, .28);
}


/* =========================================================
   GALERIA
========================================================= */

.card-gallery {
  padding: 10px 10px 0;
}

.zoom-wrapper {
  position: relative;
}

.zoom-container {
  width: 100%;
  height: 210px;

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

  overflow: hidden;

  background:
    linear-gradient(180deg,
      #f7f8f7,
      #eef0ef);

  border-radius: 11px;
}

.zoom-container img,
.product-card>img,
.card-gallery .main-img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  padding: 14px;

  background: transparent;

  transition:
    transform .25s ease;
}

.product-card:hover .main-img {
  transform: scale(1.025);
}


/* =========================================================
   MINIATURAS
========================================================= */

.card-gallery .thumbs {
  display: flex;

  gap: 6px;

  margin-top: 8px;

  overflow-x: auto;

  scrollbar-width: thin;
}

.card-gallery .thumbs img {
  width: 34px;
  height: 34px;

  flex: 0 0 34px;

  object-fit: contain;

  padding: 3px;

  background: #f3f4f3;

  border:
    1px solid rgba(255, 255, 255, 0.09);

  border-radius: 7px;

  cursor: pointer;

  transition:
    border-color .2s ease,
    transform .2s ease;
}

.card-gallery .thumbs img:hover {
  transform: translateY(-1px);

  border-color:
    rgba(234, 179, 8, 0.55);
}


/* =========================================================
   REMOVE ZOOM FLUTUANTE DA LISTAGEM
========================================================= */

.product-card .zoom-result {
  display: none !important;
}


/* =========================================================
   INFORMAÇÕES DO PRODUTO
========================================================= */

.product-info {
  flex: 1;

  display: flex;
  flex-direction: column;

  padding: 13px 12px 12px;
}

.product-card-heading {
  min-height: 44px;
}

.product-card-heading h3,
.product-info h3 {
  margin: 0 !important;

  color: #edf2ef;

  font-size: 12px !important;
  font-weight: 800;

  line-height: 1.4;
}


/* =========================================================
   PREÇO
========================================================= */

.product-card-price-area {
  margin-top: 13px;
}

.product-old-price {
  margin-bottom: 2px;

  color: #66736c;

  font-size: 8px;

  text-decoration: line-through;
}

.price {
  margin: 0 !important;

  color: #f2c319 !important;

  font-size: 18px !important;
  font-weight: 900;

  line-height: 1.1;
}

.product-card-price-label {
  display: block;

  margin-top: 3px;

  color: #5f6d65;

  font-size: 7px;
  font-weight: 700;
}


/* =========================================================
   BOTÃO
========================================================= */

.btn-view {
  width: 100%;
  height: 39px;

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

  gap: 7px;

  margin-top: 14px;

  padding: 0 12px;

  background:
    linear-gradient(135deg,
      #facc15,
      #eab308) !important;

  border: 0 !important;

  border-radius: 9px !important;

  color: #0a0d0b !important;

  font-family: inherit;
  font-size: 9px !important;
  font-weight: 900 !important;

  cursor: pointer;

  box-shadow:
    0 9px 20px rgba(234, 179, 8, 0.08);

  transition:
    transform .2s ease,
    filter .2s ease,
    box-shadow .2s ease;
}

.btn-view svg {
  width: 14px;
  height: 14px;

  flex-shrink: 0;
}

.btn-view:hover {
  transform: translateY(-1px);

  filter: brightness(1.04);

  box-shadow:
    0 12px 24px rgba(234, 179, 8, 0.13);
}

.btn-view:active {
  transform: translateY(0);
}


/* =========================================================
   CARD SEM GALERIA
========================================================= */

.product-card>img {
  width: calc(100% - 20px);
  height: 210px;

  margin: 10px 10px 0;

  padding: 14px;

  object-fit: contain;

  background:
    linear-gradient(180deg,
      #f7f8f7,
      #eef0ef);

  border-radius: 11px;
}


/* =========================================================
   DESKTOP MÉDIO
========================================================= */

@media (min-width: 769px) and (max-width: 1100px) {

  .store {
    width: calc(100% - 32px);

    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 14px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 561px) and (max-width: 768px) {

  .store {
    width: calc(100% - 28px);

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 12px;

    margin-top: 18px;
  }

  .zoom-container,
  .product-card>img {
    height: 190px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 560px) {

  .store {
    width: calc(100% - 28px);

    grid-template-columns: 1fr;

    gap: 13px;

    margin:
      18px auto 50px;
  }

  .product-card {
    border-radius: 14px !important;
  }

  .zoom-container,
  .product-card>img {
    height: 250px;
  }

  .product-info {
    padding:
      13px 13px 14px;
  }

  .product-card-heading {
    min-height: auto;
  }

  .product-card-heading h3,
  .product-info h3 {
    font-size: 13px !important;
  }

  .price {
    font-size: 19px !important;
  }

  .btn-view {
    height: 42px;

    font-size: 10px !important;
  }

}

/* =========================================================
   LOJA — MODAL DE SESSÃO
========================================================= */

.session-modal {
  position: fixed;
  inset: 0;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 24px;

  background: rgba(0, 0, 0, 0.80);

  backdrop-filter: blur(10px);

  z-index: 999999;
}

.session-box {
  width: min(400px, 100%);

  padding: 28px;

  text-align: center;

  background:
    radial-gradient(circle at top,
      rgba(234, 179, 8, 0.05),
      transparent 35%),
    linear-gradient(180deg,
      rgba(6, 18, 12, 0.995),
      rgba(3, 11, 7, 0.995));

  border:
    1px solid rgba(234, 179, 8, 0.15);

  border-radius: 18px;

  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.65);
}

.session-status-icon {
  width: 54px;
  height: 54px;

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

  margin: 0 auto 14px;

  color: #eab308;

  background:
    rgba(234, 179, 8, 0.065);

  border:
    1px solid rgba(234, 179, 8, 0.17);

  border-radius: 50%;
}

.session-status-icon svg {
  width: 25px;
  height: 25px;
}

.session-eyebrow {
  display: block;

  margin-bottom: 6px;

  color: #d9ad00;

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 1.4px;
}

.session-box h2 {
  margin: 0;

  color: #f7faf8;

  font-size: 21px;
  font-weight: 800;
}

.session-box p {
  max-width: 310px;

  margin: 10px auto 0;

  color: #738078;

  font-size: 10px;
  line-height: 1.6;
}

.session-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  margin-top: 18px;
  padding: 10px 12px;

  background:
    rgba(34, 197, 94, 0.025);

  border:
    1px solid rgba(34, 197, 94, 0.10);

  border-radius: 9px;
}

.session-security-note svg {
  width: 15px;
  height: 15px;

  flex-shrink: 0;

  color: #22c55e;
}

.session-security-note span {
  color: #718078;

  font-size: 8px;
}

.session-login-button {
  width: 100%;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin-top: 18px;

  padding: 0 14px;

  background:
    linear-gradient(135deg,
      #facc15,
      #eab308) !important;

  border: 0 !important;

  border-radius: 10px !important;

  color: #0a0d0b !important;

  font-family: inherit;
  font-size: 10px;
  font-weight: 900;

  cursor: pointer;

  transition:
    transform .2s ease,
    filter .2s ease;
}

.session-login-button svg {
  width: 15px;
  height: 15px;
}

.session-login-button:hover {
  transform: translateY(-1px);

  filter: brightness(1.04);
}

@media (max-width: 480px) {
  .session-modal {
    padding: 16px;
  }

  .session-box {
    padding: 24px 20px;
  }
}

/* =========================================================
   LOJA — ESTADOS
========================================================= */

.store-state {
  grid-column: 1 / -1;

  min-height: 260px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 38px 24px;

  text-align: center;

  background:
    linear-gradient(145deg,
      rgba(6, 18, 12, 0.92),
      rgba(3, 12, 8, 0.92));

  border:
    1px dashed rgba(255, 255, 255, 0.08);

  border-radius: 15px;
}

.store-state-eyebrow {
  margin-bottom: 7px;

  color: #d9ad00;

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 1.4px;
}

.store-state>strong {
  color: #edf3ef;

  font-size: 16px;
  font-weight: 800;
}

.store-state>p {
  max-width: 390px;

  margin: 7px auto 0;

  color: #6e7d74;

  font-size: 9px;

  line-height: 1.6;
}


/* =========================================================
   ESTADO VAZIO
========================================================= */

.store-empty-icon {
  width: 46px;
  height: 46px;

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

  margin-bottom: 14px;

  color: #7d8c83;

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

  border:
    1px solid rgba(255, 255, 255, 0.07);

  border-radius: 12px;
}

.store-empty-icon svg {
  width: 21px;
  height: 21px;
}

.store-clear-search {
  min-height: 36px;

  margin-top: 16px;
  padding: 0 14px;

  background:
    rgba(234, 179, 8, 0.055);

  border:
    1px solid rgba(234, 179, 8, 0.18);

  border-radius: 8px;

  color: #e7c42e;

  font-family: inherit;
  font-size: 9px;
  font-weight: 800;

  cursor: pointer;

  transition:
    background .2s ease,
    border-color .2s ease;
}

.store-clear-search:hover {
  background:
    rgba(234, 179, 8, 0.10);

  border-color:
    rgba(234, 179, 8, 0.30);
}


/* =========================================================
   CARREGAMENTO
========================================================= */

.store-loading-indicator {
  height: 28px;

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

  gap: 5px;

  margin-bottom: 12px;
}

.store-loading-indicator span {
  width: 5px;
  height: 5px;

  background: #eab308;

  border-radius: 50%;

  animation:
    storeLoadingPulse 1.1s infinite ease-in-out;
}

.store-loading-indicator span:nth-child(2) {
  animation-delay: .14s;
}

.store-loading-indicator span:nth-child(3) {
  animation-delay: .28s;
}

@keyframes storeLoadingPulse {

  0%,
  80%,
  100% {
    opacity: .25;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-4px);
  }

}