/* ============================================
   MULTI-LAYOUT SYSTEM - LAYOUTS CSS
   Layouts 3, 4, 5, 6
   ============================================ */

/* ============================================
   LAYOUT 3 — GRADE MODERNA
   Cards e-commerce com sombra, hover e botão
   ============================================ */

.layout-moderna .produto-moderno {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  margin-bottom: 20px;
}

.layout-moderna .produto-moderno:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.13);
}

.layout-moderna .produto-moderno a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.layout-moderna .produto-moderno .pm-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 aspect ratio */
  overflow: hidden;
  background: #f5f5f5;
}

.layout-moderna .produto-moderno .pm-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.layout-moderna .produto-moderno:hover .pm-img-wrapper img {
  transform: scale(1.06);
}

.layout-moderna .produto-moderno .pm-badge-oferta {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #ff4757, #ff6b81);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  letter-spacing: 0.3px;
}

.layout-moderna .produto-moderno .pm-body {
  padding: 14px 16px 16px;
}

.layout-moderna .produto-moderno .pm-nome {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.layout-moderna .produto-moderno .pm-descricao {
  display: block;
  font-size: 12px;
  color: #888;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 34px;
}

.layout-moderna .produto-moderno .pm-preco-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.layout-moderna .produto-moderno .pm-preco-info {
  display: flex;
  flex-direction: column;
}

.layout-moderna .produto-moderno .pm-preco-antigo {
  font-size: 11px;
  color: #aaa;
  text-decoration: line-through;
  line-height: 1;
}

.layout-moderna .produto-moderno .pm-preco {
  font-size: 16px;
  font-weight: 700;
  color: #10b981;
  line-height: 1.2;
}

.layout-moderna .produto-moderno .pm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.layout-moderna .produto-moderno:hover .pm-btn {
  background: #059669;
  transform: scale(1.1);
}

.layout-moderna .produto-moderno .pm-selecione {
  font-size: 12px;
  color: #888;
  font-weight: 500;
}

/* Sem estoque */
.layout-moderna .produto-moderno .pm-sem-estoque {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 20px;
  background: #f1f1f1;
  color: #999;
  font-size: 11px;
  font-weight: 500;
}

/* ============================================
   LAYOUT 4 — LISTA COMPACTA
   Itens em fila única, imagem pequena, ideal para menus grandes
   ============================================ */

.layout-compacta .produto-compacto {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 8px;
  border: 1px solid rgba(0,0,0,.05);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.layout-compacta .produto-compacto:hover {
  background: #fafafa;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.layout-compacta .produto-compacto a {
  display: flex;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.layout-compacta .produto-compacto .pc-img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f5;
}

.layout-compacta .produto-compacto .pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layout-compacta .produto-compacto .pc-info {
  flex: 1;
  padding: 0 12px;
  min-width: 0;
}

.layout-compacta .produto-compacto .pc-nome {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.layout-compacta .produto-compacto .pc-descricao {
  display: block;
  font-size: 11px;
  color: #999;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.layout-compacta .produto-compacto .pc-preco-area {
  flex-shrink: 0;
  text-align: right;
  min-width: 80px;
}

.layout-compacta .produto-compacto .pc-preco-antigo {
  display: block;
  font-size: 11px;
  color: #bbb;
  text-decoration: line-through;
  line-height: 1;
  margin-bottom: 2px;
}

.layout-compacta .produto-compacto .pc-preco {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #10b981;
  line-height: 1;
}

.layout-compacta .produto-compacto .pc-selecione {
  font-size: 11px;
  color: #888;
  font-weight: 500;
}

.layout-compacta .produto-compacto .pc-badge-oferta {
  display: inline-block;
  background: linear-gradient(135deg, #ff4757, #ff6b81);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  margin-bottom: 3px;
}

.layout-compacta .produto-compacto .pc-sem-estoque {
  font-size: 11px;
  color: #ccc;
  font-weight: 500;
}

/* ============================================
   LAYOUT 5 — VITRINE PREMIUM
   Cards grandes, overlay gradiente, estilo magazine
   ============================================ */

.layout-vitrine .produto-vitrine {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.layout-vitrine .produto-vitrine:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,.18);
}

.layout-vitrine .produto-vitrine a {
  display: block;
  text-decoration: none;
  color: #fff;
}

.layout-vitrine .produto-vitrine .pv-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 65%; /* 3:2 ratio */
  overflow: hidden;
}

.layout-vitrine .produto-vitrine .pv-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.layout-vitrine .produto-vitrine:hover .pv-img-wrapper img {
  transform: scale(1.08);
}

.layout-vitrine .produto-vitrine .pv-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 20px 18px;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.35) 50%, transparent 100%);
  z-index: 2;
}

.layout-vitrine .produto-vitrine .pv-badge-oferta {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #ff4757, #e8313a);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 24px;
  z-index: 3;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(255,71,87,.4);
}

.layout-vitrine .produto-vitrine .pv-nome {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

.layout-vitrine .produto-vitrine .pv-descricao {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.8);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.layout-vitrine .produto-vitrine .pv-preco-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.layout-vitrine .produto-vitrine .pv-preco-antigo {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  text-decoration: line-through;
  margin-right: 8px;
}

.layout-vitrine .produto-vitrine .pv-preco {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
}

.layout-vitrine .produto-vitrine .pv-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease;
  border: 1px solid rgba(255,255,255,.25);
}

.layout-vitrine .produto-vitrine:hover .pv-btn {
  background: rgba(255,255,255,.35);
}

.layout-vitrine .produto-vitrine .pv-selecione {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

.layout-vitrine .produto-vitrine .pv-sem-estoque {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(0,0,0,.4);
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 500;
}

/* ============================================
   LAYOUT 6 — MOSAICO
   Masonry/Pinterest style com tamanhos variados
   ============================================ */

.layout-mosaico {
  column-count: 3;
  column-gap: 16px;
}

.layout-mosaico .produto-mosaico {
  display: inline-block;
  width: 100%;
  margin-bottom: 16px;
  break-inside: avoid;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.layout-mosaico .produto-mosaico:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
}

.layout-mosaico .produto-mosaico a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.layout-mosaico .produto-mosaico .pms-img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.layout-mosaico .produto-mosaico .pms-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.layout-mosaico .produto-mosaico:hover .pms-img-wrapper img {
  transform: scale(1.05);
}

.layout-mosaico .produto-mosaico .pms-badge-oferta {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #ff4757, #ff6b81);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 16px;
  z-index: 2;
}

.layout-mosaico .produto-mosaico .pms-body {
  padding: 12px 14px 14px;
}

.layout-mosaico .produto-mosaico .pms-nome {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 4px;
}

.layout-mosaico .produto-mosaico .pms-descricao {
  display: block;
  font-size: 11px;
  color: #999;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.layout-mosaico .produto-mosaico .pms-preco-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.layout-mosaico .produto-mosaico .pms-preco-antigo {
  font-size: 11px;
  color: #bbb;
  text-decoration: line-through;
}

.layout-mosaico .produto-mosaico .pms-preco {
  font-size: 15px;
  font-weight: 700;
  color: #10b981;
}

.layout-mosaico .produto-mosaico .pms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.layout-mosaico .produto-mosaico:hover .pms-btn {
  background: #059669;
  transform: scale(1.1);
}

.layout-mosaico .produto-mosaico .pms-selecione {
  font-size: 11px;
  color: #888;
  font-weight: 500;
}

.layout-mosaico .produto-mosaico .pms-sem-estoque {
  font-size: 11px;
  color: #ccc;
  font-weight: 500;
}

/* ============================================
   RESPONSIVIDADE — LAYOUT 3 (Grade Moderna)
   ============================================ */

@media (max-width: 991px) {
  .layout-moderna .produto-moderno .pm-img-wrapper {
    padding-top: 85%;
  }
  .layout-moderna .produto-moderno .pm-nome {
    font-size: 13px;
  }
  .layout-moderna .produto-moderno .pm-descricao {
    min-height: auto;
    -webkit-line-clamp: 1;
    margin-bottom: 6px;
  }
}

@media (max-width: 544px) {
  .layout-moderna .produto-moderno {
    margin-bottom: 12px;
  }
  .layout-moderna .produto-moderno .pm-body {
    padding: 10px 12px 12px;
  }
}

/* ============================================
   RESPONSIVIDADE — LAYOUT 4 (Lista Compacta)
   ============================================ */

@media (max-width: 991px) {
  .layout-compacta .produto-compacto {
    padding: 8px 10px;
  }
  .layout-compacta .produto-compacto .pc-img {
    width: 48px;
    height: 48px;
  }
  .layout-compacta .produto-compacto .pc-info {
    padding: 0 10px;
  }
}

/* ============================================
   RESPONSIVIDADE — LAYOUT 5 (Vitrine Premium)
   ============================================ */

@media (max-width: 991px) {
  .layout-vitrine .produto-vitrine .pv-img-wrapper {
    padding-top: 55%;
  }
  .layout-vitrine .produto-vitrine .pv-nome {
    font-size: 16px;
  }
  .layout-vitrine .produto-vitrine .pv-preco {
    font-size: 18px;
  }
  .layout-vitrine .produto-vitrine .pv-overlay {
    padding: 50px 16px 14px;
  }
}

@media (max-width: 544px) {
  .layout-vitrine .produto-vitrine .pv-img-wrapper {
    padding-top: 60%;
  }
  .layout-vitrine .produto-vitrine .pv-descricao {
    display: none;
  }
  .layout-vitrine .produto-vitrine .pv-nome {
    font-size: 15px;
  }
  .layout-vitrine .produto-vitrine .pv-preco {
    font-size: 16px;
  }
}

/* ============================================
   RESPONSIVIDADE — LAYOUT 6 (Mosaico)
   ============================================ */

@media (max-width: 991px) {
  .layout-mosaico {
    column-count: 2;
    column-gap: 12px;
  }
  .layout-mosaico .produto-mosaico {
    margin-bottom: 12px;
  }
}

@media (max-width: 544px) {
  .layout-mosaico {
    column-count: 2;
    column-gap: 10px;
  }
  .layout-mosaico .produto-mosaico .pms-body {
    padding: 10px 10px 12px;
  }
  .layout-mosaico .produto-mosaico .pms-nome {
    font-size: 13px;
  }
  .layout-mosaico .produto-mosaico .pms-descricao {
    display: none;
  }
}

/* ============================================
   SWIPER — Ajustes para novos layouts dentro do carrossel de destaques
   ============================================ */

.swiper-slide .produto-moderno,
.swiper-slide .produto-compacto,
.swiper-slide .produto-vitrine,
.swiper-slide .produto-mosaico {
  margin-bottom: 0;
}

/* Swiper slide para Layout 5 - Vitrine */
.swiper-slide .produto-vitrine .pv-img-wrapper {
  padding-top: 60%;
}

/* ============================================
   LAYOUT 7 — MINIMALISTA
   Sem bordas, muito whitespace, foco na imagem (Apple style)
   ============================================ */

.layout-minimalista .produto-minimalista {
  position: relative;
  margin-bottom: 30px;
}

.layout-minimalista .produto-minimalista a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.layout-minimalista .produto-minimalista .pmin-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #fafafa;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.layout-minimalista .produto-minimalista:hover .pmin-img-wrapper {
  transform: scale(1.02);
}

.layout-minimalista .produto-minimalista .pmin-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.layout-minimalista .produto-minimalista .pmin-badge-oferta {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #111;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  z-index: 2;
}

.layout-minimalista .produto-minimalista .pmin-body {
  padding: 0 5px;
  text-align: center;
}

.layout-minimalista .produto-minimalista .pmin-nome {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  line-height: 1.4;
  margin-bottom: 8px;
}

.layout-minimalista .produto-minimalista .pmin-preco-antigo {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  margin-right: 6px;
}

.layout-minimalista .produto-minimalista .pmin-preco {
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.layout-minimalista .produto-minimalista .pmin-selecione,
.layout-minimalista .produto-minimalista .pmin-sem-estoque {
  font-size: 13px;
  color: #888;
}

/* ============================================
   LAYOUT 8 — CARD ANIMADO
   Imagem 100%, overlay hover slide-up
   ============================================ */

.layout-animado .produto-animado {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.layout-animado .produto-animado a {
  display: block;
  text-decoration: none;
  color: #fff;
  position: relative;
  width: 100%;
  padding-top: 120%; /* 5:6 Aspect ratio */
}

.layout-animado .produto-animado .pa-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0.9;
}

.layout-animado .produto-animado:hover .pa-img {
  transform: scale(1.1);
  opacity: 0.6;
}

.layout-animado .produto-animado .pa-badge-oferta {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff4757;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

.layout-animado .produto-animado .pa-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  transform: translateY(30%);
  transition: transform 0.4s ease;
}

.layout-animado .produto-animado:hover .pa-content {
  transform: translateY(0);
}

.layout-animado .produto-animado .pa-nome {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.layout-animado .produto-animado .pa-descricao {
  display: block;
  font-size: 12px;
  color: #ddd;
  margin-bottom: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
  transition-delay: 0.1s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.layout-animado .produto-animado:hover .pa-descricao {
  opacity: 1;
}

.layout-animado .produto-animado .pa-preco-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.layout-animado .produto-animado .pa-preco {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.layout-animado .produto-animado .pa-btn {
  background: #fff;
  color: #000;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.layout-animado .produto-animado:hover .pa-btn {
  transform: scale(1.15);
}

/* ============================================
   LAYOUT 9 — LISTA GOURMET
   Horizontal espaçoso, foco em imagem grande à esq.
   ============================================ */

.layout-gourmet .produto-gourmet {
  display: flex;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.layout-gourmet .produto-gourmet:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.layout-gourmet .produto-gourmet a {
  display: flex;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.layout-gourmet .produto-gourmet .pg-img-wrapper {
  width: 140px;
  flex-shrink: 0;
  position: relative;
}

.layout-gourmet .produto-gourmet .pg-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.layout-gourmet .produto-gourmet .pg-badge-oferta {
  position: absolute;
  top: 10px; left: 10px;
  background: #ff4757; color: #fff;
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px;
  z-index: 2;
}

.layout-gourmet .produto-gourmet .pg-body {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.layout-gourmet .produto-gourmet .pg-nome {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.layout-gourmet .produto-gourmet .pg-descricao {
  font-size: 12px;
  color: #777;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.layout-gourmet .produto-gourmet .pg-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.layout-gourmet .produto-gourmet .pg-preco {
  font-size: 17px;
  font-weight: 700;
  color: #10b981;
}

.layout-gourmet .produto-gourmet .pg-preco-antigo {
  font-size: 12px; color: #aaa; text-decoration: line-through; display: block;
}

.layout-gourmet .produto-gourmet .pg-btn {
  background: #f4f4f4;
  color: #333;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.layout-gourmet .produto-gourmet:hover .pg-btn {
  background: #10b981;
  color: #fff;
}

@media (max-width: 768px) {
  .layout-gourmet .produto-gourmet .pg-img-wrapper {
    width: 110px;
  }
  .layout-gourmet .produto-gourmet .pg-body {
    padding: 12px;
  }
  .layout-animado .produto-animado .pa-content {
    transform: translateY(0); /* Sempre visível no mobile */
  }
  .layout-animado .produto-animado .pa-descricao {
    opacity: 1;
  }
}

/* ============================================
   GRID FLEX FIX FOR BOOTSTRAP 3 (Equal Heights & Anti-Snagging)
   ============================================ */
.row.layout-moderna,
.row.layout-vitrine,
.row.layout-minimalista,
.row.layout-animado,
.row.layout-glass,
.row.layout-showcase,
.row.layout-story,
.relacionados .tv-infinite {
  display: flex !important;
  flex-wrap: wrap !important;
}

.row.layout-showcase {
  justify-content: center !important;
}

.row.layout-moderna::before,
.row.layout-moderna::after,
.row.layout-vitrine::before,
.row.layout-vitrine::after,
.row.layout-minimalista::before,
.row.layout-minimalista::after,
.row.layout-animado::before,
.row.layout-animado::after,
.row.layout-glass::before,
.row.layout-glass::after,
.row.layout-showcase::before,
.row.layout-showcase::after,
.row.layout-story::before,
.row.layout-story::after,
.relacionados .tv-infinite::before,
.relacionados .tv-infinite::after {
  display: none !important;
}

.row.layout-moderna > [class*="col-"],
.row.layout-vitrine > [class*="col-"],
.row.layout-minimalista > [class*="col-"],
.row.layout-animado > [class*="col-"],
.row.layout-glass > [class*="col-"],
.row.layout-showcase > [class*="col-"],
.row.layout-story > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

/* ============================================
   LAYOUT 10 — NEON 3D GLOW (FUTURISTA 3D)
   Palco iluminado com efeito de salto tridimensional e glow neon
   ============================================ */

.layout-glass .produto-glass {
  position: relative;
  background: #0f172a;
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5), 0 0 25px -5px rgba(99, 102, 241, 0.25);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.layout-glass .produto-glass:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px -5px rgba(0, 0, 0, 0.65), 0 0 35px rgba(236, 72, 153, 0.4), 0 0 20px rgba(99, 102, 241, 0.5);
  border-color: rgba(236, 72, 153, 0.6);
}

.layout-glass .produto-glass a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.layout-glass .produto-glass .pglass-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 88%;
  border-radius: 22px 22px 0 0;
  background: radial-gradient(circle at 50% 60%, rgba(99, 102, 241, 0.35) 0%, rgba(236, 72, 153, 0.15) 50%, rgba(15, 23, 42, 0.8) 100%);
  overflow: visible;
}

.layout-glass .produto-glass .pglass-img-wrapper img {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}

.layout-glass .produto-glass:hover .pglass-img-wrapper img {
  transform: translateY(-8px) scale(1.08);
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.7));
}

.layout-glass .produto-glass .pglass-badge-oferta {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.5);
  z-index: 2;
}

.layout-glass .produto-glass .pglass-body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.layout-glass .produto-glass .pglass-nome {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 4px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  min-height: 36px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.layout-glass .produto-glass .pglass-descricao {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.4;
  margin-bottom: 12px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  min-height: 30px;
}

.layout-glass .produto-glass .pglass-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 0;
  max-width: 100%;
}

.layout-glass .produto-glass .pglass-preco-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.layout-glass .produto-glass .pglass-preco-antigo {
  font-size: 11px;
  color: #64748b;
  text-decoration: line-through;
  line-height: 1;
}

.layout-glass .produto-glass .pglass-preco {
  font-size: 17px;
  font-weight: 900;
  color: #38bdf8;
  line-height: 1.2;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
}

.layout-glass .produto-glass .pglass-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  transition: all 0.25s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.layout-glass .produto-glass:hover .pglass-btn {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6);
}

.layout-glass .produto-glass .pglass-selecione,
.layout-glass .produto-glass .pglass-sem-estoque {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 700;
}

/* ============================================
   LAYOUT 11 — CINEMA EDITORIAL (SPLIT 50/50 LUXO)
   Metade fotografia widescreen cinema, metade painel editorial dark
   ============================================ */

.layout-showcase {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.layout-showcase .produto-showcase {
  display: block;
  background: #090d16;
  border-radius: 22px;
  margin: 0 auto 20px auto;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  width: 100%;
  max-width: 100%;
}

.layout-showcase .produto-showcase:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(52, 211, 153, 0.4);
}

.layout-showcase .produto-showcase a {
  display: flex;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
  color: inherit;
  min-height: 160px;
  overflow: hidden;
}

.layout-showcase .produto-showcase .pshow-img-wrapper {
  flex: 0 0 42%;
  max-width: 42%;
  width: 42%;
  min-height: 160px;
  position: relative;
  background: #000000;
  overflow: hidden;
}

.layout-showcase .produto-showcase .pshow-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.layout-showcase .produto-showcase:hover .pshow-img-wrapper img {
  transform: scale(1.08);
}

.layout-showcase .produto-showcase .pshow-badge-oferta {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(217, 119, 6, 0.4);
}

.layout-showcase .produto-showcase .pshow-body {
  flex: 1 1 58%;
  max-width: 58%;
  width: 58%;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  background: #090d16;
  overflow: hidden;
}

.layout-showcase .produto-showcase .pshow-body > div:first-child {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}

.layout-showcase .produto-showcase .pshow-nome {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
  letter-spacing: -0.3px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.layout-showcase .produto-showcase .pshow-descricao {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.45;
  margin-bottom: 10px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.layout-showcase .produto-showcase .pshow-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

.layout-showcase .produto-showcase .pshow-preco-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.layout-showcase .produto-showcase .pshow-preco-antigo {
  font-size: 11px;
  color: #64748b;
  text-decoration: line-through;
  line-height: 1;
}

.layout-showcase .produto-showcase .pshow-preco {
  font-size: 18px;
  font-weight: 900;
  color: #34d399;
  white-space: nowrap;
  letter-spacing: -0.3px;
}

.layout-showcase .produto-showcase .pshow-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #090d16;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.layout-showcase .produto-showcase:hover .pshow-btn {
  background: #34d399;
  color: #000;
  box-shadow: 0 4px 20px rgba(52, 211, 153, 0.4);
  transform: scale(1.04);
}

.layout-showcase .produto-showcase .pshow-selecione,
.layout-showcase .produto-showcase .pshow-sem-estoque {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 700;
}

@media (max-width: 768px) {
  .layout-showcase .produto-showcase a {
    min-height: 110px;
  }
  .layout-showcase .produto-showcase .pshow-img-wrapper {
    flex: 0 0 110px;
    max-width: 110px;
    width: 110px;
    min-height: 105px;
  }
  .layout-showcase .produto-showcase .pshow-body {
    flex: 1;
    max-width: calc(100% - 110px);
    width: calc(100% - 110px);
    padding: 10px 12px;
  }
  .layout-showcase .produto-showcase .pshow-nome {
    font-size: 13px;
    -webkit-line-clamp: 2;
    margin-bottom: 2px;
  }
  .layout-showcase .produto-showcase .pshow-descricao {
    display: none;
  }
  .layout-showcase .produto-showcase .pshow-preco {
    font-size: 15px;
  }
  .layout-showcase .produto-showcase .pshow-btn {
    padding: 5px 8px;
    font-size: 10px;
    border-radius: 6px;
  }
}

/* ============================================
   LAYOUT 12 — CÁPSULA ORGÂNICA (DESIGN FLUIDO)
   Cantos assimétricos dinâmicos com barra de ação unificada (preço + botão)
   ============================================ */

.layout-story .produto-story {
  position: relative;
  background: #ffffff;
  border-radius: 32px 10px 32px 10px;
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 8px 30px -5px rgba(15, 23, 42, 0.08);
  border: 1.5px solid #eef2f6;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 100%;
}

.layout-story .produto-story:hover {
  border-radius: 10px 32px 10px 32px;
  transform: translateY(-6px);
  box-shadow: 0 18px 38px -5px rgba(16, 185, 129, 0.18);
  border-color: #10b981;
}

.layout-story .produto-story a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.layout-story .produto-story .pstory-img-wrapper {
  position: relative;
  width: calc(100% - 16px);
  margin: 8px 8px 0 8px;
  padding-top: 85%;
  overflow: hidden;
  border-radius: 26px 8px 20px 8px;
  background: #f8fafc;
}

.layout-story .produto-story .pstory-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.layout-story .produto-story:hover .pstory-img-wrapper img {
  transform: scale(1.08);
}

.layout-story .produto-story .pstory-badge-oferta {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
}

.layout-story .produto-story .pstory-body {
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.layout-story .produto-story .pstory-nome {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 2px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  min-height: 34px;
}

.layout-story .produto-story .pstory-descricao {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 11px;
  color: #64748b;
  line-height: 1.3;
  margin-bottom: 8px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  min-height: 15px;
}

/* Barra de Ação Unificada (Pill Bar) */
.layout-story .produto-story .pstory-action-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  padding: 4px 5px 4px 12px;
  margin-top: auto;
  transition: all 0.25s ease;
  min-width: 0;
  max-width: 100%;
}

.layout-story .produto-story:hover .pstory-action-pill {
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.layout-story .produto-story .pstory-preco-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.layout-story .produto-story .pstory-preco-antigo {
  font-size: 10px;
  color: #94a3b8;
  text-decoration: line-through;
  line-height: 1;
}

.layout-story .produto-story .pstory-preco {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
}

.layout-story .produto-story .pstory-pill-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
  transition: transform 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}

.layout-story .produto-story:hover .pstory-pill-btn {
  background: #059669;
  transform: rotate(90deg) scale(1.08);
}

.layout-story .produto-story .pstory-selecione,
.layout-story .produto-story .pstory-sem-estoque {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}

@media (max-width: 544px) {
  .layout-story .produto-story .pstory-body {
    padding: 8px 8px 10px;
  }
  .layout-story .produto-story .pstory-nome {
    font-size: 12px;
    min-height: auto;
  }
  .layout-story .produto-story .pstory-descricao {
    display: none;
  }
  .layout-story .produto-story .pstory-action-pill {
    padding: 3px 4px 3px 8px;
  }
  .layout-story .produto-story .pstory-preco {
    font-size: 13px;
  }
  .layout-story .produto-story .pstory-pill-btn {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
}

/* Swiper extras */
.swiper-slide .produto-minimalista,
.swiper-slide .produto-animado,
.swiper-slide .produto-gourmet,
.swiper-slide .produto-glass,
.swiper-slide .produto-showcase,
.swiper-slide .produto-story {
  margin-bottom: 0;
}

.swiper-slide .layout-showcase {
  width: 100%;
  display: flex;
  justify-content: center;
}

.swiper-slide .produto-showcase {
  margin: 0 auto;
}

/* ==========================================================================
   MULTI-LAYOUT SACOLA / CARRINHO DE COMPRAS
   Layout 1: Clássica (Tabela) | Layout 2: Moderna Flutuante | Layout 3: Express Gourmet
   ========================================================================== */

/* Regras Comuns para todos os layouts */
.sacola-null-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
  margin-bottom: 30px;
}
.sacola-null-box i {
  font-size: 48px;
  color: #cbd5e1;
  margin-bottom: 15px;
  display: block;
}
.sacola-null-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}
.sacola-null-box p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}
.sacola-null-box .btn-voltar-loja {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #10b981;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.sacola-null-box .btn-voltar-loja:hover {
  background: #059669;
  transform: translateY(-2px);
  color: #fff;
}

/* ==========================================================================
   LAYOUT 2 — SACOLA MODERNA FLUTUANTE (CARDS EM APLICATIVO)
   ========================================================================== */
.sacola-layout-moderna {
  margin-bottom: 40px;
}

.sacola-layout-moderna .sacola-items-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sacola-layout-moderna .sacola-card-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1.5px solid #f1f5f9;
  transition: all 0.3s ease;
  position: relative;
}

.sacola-layout-moderna .sacola-card-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.sacola-layout-moderna .sc-item-foto {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  overflow: hidden;
  background: #f8fafc;
  flex-shrink: 0;
  position: relative;
}

.sacola-layout-moderna .sc-item-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sacola-layout-moderna .sacola-card-item:hover .sc-item-foto img {
  transform: scale(1.06);
}

.sacola-layout-moderna .sc-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.sacola-layout-moderna .sc-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.sacola-layout-moderna .sc-item-title {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sacola-layout-moderna .sc-item-title:hover {
  color: #10b981;
}

.sacola-layout-moderna .sc-item-remove {
  color: #94a3b8;
  font-size: 16px;
  padding: 4px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sacola-layout-moderna .sc-item-remove:hover {
  color: #ef4444;
  background: #fee2e2;
}

.sacola-layout-moderna .sc-item-variacoes {
  font-size: 11px;
  color: #64748b;
  background: #f8fafc;
  border-radius: 8px;
  padding: 6px 10px;
  margin: 6px 0 10px 0;
  line-height: 1.4;
  border: 1px dashed #e2e8f0;
}

.sacola-layout-moderna .sc-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 12px;
}

/* Pill de Quantidade */
.sacola-layout-moderna .sc-qty-pill {
  display: inline-flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 30px;
  padding: 3px 6px;
  gap: 4px;
  border: 1px solid #e2e8f0;
}

.sacola-layout-moderna .sc-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #1e293b;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.sacola-layout-moderna .sc-qty-btn:hover {
  background: #10b981;
  color: #ffffff;
  transform: scale(1.08);
}

.sacola-layout-moderna .sc-qty-input {
  width: 28px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 13px;
  color: #0f172a;
  -moz-appearance: textfield;
}

.sacola-layout-moderna .sc-qty-input::-webkit-outer-spin-button,
.sacola-layout-moderna .sc-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sacola-layout-moderna .sc-item-price {
  font-size: 16px;
  font-weight: 800;
  color: #10b981;
  letter-spacing: -0.3px;
}

/* Painel de Resumo / Sticky Summary */
.sacola-layout-moderna .sacola-summary-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  border: 1.5px solid #eef2f6;
  position: sticky;
  top: 90px;
}

.sacola-layout-moderna .sc-sum-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  padding-bottom: 14px;
  border-bottom: 1.5px solid #f1f5f9;
  margin-bottom: 16px;
}

.sacola-layout-moderna .sc-sum-header i {
  font-size: 20px;
  color: #10b981;
}

.sacola-layout-moderna .sc-sum-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
}

.sacola-layout-moderna .sacola-subtotal-amount {
  font-size: 24px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.sacola-layout-moderna .sc-sum-minimo {
  font-size: 12px;
  color: #f59e0b;
  background: #fffbeb;
  border: 1px solid #fef3c7;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.sacola-layout-moderna .sc-sum-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.sacola-layout-moderna .sc-sum-actions .botao-acao,
.sacola-layout-gourmet .sg-actions-grid .botao-acao {
  width: 100%;
  padding: 13px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.sacola-layout-moderna .sc-sum-actions .btn-delivery,
.sacola-layout-gourmet .btn-delivery {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.sacola-layout-moderna .sc-sum-actions .btn-delivery:hover,
.sacola-layout-gourmet .btn-delivery:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.sacola-layout-moderna .sc-sum-actions .btn-balcao,
.sacola-layout-gourmet .btn-balcao {
  background: #f8fafc;
  color: #1e293b;
  border: 1.5px solid #e2e8f0;
}

.sacola-layout-moderna .sc-sum-actions .btn-balcao:hover,
.sacola-layout-gourmet .btn-balcao:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

.sacola-layout-moderna .sc-sum-actions .btn-mesa,
.sacola-layout-gourmet .btn-mesa {
  background: #f8fafc;
  color: #6366f1;
  border: 1.5px solid #e0e7ff;
}

.sacola-layout-moderna .sc-sum-actions .btn-mesa:hover,
.sacola-layout-gourmet .btn-mesa:hover {
  background: #e0e7ff;
  transform: translateY(-2px);
}

/* ==========================================================================
   LAYOUT 3 — SACOLA EXPRESS GOURMET (MINIMALISTA COM BARRA DE PROGRESSO)
   ========================================================================== */
.sacola-layout-gourmet {
  max-width: 860px;
  margin: 0 auto 40px auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1.5px solid #f1f5f9;
}

/* Barra de Progresso do Pedido Mínimo */
.sacola-progress-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.sacola-progress-box.completed {
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.sacola-progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.sacola-progress-box.completed .sacola-progress-header {
  color: #065f46;
}

.sacola-progress-bar {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.sacola-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  border-radius: 20px;
  width: 0%;
  transition: width 0.4s ease;
}

.sacola-progress-box.completed .sacola-progress-fill {
  background: #10b981;
}

/* Lista Gourmet */
.sacola-gourmet-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
}

.sacola-gourmet-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #eef2f6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
}

.sacola-gourmet-item:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.sacola-gourmet-item .sg-item-thumb {
  width: 75px;
  height: 75px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #000000;
}

.sacola-gourmet-item .sg-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sacola-gourmet-item .sg-item-details {
  flex: 1;
  min-width: 0;
}

.sacola-gourmet-item .sg-item-name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.sacola-gourmet-item .sg-item-name {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.sacola-gourmet-item .sg-item-price {
  font-size: 16px;
  font-weight: 900;
  color: #10b981;
  white-space: nowrap;
}

.sacola-gourmet-item .sg-item-tags {
  font-size: 11px;
  color: #64748b;
  margin-bottom: 8px;
  line-height: 1.4;
}

.sacola-gourmet-item .sg-item-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sacola-gourmet-item .sg-qty-counter {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  overflow: hidden;
}

.sacola-gourmet-item .sg-qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #334155;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sacola-gourmet-item .sg-qty-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.sacola-gourmet-item .sg-qty-val {
  width: 32px;
  text-align: center;
  border: none;
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  background: transparent;
  -moz-appearance: textfield;
}

.sacola-gourmet-item .sg-qty-val::-webkit-outer-spin-button,
.sacola-gourmet-item .sg-qty-val::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sacola-gourmet-item .sg-remove-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sacola-gourmet-item .sg-remove-btn:hover {
  color: #ef4444;
}

/* Gourmet Resumo e Ações */
.sacola-gourmet-summary {
  border-top: 2px dashed #e2e8f0;
  padding-top: 22px;
  margin-top: 10px;
}

.sacola-gourmet-summary .sg-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.sacola-gourmet-summary .sg-sum-label {
  font-size: 17px;
  font-weight: 700;
  color: #475569;
}

.sacola-gourmet-summary .sg-sum-value {
  font-size: 26px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.sacola-gourmet-summary .sg-actions-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sacola-gourmet-summary .sg-actions-grid > div {
  flex: 1 1 calc(33.333% - 12px);
  min-width: 150px;
}

@media (max-width: 768px) {
  .sacola-layout-moderna .sacola-card-item {
    padding: 12px;
    gap: 12px;
  }
  .sacola-layout-moderna .sc-item-foto {
    width: 70px;
    height: 70px;
  }
  .sacola-layout-moderna .sc-item-title {
    font-size: 14px;
  }
  .sacola-layout-moderna .sacola-summary-card {
    margin-top: 20px;
    padding: 18px;
  }
  .sacola-layout-gourmet {
    padding: 16px;
    border-radius: 16px;
  }
  .sacola-gourmet-item {
    padding: 12px;
    gap: 12px;
  }
  .sacola-gourmet-item .sg-item-thumb {
    width: 60px;
    height: 60px;
  }
  .sacola-gourmet-item .sg-item-name {
    font-size: 14px;
  }
  .sacola-gourmet-summary .sg-actions-grid > div {
    flex: 1 1 100%;
  }
}

/* ==========================================================================
   LAYOUT 4 — CARROSSEL DE HISTÓRIAS (SWIPE HORIZONTAL / STORIES)
   ========================================================================== */
.sacola-layout-stories {
  margin-bottom: 40px;
}

.sacola-stories-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 4px 20px 4px;
  scrollbar-width: none;
}

.sacola-stories-track::-webkit-scrollbar {
  display: none;
}

.sacola-story-card {
  flex: 0 0 280px;
  scroll-snap-align: center;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sacola-story-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.sacola-story-card .ss-img-wrap {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.sacola-story-card .ss-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sacola-story-card:hover .ss-img-wrap img {
  transform: scale(1.1);
}

.sacola-story-card .ss-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.95));
  pointer-events: none;
}

.sacola-story-card .ss-remove-float {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sacola-story-card .ss-remove-float:hover {
  background: #ef4444;
  border-color: #ef4444;
  transform: scale(1.15);
}

.sacola-story-card .ss-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sacola-story-card .ss-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sacola-story-card .ss-tags {
  font-size: 11px;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.06);
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.4;
}

.sacola-story-card .ss-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.sacola-story-card .ss-qty-capsule {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3px 5px;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sacola-story-card .ss-qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sacola-story-card .ss-qty-btn:hover {
  background: #10b981;
}

.sacola-story-card .ss-qty-val {
  width: 24px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 800;
  font-size: 13px;
  color: #ffffff;
  -moz-appearance: textfield;
}

.sacola-story-card .ss-qty-val::-webkit-outer-spin-button,
.sacola-story-card .ss-qty-val::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sacola-story-card .ss-price {
  font-size: 20px;
  font-weight: 900;
  color: #34d399;
  letter-spacing: -0.5px;
}

/* Stories Summary Panel */
.sacola-stories-summary {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1.5px solid #eef2f6;
  margin-top: 24px;
}

.sacola-stories-summary .ss-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.sacola-stories-summary .ss-sum-label {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
}

.sacola-stories-summary .ss-sum-value {
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.sacola-stories-summary .ss-sum-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sacola-stories-summary .ss-sum-actions > div {
  flex: 1 1 calc(33.333% - 12px);
  min-width: 150px;
}

.sacola-stories-summary .botao-acao {
  width: 100%;
  padding: 13px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sacola-stories-summary .btn-stories-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.sacola-stories-summary .btn-stories-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.sacola-stories-summary .btn-stories-secondary {
  background: #f1f5f9;
  color: #334155;
  border: 1.5px solid #e2e8f0;
}

.sacola-stories-summary .btn-stories-secondary:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

/* Scroll indicator dots */
.sacola-stories-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.sacola-stories-dots .ss-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all 0.3s ease;
}

.sacola-stories-dots .ss-dot.active {
  background: #10b981;
  width: 22px;
  border-radius: 10px;
}

/* ==========================================================================
   LAYOUT 5 — ACORDEÃO INTERATIVO (EXPAND / COLLAPSE)
   ========================================================================== */
.sacola-layout-accordion {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.sacola-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sacola-accordion-item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #eef2f6;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.sacola-accordion-item.sa-open {
  border-color: #10b981;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.12);
}

.sacola-accordion-item .sa-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
}

.sacola-accordion-item .sa-header:hover {
  background: #f8fafc;
}

.sacola-accordion-item .sa-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #64748b;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sacola-accordion-item.sa-open .sa-chevron {
  background: #10b981;
  color: #ffffff;
  transform: rotate(180deg);
}

.sacola-accordion-item .sa-mini-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  background: #f1f5f9;
  flex-shrink: 0;
}

.sacola-accordion-item .sa-mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sacola-accordion-item .sa-header-info {
  flex: 1;
  min-width: 0;
}

.sacola-accordion-item .sa-header-name {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sacola-accordion-item .sa-header-meta {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}

.sacola-accordion-item .sa-header-price {
  font-size: 16px;
  font-weight: 900;
  color: #10b981;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Expanded Panel */
.sacola-accordion-item .sa-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sacola-accordion-item.sa-open .sa-panel {
  max-height: 500px;
}

.sacola-accordion-item .sa-panel-inner {
  padding: 0 18px 18px;
  display: flex;
  gap: 18px;
}

.sacola-accordion-item .sa-big-img {
  width: 160px;
  height: 130px;
  border-radius: 14px;
  overflow: hidden;
  background: #f1f5f9;
  flex-shrink: 0;
}

.sacola-accordion-item .sa-big-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sacola-accordion-item .sa-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.sacola-accordion-item .sa-detail-tags {
  font-size: 11px;
  color: #64748b;
  background: #f8fafc;
  border: 1px dashed #e2e8f0;
  border-radius: 8px;
  padding: 8px 12px;
  line-height: 1.45;
}

.sacola-accordion-item .sa-detail-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.sacola-accordion-item .sa-qty-stepper {
  display: inline-flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 10px;
  padding: 3px;
  gap: 2px;
}

.sacola-accordion-item .sa-qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #334155;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.sacola-accordion-item .sa-qty-btn:hover {
  background: #10b981;
  color: #ffffff;
  transform: scale(1.05);
}

.sacola-accordion-item .sa-qty-input {
  width: 32px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 800;
  font-size: 14px;
  color: #0f172a;
  -moz-appearance: textfield;
}

.sacola-accordion-item .sa-qty-input::-webkit-outer-spin-button,
.sacola-accordion-item .sa-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sacola-accordion-item .sa-remove-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.sacola-accordion-item .sa-remove-link:hover {
  color: #ef4444;
  background: #fef2f2;
}

/* Accordion Footer / Summary */
.sacola-accordion-footer {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  margin-top: 16px;
  border: 1.5px solid #eef2f6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.sacola-accordion-footer .sa-foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.sacola-accordion-footer .sa-foot-label {
  font-size: 16px;
  font-weight: 800;
  color: #334155;
}

.sacola-accordion-footer .sa-foot-value {
  font-size: 26px;
  font-weight: 900;
  color: #0f172a;
}

.sacola-accordion-footer .sa-foot-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sacola-accordion-footer .sa-foot-actions > div {
  flex: 1 1 calc(33.333% - 10px);
  min-width: 150px;
}

.sacola-accordion-footer .botao-acao {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sacola-accordion-footer .btn-acc-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.sacola-accordion-footer .btn-acc-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.sacola-accordion-footer .btn-acc-secondary {
  background: #f8fafc;
  color: #334155;
  border: 1.5px solid #e2e8f0;
}

.sacola-accordion-footer .btn-acc-secondary:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

/* ==========================================================================
   LAYOUT 6 — CHAT BUBBLE (CONVERSACIONAL / MENSAGEIRO)
   ========================================================================== */
.sacola-layout-chat {
  max-width: 680px;
  margin: 0 auto 40px auto;
  background: #f0f2f5;
  border-radius: 24px;
  padding: 20px;
  position: relative;
}

.sacola-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #075e54;
  border-radius: 16px;
  margin-bottom: 18px;
  color: #ffffff;
}

.sacola-chat-header .sch-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.sacola-chat-header .sch-info {
  flex: 1;
}

.sacola-chat-header .sch-name {
  font-size: 15px;
  font-weight: 700;
}

.sacola-chat-header .sch-status {
  font-size: 11px;
  color: #25d366;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sacola-chat-header .sch-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25d366;
  display: inline-block;
}

.sacola-chat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

/* Chat Bubble Item */
.sacola-chat-bubble {
  display: flex;
  justify-content: flex-end;
}

.sacola-chat-bubble .scb-content {
  max-width: 85%;
  background: #dcf8c6;
  border-radius: 16px 16px 4px 16px;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  position: relative;
}

.sacola-chat-bubble .scb-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 0 8px;
  border-color: transparent transparent transparent #dcf8c6;
}

.sacola-chat-bubble .scb-product-row {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.sacola-chat-bubble .scb-thumb {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.sacola-chat-bubble .scb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sacola-chat-bubble .scb-info {
  flex: 1;
  min-width: 0;
}

.sacola-chat-bubble .scb-name {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 3px;
  line-height: 1.3;
}

.sacola-chat-bubble .scb-tags {
  font-size: 10px;
  color: #475569;
  line-height: 1.35;
  margin-bottom: 6px;
  font-style: italic;
}

.sacola-chat-bubble .scb-price-line {
  font-size: 16px;
  font-weight: 900;
  color: #065f46;
}

.sacola-chat-bubble .scb-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.sacola-chat-bubble .scb-qty-inline {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 2px;
  gap: 2px;
}

.sacola-chat-bubble .scb-qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: none;
  background: #ffffff;
  color: #334155;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.sacola-chat-bubble .scb-qty-btn:hover {
  background: #25d366;
  color: #ffffff;
}

.sacola-chat-bubble .scb-qty-input {
  width: 24px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 800;
  font-size: 12px;
  color: #0f172a;
  -moz-appearance: textfield;
}

.sacola-chat-bubble .scb-qty-input::-webkit-outer-spin-button,
.sacola-chat-bubble .scb-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sacola-chat-bubble .scb-remove {
  color: #94a3b8;
  font-size: 13px;
  transition: color 0.2s ease;
  text-decoration: none;
}

.sacola-chat-bubble .scb-remove:hover {
  color: #ef4444;
}

.sacola-chat-bubble .scb-time {
  text-align: right;
  font-size: 10px;
  color: #6b7280;
  margin-top: 4px;
}

/* Chat Footer (checkout area) */
.sacola-chat-footer {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sacola-chat-footer .scf-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1.5px dashed #e2e8f0;
}

.sacola-chat-footer .scf-total-label {
  font-size: 14px;
  font-weight: 700;
  color: #475569;
}

.sacola-chat-footer .scf-total-value {
  font-size: 24px;
  font-weight: 900;
  color: #065f46;
}

.sacola-chat-footer .scf-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sacola-chat-footer .scf-actions > div {
  flex: 1 1 calc(33.333% - 10px);
  min-width: 140px;
}

.sacola-chat-footer .botao-acao {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sacola-chat-footer .btn-chat-primary {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.sacola-chat-footer .btn-chat-primary:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.sacola-chat-footer .btn-chat-secondary {
  background: #f8fafc;
  color: #334155;
  border: 1.5px solid #e2e8f0;
}

.sacola-chat-footer .btn-chat-secondary:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .sacola-story-card {
    flex: 0 0 240px;
  }
  .sacola-story-card .ss-img-wrap {
    height: 160px;
  }
  .sacola-stories-summary .ss-sum-actions > div {
    flex: 1 1 100%;
  }
  .sacola-accordion-item .sa-panel-inner {
    flex-direction: column;
  }
  .sacola-accordion-item .sa-big-img {
    width: 100%;
    height: 160px;
  }
  .sacola-accordion-footer .sa-foot-actions > div {
    flex: 1 1 100%;
  }
  .sacola-layout-chat {
    padding: 12px;
  }
  .sacola-chat-bubble .scb-content {
    max-width: 92%;
  }
  .sacola-chat-footer .scf-actions > div {
    flex: 1 1 100%;
  }
}

/* ==========================================================================
   HEADER LAYOUT 2: HERO APP CLEAN (DELIVERY PRO FLUTUANTE)
   ========================================================================== */
.layout-cabecalho-2 {
  background: #ffffff;
  margin-bottom: 8px;
  position: relative;
}
.layout-cabecalho-2 .lc2-cover-banner {
  height: 140px;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.layout-cabecalho-2 .lc2-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 100%);
}
.layout-cabecalho-2 .lc2-card-hero {
  margin: -48px 12px 8px 12px;
  position: relative;
  z-index: 5;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 14px 12px 14px;
  box-shadow: 0 10px 25px -4px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.85);
}
.layout-cabecalho-2 .lc2-profile-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.layout-cabecalho-2 .lc2-avatar-box {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  position: relative;
  flex-shrink: 0;
  background: #ffffff;
  padding: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}
.layout-cabecalho-2 .lc2-avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.layout-cabecalho-2 .lc2-status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2.5px solid #ffffff;
}
.layout-cabecalho-2 .lc2-status-dot.open {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.7);
  animation: lcPulse 2s infinite;
}
.layout-cabecalho-2 .lc2-status-dot.closed {
  background: #ef4444;
}
@keyframes lcPulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}
.layout-cabecalho-2 .lc2-info-box {
  flex: 1;
  min-width: 0;
}
.layout-cabecalho-2 .lc2-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 3px 0;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 5px;
}
.layout-cabecalho-2 .lc2-verified {
  color: #3b82f6;
  font-size: 15px;
}
.layout-cabecalho-2 .lc2-description {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.layout-cabecalho-2 .lc2-chips-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.layout-cabecalho-2 .lc2-chips-bar::-webkit-scrollbar {
  display: none;
}
.layout-cabecalho-2 .lc2-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  height: 30px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
  transition: all 0.15s ease;
  line-height: 1;
  box-sizing: border-box;
  margin: 0;
  vertical-align: middle;
  outline: none;
  cursor: pointer;
}
.layout-cabecalho-2 .lc2-chip:hover {
  background: #f1f5f9;
  color: #1e293b;
}
.layout-cabecalho-2 .lc2-chip.open {
  background: #ecfdf5;
  color: #059669;
  border-color: #a7f3d0;
  cursor: default;
}
.layout-cabecalho-2 .lc2-chip.closed {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fecaca;
  cursor: default;
}
.layout-cabecalho-2 .lc2-chip.frete {
  background: #eff6ff;
  color: #2563eb;
  border-color: #bfdbfe;
}
.layout-cabecalho-2 .lc2-chip.whatsapp {
  background: #f0fdf4;
  color: #16a34a;
  border-color: #bbf7d0;
}
.layout-cabecalho-2 .lc2-chip.pwa-btn {
  background: #f8fafc;
  color: #334155;
  border-color: #cbd5e1;
}

/* ==========================================================================
   HEADER LAYOUT 3: CINEMA DARK GLOW (WIDESCREEN IMERSIVO & LUXO)
   ========================================================================== */
.layout-cabecalho-3 {
  position: relative;
  background: #0b1120;
  overflow: hidden;
  padding: 22px 14px 18px 14px;
  border-bottom: 1px solid #1e293b;
  margin-bottom: 8px;
}
.layout-cabecalho-3 .lc3-cover-backdrop {
  position: absolute;
  inset: -15px;
  background-size: cover !important;
  background-position: center !important;
  opacity: 0.28;
  filter: blur(14px);
  transform: translateZ(0);
  z-index: 1;
}
.layout-cabecalho-3 .lc3-cover-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.45) 0%, rgba(11, 17, 32, 0.88) 65%, #0b1120 100%);
  z-index: 2;
}
.layout-cabecalho-3 .lc3-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.layout-cabecalho-3 .lc3-avatar-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #10b981, #06b6d4, #6366f1);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.45);
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.layout-cabecalho-3 .lc3-avatar-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0b1120;
  display: block;
}
.layout-cabecalho-3 .lc3-title {
  color: #ffffff;
  font-size: 21px;
  font-weight: 800;
  margin: 0 0 5px 0;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.layout-cabecalho-3 .lc3-description {
  color: #94a3b8;
  font-size: 13px;
  margin: 0 0 14px 0;
  max-width: 460px;
  line-height: 1.45;
}
.layout-cabecalho-3 .lc3-chips-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 100%;
}
.layout-cabecalho-3 .lc3-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 13px;
  height: 32px;
  border-radius: 12px;
  font-size: 11.5px;
  font-weight: 600;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  text-decoration: none;
  transition: all 0.18s ease;
  line-height: 1;
  box-sizing: border-box;
  margin: 0;
  vertical-align: middle;
  outline: none;
  cursor: pointer;
}
.layout-cabecalho-3 .lc3-chip:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: translateY(-1px);
}
.layout-cabecalho-3 .lc3-chip.open {
  background: rgba(16, 185, 129, 0.16);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.4);
  cursor: default;
}
.layout-cabecalho-3 .lc3-chip.open .lc3-dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: lcPulse 2s infinite;
}
.layout-cabecalho-3 .lc3-chip.closed {
  background: rgba(239, 68, 68, 0.16);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.4);
  cursor: default;
}
.layout-cabecalho-3 .lc3-chip.frete {
  background: rgba(56, 189, 248, 0.13);
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.35);
}
.layout-cabecalho-3 .lc3-chip.whatsapp {
  background: rgba(34, 197, 94, 0.13);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.35);
}
.layout-cabecalho-3 .lc3-chip.pwa-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  border-color: rgba(255, 255, 255, 0.16);
}

/* ==========================================================================
   MODAL POPUP GLOBAL: INSTRUÇÕES PWA iOS
   ========================================================================== */
.popup#instructionsPopup {
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(15, 23, 42, 0.75) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 999999 !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  box-sizing: border-box !important;
}
.popup#instructionsPopup .popup-content {
  background: #ffffff !important;
  color: #0f172a !important;
  border-radius: 20px !important;
  padding: 24px 22px 20px 22px !important;
  max-width: 400px !important;
  width: 100% !important;
  margin: 0 auto !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4) !important;
  text-align: left !important;
  position: relative !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  animation: popModalIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-sizing: border-box !important;
}
@keyframes popModalIn {
  0% { opacity: 0; transform: scale(0.92) translateY(12px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.popup#instructionsPopup .popup-content h2 {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 8px 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.popup#instructionsPopup .popup-content p {
  font-size: 13.5px !important;
  color: #64748b !important;
  margin: 0 0 16px 0 !important;
  line-height: 1.45 !important;
}
.popup#instructionsPopup .popup-content ol {
  padding-left: 20px !important;
  margin: 0 0 20px 0 !important;
  color: #334155 !important;
  font-size: 13.5px !important;
  line-height: 1.6 !important;
}
.popup#instructionsPopup .popup-content ol li {
  margin-bottom: 8px !important;
  color: #334155 !important;
}
.popup#instructionsPopup .popup-content ol li i {
  color: #0284c7 !important;
  margin-right: 4px !important;
}
.popup#instructionsPopup #closePopupButton {
  width: 100% !important;
  background: #0f172a !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: block !important;
  text-align: center !important;
  margin-top: 14px !important;
  outline: none !important;
}
.popup#instructionsPopup #closePopupButton:hover {
  background: #1e293b !important;
}


/* ========================================================
   LAYOUT 4: GLASS PRO (EFEITO VITRINE MODERNO)
   ======================================================== */
.layout-cabecalho-4 {
  background: #f8fafc;
  font-family: 'Inter', 'Roboto', sans-serif;
  position: relative;
  overflow: hidden;
  padding-bottom: 25px;
  border-bottom: 1px solid #e2e8f0;
}
.lc4-cover {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.lc4-glass-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, #f8fafc 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}
.lc4-content {
  position: relative;
  z-index: 3;
  padding-top: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lc4-avatar-wrapper {
  margin-bottom: -15px;
  z-index: 5;
}
.lc4-avatar-ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(45deg, #f59e0b, #ec4899, #8b5cf6);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  animation: pulse-ring 3s infinite alternate;
}
@keyframes pulse-ring {
  0% { transform: scale(1); box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2); }
  100% { transform: scale(1.02); box-shadow: 0 4px 25px rgba(236, 72, 153, 0.4); }
}
.lc4-avatar-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  background: #ffffff;
}
.lc4-info-card {
  width: 90%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  padding: 25px 15px 15px 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  margin-bottom: 20px;
}
.lc4-title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.lc4-title .check-badge {
  color: #3b82f6;
  font-size: 18px;
}
.lc4-description {
  margin: 8px 0 0 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.4;
}
.lc4-status-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}
.lc4-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.lc4-status.open {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.lc4-status.closed {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.lc4-status.min-order {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.pulse {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.lc4-actions-scroll {
  width: 100%;
  overflow-x: auto;
  padding: 0 15px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lc4-actions-scroll::-webkit-scrollbar {
  display: none;
}
.lc4-actions-wrapper {
  display: flex;
  gap: 10px;
  padding-bottom: 5px;
  width: max-content;
  margin: 0 auto;
}
.lc4-btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #ffffff;
  color: #334155;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.2s ease;
  height: 32px;
  line-height: normal;
}
.lc4-btn-action:hover {
  background: #f8fafc;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.lc4-btn-action.highlight {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: none;
}
.lc4-btn-action.pwa-btn {
  cursor: pointer;
  outline: none;
}
