
/* ============================================================
   RECOMENDAÇÕES — Cards padronizados e mobile-safe
   ============================================================ */

.recommendations {
  display: block !important;
  visibility: visible !important;
  /* evita qualquer vazamento lateral */
  overflow: hidden;
}

.recommendations .recommendations-title {
  margin: 18px 0 14px;
  font-weight: 700;
  font-size: 15px;
}

/* --- Grid base: 2 colunas no mobile, 4 no desktop --- */
.recommendations .recs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
  /* garante que nunca ultrapasse o container */
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .recommendations .recs-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px 16px;
  }
}

/* Carousel horizontal somente quando há muitos itens (mobile) */
@media (max-width: 991px) {
  .recommendations .recs-grid {
    padding-left: 4px;
    padding-right: 4px;
  }

  .recommendations .recs-grid.recs-grid--carousel {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding-bottom: 8px;
    /* scroll suave sem scrollbar visível */
    scrollbar-width: none;
  }

  .recommendations .recs-grid.recs-grid--carousel::-webkit-scrollbar {
    display: none;
  }

  .recommendations .recs-grid.recs-grid--carousel .recs-card {
    flex: 0 0 calc(47% - 5px);
    max-width: 200px;
    scroll-snap-align: start;
  }
}

/* --- Card: flex coluna, altura uniforme entre cards da mesma linha --- */
.recommendations .recs-card {
  display: flex;
  flex-direction: column;
  /* sem gap fixo: espaçamento controlado por padding/margin interno */
  text-decoration: none;
  color: inherit;
  /* borda sutil e raio */
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ebebeb;
  /* sombra leve */
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  /* transição hover */
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.recommendations .recs-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.11);
  transform: translateY(-2px);
}

/* --- Wrapper da imagem: proporção retrato 3/4, típica de produto --- */
.recommendations .recs-image-wrap {
  position: relative;
  width: 100%;
  /* 3:4 retrato → preenche o card inteiro sem espaço vazio */
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}

/* cover + top: preenche tudo, foco no topo onde fica o produto */
.recommendations img.recs-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.25s ease;
}

.recommendations .recs-card:hover .recs-image {
  transform: scale(1.04);
}

/* Badge de desconto */
.recommendations .recs-discount {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #e60073;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  padding: 5px 8px;
  border-radius: 999px;
  z-index: 1;
}

/* Ações sobrepostas (ícones) */
.recommendations .recs-actions {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: flex;
  gap: 6px;
  z-index: 1;
}

.recommendations .recs-action {
  position: relative;
  width: 34px;
  height: 30px;
  border: 1px solid #e9e9e9;
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.recommendations .recs-action i {
  font-size: 15px;
  color: #111;
}

.recommendations .recs-plus-badge {
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #5a2dff;
  color: #fff;
  font-size: 11px;
  line-height: 16px;
  text-align: center;
  font-weight: 700;
}

/* --- Info do card: flex coluna com flex:1 para preencher altura restante --- */
.recommendations .recs-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
  padding: 10px 10px 12px;
}

.recommendations .recs-brand {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
  /* trunca se muito longo */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Nome: 2 linhas com altura reservada para uniformidade */
.recommendations .recs-name {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
  /* clamp em 2 linhas — evita cartões de alturas diferentes */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* altura mínima = 2 linhas * line-height: garante alinhamento dos preços */
  min-height: calc(13px * 1.35 * 2);
  margin-bottom: 6px;
  /* nunca ultrapassa o card */
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Empurra o preço para o fundo do card */
.recommendations .recs-prices {
  margin-top: auto;
}

.recommendations .recs-old {
  font-size: 11px;
  color: #aaa;
  text-decoration: line-through;
  margin-right: 6px;
}

.recommendations .recs-price {
  font-size: 15px;
  font-weight: 800;
  color: #111;
}

#ad-placements {
  display: none !important;
}

button.dft.button.icon.fluid[form="add-to-cart-local"] {
  width: 92% !important;
}

.slider-zoom {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: none;
}

.slider-zoom .imgActive {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
}

.slider-zoom .zoom-close {
  display: flex !important;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  z-index: 10000;
}

.slider-zoom .zoom-close:active,
.slider-zoom .zoom-close:hover {
  background: rgba(255, 255, 255, 1);
}

.cart-page .container,
.login-page .container,
.register-page .container,
.checkout-page .container,
.success-page .container {
  padding-top: 18px;
  padding-bottom: 36px;
  /* padding lateral seguro no mobile */
  padding-left: 14px;
  padding-right: 14px;
  box-sizing: border-box;
  /* nunca ultrapassa a largura da tela */
  max-width: 100%;
}

body.cart-page,
.cart-page .l-wrapper {
  background: #f4f4f4;
  /* bloqueia qualquer vazamento horizontal */
  overflow-x: hidden;
  max-width: 100vw;
}

.cart-page * {
  box-sizing: border-box;
  /* qualquer imagem não ultrapassa o pai */
  max-width: 100%;
}

.cart-page .primary-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.cart-page .l-site-title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
}

.cart-page .l-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  grid-column: 3;
}

.cart-page .cart-preview {
  display: flex;
  align-items: center;
}

.cart-page .cart-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.cart-page .cart-preview-icon {
  display: inline-block;
  line-height: 1;
}

.auth-form .form-group,
.checkout-form .form-group {
  margin-bottom: 14px;
}

.auth-form label,
.checkout-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

.auth-form input,
.checkout-form input,
.checkout-form select {
  width: 100%;
  height: 44px;
  padding: 10px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background: #fff;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.cart-alert {
  background: #e7f7ef;
  border: 1px solid #bfead3;
  color: #1b7a4a;
  font-weight: 700;
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-alert-check {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #1b7a4a;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.cart-head-title {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-head-subtitle {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.cart-safe {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: #666;
  white-space: nowrap;
}

.cart-section {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
  /* garante que nada ultrapasse a borda */
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
}

.cart-section-title {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-section-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.cart-section-text {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.35;
}

.cart-cep {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.cart-cep input {
  height: 44px;
  padding: 10px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
}

.cart-cep-btn {
  height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: #33b3a6;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.cart-item2 {
  border-top: 1px solid #eee;
  padding-top: 12px;
}

.cart-item2:first-child {
  border-top: 0;
  padding-top: 0;
}

.cart-item2-seller {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.cart-item2-seller-name {
  font-weight: 900;
  font-size: 13px;
}

.cart-item2-remove button {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 1px solid #e6e6e6;
  background: #fff;
}

.cart-item2-body {
  display: grid;
  /* 80px fixo para imagem, 1fr para info — min-width:0 evita overflow */
  grid-template-columns: 84px 1fr;
  gap: 12px;
  min-width: 0;
}

.cart-item2-image {
  flex-shrink: 0;
}

.cart-item2-image img {
  width: 84px;
  height: 112px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* coluna de info: min-width:0 é obrigatório para conter texto longo em grid */
.cart-item2-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.cart-item2-name {
  font-weight: 800;
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 6px;
  /* quebra palavras longas e limita a 3 linhas */
  word-break: break-word;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item2-meta {
  font-size: 11px;
  color: #666;
  margin-bottom: 4px;
}

.cart-item2-actions {
  display: flex;
  align-items: center;
  /* wrap para não vazar no mobile quando selects + preço não cabem em 1 linha */
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.cart-item2-actions select {
  height: 34px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  padding: 0 8px;
  background: #fff;
  font-size: 12px;
  /* impede que o select estoure a linha */
  max-width: 100%;
  box-sizing: border-box;
}

.cart-item2-variant {
  /* largura flex adaptável */
  flex: 0 1 90px;
  min-width: 0;
}

.cart-item2-qty {
  flex: 0 1 90px;
  min-width: 0;
}

.cart-item2-price {
  /* empurra para o lado direito e não quebra o valor */
  margin-left: auto;
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

.cart-resume-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #444;
  margin-bottom: 10px;
}

.cart-resume-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.cart-resume-installments {
  margin-top: 6px;
  font-size: 12px;
  color: #666;
}

.cart-footer-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px;
}

.cart-item-image img {
  width: 92px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.cart-item-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}

.cart-item-price {
  font-weight: 700;
  margin-bottom: 10px;
}

.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #e6e6e6;
  background: #fff;
}

.cart-item-remove {
  border: 0;
  background: transparent;
  color: #666;
  text-decoration: underline;
  padding: 0;
}

.cart-summary {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 12px 0 0;
  z-index: 10;
  box-shadow: 0 -8px 18px rgba(0, 0, 0, 0.06);
}

.recs-carousel {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Carrossel de recomendações no carrinho */
#cart-recommendations .recs-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

#cart-recommendations .recs-grid::-webkit-scrollbar {
  display: none;
}

#cart-recommendations .recs-card {
  flex: 0 0 150px;
  max-width: 150px;
  scroll-snap-align: start;
}

/* Imagem do carrinho: mesma proporção retrato 3/4 */
#cart-recommendations .recs-image-wrap {
  aspect-ratio: 3 / 4;
  background: #f5f5f5;
}

#cart-recommendations .recs-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

#cart-recommendations .recs-buy {
  margin-top: 10px;
  height: 34px;
  border-radius: 6px;
  background: #33b3a6;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-preview-item-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  line-height: 18px;
  font-size: 11px;
  overflow: hidden;
  white-space: nowrap;
}

.cart-total-row,
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 992px) {
  .checkout-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.checkout-summary {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0 12px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  font-size: 13px;
}

.success-text {
  margin: 12px 0 18px;
}

.checkout-page .container {
  padding-top: 0;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100%;
}

body.checkout-page,
.checkout-page .l-wrapper {
  background: #f4f4f4;
  overflow-x: hidden;
}

.checkout-page * {
  box-sizing: border-box;
}

.checkout-page img {
  max-width: 100%;
}

.checkout-page .header,
.checkout-page .header-small,
.checkout-page .primary-header,
.checkout-page .secondary-header {
  display: none !important;
}

.checkout-steps {
  display: none;
}

.checkout-safe {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 46px;
  background: #fff;
  border-bottom: 1px solid #eee;
  margin: 0 -15px;
  padding: 0 16px;
}

.checkout-safe-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.checkout-safe-text {
  font-size: 11px;
  font-weight: 800;
  color: #666;
  letter-spacing: 0.04em;
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}

.checkout-safe-top {
  display: block;
}

.checkout-safe-bottom {
  display: block;
}

.checkout-safe-icon-wrap svg {
  width: 16px;
  height: 16px;
  display: block;
  opacity: 0.7;
}

.checkout-steps-new {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 16px 14px;
  background: #fff;
  border-bottom: 1px solid #eee;
  margin: 0 -15px 14px;
}

.checkout-steps-new::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 25px;
  height: 2px;
  background: #d9d9d9;
}

.checkout-step-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 11px;
  color: #b3b3b3;
  flex: 1 1 0;
}

.checkout-step-new:first-child {
  align-items: flex-start;
  text-align: left;
}

.checkout-step-new:nth-child(2) {
  align-items: center;
  text-align: center;
}

.checkout-step-new:last-child {
  align-items: flex-end;
  text-align: right;
}

.checkout-steps-new .checkout-step-label {
  font-size: 11px;
  line-height: 1.1;
  max-width: 120px;
  white-space: normal;
  word-break: break-word;
}

.checkout-step-new.is-active {
  color: #111;
  font-weight: 800;
}

.checkout-dot {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid #bfbfbf;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.checkout-step-new.is-active .checkout-dot {
  border-color: #111;
}

.checkout-step-new.is-done .checkout-dot {
  border-color: #111;
}

.checkout-dot img {
  width: 11px;
  height: 11px;
  display: block;
}

.checkout-dot svg {
  width: 11px;
  height: 11px;
  display: block;
}

.checkout-steps-legacy {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  margin: 0 -15px 14px;
}

.checkout-step-legacy {
  flex: 1 1 0;
  padding: 10px 6px;
  text-align: center;
  font-size: 11px;
  color: #8a8a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-bottom: 2px solid transparent;
}

.checkout-step-legacy.is-active {
  color: #111;
  font-weight: 700;
  border-bottom-color: #e60073;
}

.checkout-step-icon-legacy {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid #d9d9d9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #111;
  background: #fff;
}

.checkout-step-legacy.is-done .checkout-step-icon-legacy {
  border-color: #111;
}

.checkout-step-icon-legacy img {
  width: 12px;
  height: 12px;
  display: block;
}

.checkout-section {
  background: #fff;
  border: 0;
  border-radius: 0;
  padding: 18px 16px;
  margin: 0 -15px;
  border-bottom: 1px solid #eee;
}

.checkout-section-title {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.checkout-subsection-title {
  font-size: 11px;
  font-weight: 800;
  color: #444;
  margin-bottom: 10px;
}

.checkout-form-new .form-group {
  margin-bottom: 14px;
}

.checkout-form-new label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
}

.checkout-form-new input,
.checkout-form-new select {
  width: 100%;
  height: 42px;
  padding: 10px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  background: #fff;
}

.checkout-form-new input::placeholder {
  color: #bdbdbd;
}

.checkout-req {
  color: #d0021b;
  font-weight: 900;
}

.checkout-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 520px) {
  .checkout-grid-2 {
    grid-template-columns: 1fr;
  }
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 992px) {
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 18px;
    align-items: start;
  }
}

.checkout-aside {
  min-width: 0;
}

@media (min-width: 992px) {
  .checkout-aside .checkout-summary-card {
    position: sticky;
    top: 14px;
  }
}

.checkout-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.checkout-edit {
  border: 0;
  background: transparent;
  color: #111;
  text-decoration: underline;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
}

.checkout-col-2 {
  grid-column: 1 / -1;
}

.checkout-address-grid {
  margin-top: 6px;
}

.checkout-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #111;
  margin: 2px 0 10px;
}

.checkout-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #61d6cd;
}

.input-with-icon {
  position: relative;
}

.input-with-icon input {
  padding-right: 44px;
}

.input-icon-img {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0.8;
  pointer-events: none;
}

.checkout-cep-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
}

.checkout-cep-help {
  border: 0;
  background: transparent;
  color: #111;
  text-decoration: underline;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.checkout-save {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 4px;
  background: #61d6cd;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 14px;
}

.checkout-info {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f9fbff;
  margin: 10px 0 12px;
  color: #333;
  font-size: 12px;
}

.checkout-info-icon {
  width: 16px;
  height: 16px;
  display: block;
  margin-top: 1px;
}

.checkout-muted {
  margin: 0 0 10px;
  color: #666;
  font-size: 12px;
}

.delivery-option {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.delivery-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}

.delivery-left > div {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
}

.delivery-badge {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #e6e6e6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #111;
  background: #fff;
}

.delivery-badge-icon {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.delivery-badge-text {
  line-height: 1;
}

.delivery-title {
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.delivery-subtitle {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.delivery-price {
  font-weight: 800;
  margin-left: auto;
  white-space: nowrap;
}

.payment-option {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
}

.payment-option-head {
  display: flex;
  align-items: center;
  gap: 2px;
  width: 100%;
}

.payment-option-head input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #111;
  margin-left: 2px;
  flex: 0 0 auto;
}

.payment-option-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.payment-option-label--pix {
  flex: 1 1 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  min-width: 0;
}

.payment-option-label--pix svg {
  width: 30px;
  height: 20px;
  display: block;
}

.pix-subTitle {
  font-weight: 800;
  font-size: 13px;
  text-transform: capitalize;
}

.tag {
  list-style: none;
  display: inline-flex;
  margin: 0;
  padding: 0;
  margin-left: auto !important;
}

.tag li {
  display: inline-flex;
}

.tag li span {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f2f2f2;
  color: #111;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.payment-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.payment-left input[type="radio"] {
  accent-color: #e60073;
}

.payment-icon {
  width: 26px;
  height: 26px;
  display: block;
}

.payment-title {
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
}

.payment-hint {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
}

.payment-pill {
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2f2f2;
  color: #111;
  white-space: nowrap;
}

.payment-brands {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.payment-brands .brand {
  height: 18px;
  width: auto;
  display: block;
}

.payment-details {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}

.pix-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pix-benefits li {
  padding: 6px 0;
}

.pix-benefits p {
  margin: 0;
  font-size: 12px;
  color: #444;
  line-height: 1.35;
}

.payment-details-title {
  font-weight: 800;
  margin-bottom: 4px;
}

.payment-details-text {
  color: #666;
  font-size: 12px;
}

.checkout-products {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.checkout-product {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 10px;
  align-items: center;
}

.checkout-product-image img {
  width: 56px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  border: 1px solid #eee;
}

.checkout-product-name {
  font-weight: 800;
  font-size: 12px;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.checkout-product-meta {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.checkout-product-price {
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
}

.checkout-coupon {
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
  margin-top: 6px;
}

.checkout-coupon-title {
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.checkout-coupon-icon {
  width: 16px;
  height: 16px;
  display: block;
}

.checkout-coupon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.checkout-coupon-row input {
  height: 44px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  padding: 10px 12px;
}

.coupon-btn {
  height: 44px;
  padding: 0 14px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background: #fff;
  font-weight: 800;
}

.checkout-totals {
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
  margin-top: 12px;
}

.checkout-shipping-note {
  margin-top: 6px;
  color: #d0021b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 13px;
}

.totals-total {
  font-weight: 900;
  font-size: 14px;
}

.checkout-security {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 12px;
  margin-top: 10px;
}

.security-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.checkout-bottom {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 12px 0 4px;
  border-top: 1px solid #eee;
}

.checkout-ebit {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.checkout-ebit-img {
  width: 96px;
  height: auto;
  display: block;
}

.checkout-submit--desktop {
  display: block;
}

@media (min-width: 992px) {
  .checkout-bottom {
    display: none;
  }

  .checkout-submit--desktop {
    display: block;
  }
}

.checkout-info-sections {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 12px;
}

.checkout-info-section {
  border-top: 1px solid #f0f0f0;
  padding-top: 10px;
  margin-top: 10px;
}

.checkout-info-section:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.checkout-info-section summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.02em;
  list-style: none;
}

.checkout-info-section summary::-webkit-details-marker {
  display: none;
}

.checkout-info-section-body {
  margin-top: 8px;
  color: #444;
  font-size: 12px;
  line-height: 1.4;
}

.checkout-info-section-body p {
  margin: 0 0 10px;
}

body[data-route="catalog/detail"] .wishlist-share-block {
  float: none;
  width: 100%;
  max-width: 520px;
  margin: 5px auto 15px;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

body[data-route="catalog/detail"] button[form="add-to-cart-local"].dft.button {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.color-swatch {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  display: inline-block;
  vertical-align: middle;
}

.radio-button-color-block .radio-button.size-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.radio-button-color-block .color-swatch {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(0, 0, 0, 0.22);
}

.radio-button-color-block.selected .color-swatch {
  border: 2px solid #111;
}

html.dft-sizeguide-open {
  overflow: hidden;
}

.dft-sizeguide-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

.dft-sizeguide-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #111;
  text-decoration: underline;
}

.dft-sizeguide-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.dft-sizeguide-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.dft-sizeguide-modal[aria-hidden="false"] {
  display: block;
}

.dft-sizeguide-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.dft-sizeguide-dialog {
  position: relative;
  width: min(92vw, 520px);
  max-height: 80vh;
  overflow: auto;
  margin: 10vh auto 0;
  background: #fff;
  border-radius: 12px;
  padding: 16px 16px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dft-sizeguide-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: none;
  background: #f2f2f2;
  border-radius: 999px;
  font-size: 20px;
  line-height: 34px;
}

.dft-sizeguide-title {
  font-weight: 700;
  font-size: 16px;
  margin: 0 44px 12px 0;
}

.dft-sizeguide-body {
  display: grid;
  gap: 14px;
}

.dft-sizeguide-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #eee;
}

.dft-sizeguide-table-wrap {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: auto;
}

.dft-sizeguide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.dft-sizeguide-table th,
.dft-sizeguide-table td {
  padding: 10px 10px;
  border-bottom: 1px solid #eee;
  text-align: left;
  white-space: nowrap;
}

.dft-sizeguide-table th {
  background: #fafafa;
  font-weight: 700;
  position: sticky;
  top: 0;
}

#php-mobile-nav .php-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9997;
  display: none;
}

#php-mobile-nav .php-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 86vw;
  max-width: 320px;
  background: #fff;
  z-index: 9998;
  transform: translateX(-105%);
  transition: transform 180ms ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#php-mobile-nav .php-mobile-header {
  padding: 14px 16px;
  font-weight: 800;
  border-bottom: 1px solid #eee;
}

#php-mobile-nav .php-mobile-section {
  padding: 10px 16px;
}

#php-mobile-nav .php-mobile-greeting {
  font-weight: 700;
  margin-bottom: 8px;
}

#php-mobile-nav .php-mobile-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

#php-mobile-nav .php-mobile-title {
  margin-top: 6px;
  margin-bottom: 8px;
  font-weight: 800;
}

#php-mobile-nav .php-mobile-sublist {
  display: grid;
  gap: 8px;
}

#php-mobile-nav .php-mobile-sublink {
  display: block;
  color: #111;
  text-decoration: none;
  padding: 6px 0;
}

#php-mobile-nav .php-mobile-muted {
  color: #888;
  font-size: 12px;
}

#push-menu-active:checked ~ #wrapper #php-mobile-nav .php-mobile-overlay {
  display: block;
}

#push-menu-active:checked ~ #wrapper #php-mobile-nav .php-mobile-drawer {
  transform: translateX(0);
}
