* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #ffffff;
  color: #111111;
  overflow-x: hidden;
  padding-bottom: 76px;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input {
  font-family: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.product-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.product-topbar {
  height: 26px;
  display: grid;
  place-items: center;
  background: #000000;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

.product-header {
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.product-header-inner {
  height: 76px;
  display: grid;
  grid-template-columns: 160px 1fr 350px;
  align-items: center;
  gap: 28px;
}

.product-logo img {
  width: 112px;
  height: auto;
}

.product-search {
  height: 40px;
  display: flex;
  align-items: center;
  background: #f4f4f4;
  border: 1px solid #eeeeee;
  border-radius: 6px;
  overflow: hidden;
}

.product-search input {
  flex: 1;
  height: 100%;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0 15px;
  color: #222222;
  font-size: 13px;
}

.product-search button {
  width: 48px;
  height: 100%;
  border: 0;
  background: transparent;
  color: #777777;
  font-size: 18px;
}

.product-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.header-action-text {
  line-height: 1.05;
}

.header-action-text strong {
  display: block;
  color: #111111;
  font-size: 11px;
  font-weight: 900;
}

.header-action-text span {
  color: #666666;
  font-size: 11px;
  font-weight: 600;
}

.product-cart {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
}

.product-cart img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.product-cart span {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #0057b8;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
}

.product-nav {
  border-top: 1px solid #f2f2f2;
}

.product-nav-inner {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.product-nav-inner a {
  color: #191919;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-main {
  padding-top: 28px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #777777;
  font-size: 11px;
}

.breadcrumb strong {
  color: #222222;
}

.product-layout {
  display: grid;
  grid-template-columns: 82px minmax(420px, 1fr) 470px;
  gap: 32px;
  align-items: start;
}

.product-thumbs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-thumb {
  width: 72px;
  height: 88px;
  display: grid;
  place-items: center;
  padding: 6px;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  background: #ffffff;
  transition: 0.2s ease;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumb.active,
.product-thumb:hover {
  border-color: #16a34a;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.12);
}

.product-gallery {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: start center;
  background: #ffffff;
}

.product-gallery img {
  width: min(540px, 100%);
  height: 510px;
  object-fit: contain;
}

.product-discount {
  position: absolute;
  top: 0;
  right: 13%;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

.gallery-arrow {
  position: absolute;
  top: 46%;
  z-index: 4;
  width: 34px;
  height: 48px;
  border: 0;
  background: rgba(0, 0, 0, 0.06);
  color: #111111;
  font-size: 34px;
  line-height: 1;
  border-radius: 4px;
}

.gallery-arrow-left {
  left: 0;
}

.gallery-arrow-right {
  right: 0;
}

.product-category {
  display: block;
  margin-bottom: 8px;
  color: #0a8f3c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-info h1 {
  margin-bottom: 12px;
  color: #111111;
  font-size: 25px;
  line-height: 1.18;
  font-weight: 900;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.product-rating span {
  color: #ffb600;
  font-size: 14px;
  letter-spacing: 2px;
}

.product-rating a {
  color: #555555;
  font-size: 12px;
  text-decoration: underline;
}

.product-mini-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 18px;
}

.product-mini-info div {
  padding: 10px;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  background: #fafafa;
}

.product-mini-info strong {
  display: block;
  margin-bottom: 3px;
  color: #777777;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-mini-info span {
  color: #111111;
  font-size: 12px;
  font-weight: 900;
}

.size-block {
  margin-bottom: 18px;
}

.size-block p {
  margin-bottom: 10px;
  color: #222222;
  font-size: 13px;
  font-weight: 800;
}

.sizes {
  display: flex;
  gap: 9px;
}

.size-button {
  width: 44px;
  height: 36px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  background: #ffffff;
  color: #222222;
  font-size: 12px;
  font-weight: 900;
}

.size-button.active,
.size-button:hover {
  border-color: #22a9e8;
  background: #22a9e8;
  color: #ffffff;
}

.custom-fields {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.custom-fields label {
  display: grid;
  grid-template-columns: 70px 1fr 72px;
  align-items: center;
  gap: 8px;
}

.custom-fields span,
.custom-fields small {
  color: #333333;
  font-size: 11px;
  font-weight: 800;
}

.custom-fields input {
  height: 38px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  outline: none;
  padding: 0 12px;
  color: #222222;
  font-size: 12px;
}

.price-box {
  margin-bottom: 18px;
}

.old-price {
  display: block;
  margin-bottom: 3px;
  color: #777777;
  font-size: 13px;
  text-decoration: line-through;
}

.price-box strong {
  display: block;
  margin-bottom: 6px;
  color: #111111;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.price-box p {
  color: #222222;
  font-size: 14px;
  font-weight: 800;
}

.price-box small {
  color: #555555;
  font-size: 12px;
}

.buy-row {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.qty-control {
  height: 45px;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  overflow: hidden;
  border: 1px solid #dddddd;
  border-radius: 3px;
}

.qty-control button {
  border: 0;
  background: #f7f7f7;
  color: #111111;
  font-size: 18px;
  font-weight: 900;
}

.qty-control input {
  border: 0;
  outline: none;
  text-align: center;
  color: #111111;
  font-size: 13px;
  font-weight: 900;
}

.buy-button {
  height: 45px;
  border: 0;
  border-radius: 3px;
  background: #18a84f;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.buy-button:hover {
  background: #0e8c3f;
}

.whatsapp-button {
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid #18a84f;
  border-radius: 3px;
  color: #18a84f;
  font-size: 12px;
  font-weight: 800;
}

.shipping-area {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.shipping-card {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 15px;
  align-items: center;
}

.shipping-card strong {
  display: block;
  color: #222222;
  font-size: 13px;
  font-weight: 900;
}

.shipping-card span {
  display: block;
  margin-top: 3px;
  color: #666666;
  font-size: 11px;
}

.cep-form {
  display: grid;
  grid-template-columns: 1fr 78px;
  gap: 8px;
}

.cep-form input {
  height: 38px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  outline: none;
  padding: 0 10px;
  font-size: 11px;
}

.cep-form button {
  height: 38px;
  border: 1px solid #111111;
  border-radius: 3px;
  background: #ffffff;
  color: #111111;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-details {
  margin-top: 56px;
}

.tabs {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 24px;
}

.tab-button {
  padding: 14px 22px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #222222;
  font-size: 12px;
  font-weight: 900;
}

.tab-button.active {
  border-color: #111111;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.description-content {
  color: #222222;
  font-size: 14px;
  line-height: 1.65;
}

.description-content h2 {
  margin-bottom: 14px;
  color: #111111;
  font-size: 20px;
  font-weight: 900;
}

.description-content h3 {
  margin: 24px 0 8px;
  color: #111111;
  font-size: 15px;
  font-weight: 900;
}

.description-content p {
  margin-bottom: 14px;
}

.description-content ul {
  padding-left: 18px;
}

.description-content li {
  margin-bottom: 5px;
}

.size-table-box h2 {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 900;
}

.size-table-box table {
  width: 100%;
  border-collapse: collapse;
}

.size-table-box th,
.size-table-box td {
  border: 1px solid #cccccc;
  padding: 11px;
  text-align: center;
  font-size: 13px;
}

.size-table-box th {
  background: #f2f2f2;
  font-weight: 900;
}

.related-products {
  margin-top: 72px;
  text-align: center;
}

.related-products h2 {
  margin-bottom: 30px;
  color: #111111;
  font-size: 22px;
  font-weight: 900;
}

.related-products h2::after {
  content: "";
  width: 44px;
  height: 3px;
  display: block;
  margin: 10px auto 0;
  background: #111111;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.related-card {
  position: relative;
  padding: 14px;
  border-radius: 8px;
  text-align: center;
  transition: 0.2s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.related-card-badge {
  position: absolute;
  top: 10px;
  right: 18px;
  z-index: 2;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
}

.related-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 12px;
}

.related-card h3 {
  min-height: 42px;
  margin-bottom: 8px;
  color: #222222;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
}

.related-old {
  display: block;
  color: #777777;
  font-size: 11px;
  text-decoration: line-through;
}

.related-card p {
  margin-bottom: 9px;
  color: #111111;
  font-size: 17px;
  font-weight: 900;
}

.related-buy {
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #18a84f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.product-footer {
  margin-top: 76px;
  padding-top: 46px;
  background: #030303;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 42px;
}

.footer-logo {
  width: 115px;
  margin-bottom: 16px;
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 900;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.6;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
}

.footer-copy {
  margin-top: 36px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  text-align: center;
}

.sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 220px;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
}

.sticky-product {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sticky-product img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.sticky-product strong {
  display: block;
  color: #222222;
  font-size: 12px;
  font-weight: 900;
}

.sticky-product span {
  color: #111111;
  font-size: 15px;
  font-weight: 900;
}

.sticky-buy button {
  width: 230px;
  height: 42px;
  border: 0;
  border-radius: 4px;
  background: #18a84f;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .product-header-inner {
    grid-template-columns: 110px 1fr;
  }

  .product-header-actions {
    display: none;
  }

  .product-nav {
    overflow-x: auto;
  }

  .product-nav-inner {
    width: max-content;
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-thumbs {
    order: 2;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .product-gallery {
    order: 1;
    min-height: auto;
  }

  .product-gallery img {
    height: 390px;
  }

  .product-info {
    order: 3;
  }

  .related-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shipping-card {
    grid-template-columns: 1fr;
  }

  .sticky-buy {
    gap: 30px;
    justify-content: space-between;
    padding: 0 18px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 88px;
  }

  .product-container {
    width: min(100% - 24px, 1280px);
  }

  .product-header-inner {
    height: auto;
    padding: 14px 0;
    grid-template-columns: 1fr;
  }

  .product-logo img {
    margin: 0 auto;
  }

  .product-info h1 {
    font-size: 21px;
  }

  .product-mini-info,
  .custom-fields label,
  .buy-row,
  .cep-form {
    grid-template-columns: 1fr;
  }

  .tabs {
    overflow-x: auto;
  }

  .tab-button {
    white-space: nowrap;
  }

  .related-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sticky-buy {
    height: 82px;
  }

  .sticky-product {
    max-width: 190px;
  }

  .sticky-buy button {
    width: 140px;
  }
}


/* =========================================================
   PRODUTO.HTML — AJUSTE MOBILE PREMIUM
   Cole no final do css/style-produto.css
========================================================= */

@media (max-width: 768px) {
  body {
    padding-bottom: 92px;
    background: #ffffff;
  }

  .product-container {
    width: min(100% - 24px, 1280px);
  }

  /* Topbar */
  .product-topbar {
    height: 24px;
    font-size: 9px;
    letter-spacing: 0.2px;
  }

  /* Header mobile */
  .product-header-inner {
    height: auto;
    padding: 12px 0 10px;
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    gap: 10px;
    align-items: center;
  }

  .product-logo {
    justify-self: center;
  }

  .product-logo img {
    width: 104px;
    margin: 0 auto;
  }

  .product-search {
    grid-column: 1 / -1;
    order: 3;
    height: 38px;
    margin-top: 8px;
    border-radius: 999px;
    background: #f5f5f5;
  }

  .product-search input {
    font-size: 12px;
    padding-left: 16px;
  }

  .product-search button {
    font-size: 16px;
  }

  .product-header-actions {
    display: flex;
    justify-content: flex-end;
  }

  .header-action-text {
    display: none;
  }

  .product-cart {
    width: 36px;
    height: 36px;
  }

  .product-cart img {
    width: 25px;
    height: 25px;
  }

  .product-cart span {
    top: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    font-size: 9px;
  }

  /* Menu horizontal */
  .product-nav {
    overflow-x: auto;
    border-top: 1px solid #f0f0f0;
  }

  .product-nav::-webkit-scrollbar {
    display: none;
  }

  .product-nav-inner {
    width: max-content;
    height: 40px;
    gap: 22px;
    padding: 0 12px;
  }

  .product-nav-inner a {
    font-size: 10px;
    white-space: nowrap;
  }

  /* Área principal */
  .product-main {
    padding-top: 14px;
  }

  .breadcrumb {
    margin-bottom: 12px;
    font-size: 10px;
    gap: 6px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .product-layout {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* Galeria */
  .product-gallery {
    order: 1;
    min-height: auto;
    width: 100%;
    padding: 10px 0 4px;
    border-radius: 16px;
    background: #ffffff;
  }

  .product-gallery img {
    width: 100%;
    max-width: 330px;
    height: 330px;
    object-fit: contain;
    margin: 0 auto;
  }

  .product-discount {
    top: 8px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 10px;
  }

  .gallery-arrow {
    top: 47%;
    width: 30px;
    height: 42px;
    font-size: 28px;
    background: rgba(0, 0, 0, 0.05);
  }

  .gallery-arrow-left {
    left: 0;
  }

  .gallery-arrow-right {
    right: 0;
  }

  /* Thumbnails abaixo da imagem */
  .product-thumbs {
    order: 2;
    display: flex;
    flex-direction: row;
    gap: 9px;
    overflow-x: auto;
    padding: 2px 0 8px;
  }

  .product-thumbs::-webkit-scrollbar {
    display: none;
  }

  .product-thumb {
    width: 58px;
    height: 68px;
    flex: 0 0 58px;
    padding: 5px;
    border-radius: 8px;
  }

  /* Card das informações */
  .product-info {
    order: 3;
    padding: 16px 14px 18px;
    border: 1px solid #eeeeee;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
  }

  .product-category {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .product-info h1 {
    font-size: 18px;
    line-height: 1.22;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
  }

  .product-rating {
    margin-bottom: 14px;
  }

  .product-rating span {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .product-rating a {
    font-size: 11px;
  }

  .product-mini-info {
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-bottom: 15px;
  }

  .product-mini-info div {
    padding: 8px 6px;
    border-radius: 8px;
  }

  .product-mini-info strong {
    font-size: 8px;
  }

  .product-mini-info span {
    font-size: 10px;
  }

  /* Tamanhos */
  .size-block {
    margin-bottom: 16px;
  }

  .size-block p {
    font-size: 12px;
    margin-bottom: 9px;
  }

  .sizes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .size-button {
    width: 100%;
    height: 38px;
    border-radius: 8px;
    font-size: 12px;
  }

  /* Personalização */
  .custom-fields {
    gap: 9px;
    margin-bottom: 16px;
  }

  .custom-fields label {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .custom-fields span {
    font-size: 11px;
  }

  .custom-fields input {
    height: 42px;
    border-radius: 9px;
    font-size: 12px;
  }

  .custom-fields small {
    font-size: 10px;
  }

  /* Preços */
  .price-box {
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8f8f8, #ffffff);
    border: 1px solid #eeeeee;
  }

  .old-price {
    font-size: 12px;
  }

  .price-box strong {
    font-size: 30px;
    margin-bottom: 5px;
  }

  .price-box p {
    font-size: 13px;
  }

  .price-box small {
    font-size: 11px;
  }

  /* Comprar */
  .buy-row {
    grid-template-columns: 96px 1fr;
    gap: 8px;
    margin-bottom: 9px;
  }

  .qty-control {
    height: 46px;
    border-radius: 10px;
  }

  .buy-button {
    height: 46px;
    border-radius: 10px;
    font-size: 12px;
  }

  .whatsapp-button {
    height: 42px;
    border-radius: 10px;
    font-size: 12px;
  }

  /* Frete */
  .shipping-area {
    gap: 10px;
    margin-top: 14px;
  }

  .shipping-card {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #eeeeee;
    background: #fbfbfb;
  }

  .shipping-card strong {
    font-size: 12px;
  }

  .shipping-card span {
    font-size: 10px;
  }

  .cep-form {
    grid-template-columns: 1fr 82px;
    gap: 7px;
  }

  .cep-form input {
    height: 38px;
    border-radius: 8px;
  }

  .cep-form button {
    height: 38px;
    border-radius: 8px;
    font-size: 9px;
  }

  /* Abas viram cards mais bonitos */
  .product-details {
    margin-top: 22px;
  }

  .tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    border-bottom: 0;
    margin-bottom: 14px;
  }

  .tab-button {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    background: #ffffff;
    text-align: left;
    font-size: 12px;
    position: relative;
  }

  .tab-button::after {
    content: "+";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 900;
  }

  .tab-button.active {
    border-color: #111111;
    background: #f8f8f8;
  }

  .tab-button.active::after {
    content: "−";
  }

  .tab-content {
    padding: 14px;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    background: #ffffff;
  }

  .description-content {
    font-size: 12px;
    line-height: 1.62;
  }

  .description-content h2 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .description-content h3 {
    font-size: 13px;
    margin: 18px 0 7px;
  }

  .description-content p {
    margin-bottom: 11px;
  }

  .description-content ul {
    padding-left: 16px;
  }

  .size-table-box h2 {
    font-size: 17px;
  }

  .size-table-box table {
    font-size: 12px;
  }

  .size-table-box th,
  .size-table-box td {
    padding: 9px 6px;
    font-size: 11px;
  }

  /* Produtos relacionados */
  .related-products {
    margin-top: 34px;
  }

  .related-products h2 {
    font-size: 19px;
    margin-bottom: 22px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .related-card {
    padding: 10px 8px;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    background: #ffffff;
  }

  .related-card-badge {
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    font-size: 8px;
  }

  .related-card img {
    height: 135px;
    margin-bottom: 8px;
  }

  .related-card h3 {
    min-height: 42px;
    font-size: 10px;
    line-height: 1.25;
    margin-bottom: 6px;
  }

  .related-old {
    font-size: 9px;
  }

  .related-card p {
    font-size: 13px;
    margin-bottom: 7px;
  }

  .related-buy {
    height: 32px;
    border-radius: 8px;
    font-size: 10px;
  }

  /* Footer */
  .product-footer {
    margin-top: 42px;
    padding-top: 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-logo {
    width: 110px;
    margin: 0 auto 14px;
  }

  .footer-grid h3 {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .footer-grid p,
  .footer-grid a {
    font-size: 11px;
  }

  .footer-copy {
    margin-top: 26px;
    font-size: 10px;
    line-height: 1.45;
    padding: 14px 18px;
  }

  /* Barra fixa de compra */
  .sticky-buy {
    height: 78px;
    padding: 8px 12px;
    gap: 10px;
    justify-content: space-between;
  }

  .sticky-product {
    min-width: 0;
    gap: 9px;
  }

  .sticky-product img {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .sticky-product div {
    min-width: 0;
  }

  .sticky-product strong {
    max-width: 160px;
    font-size: 10px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sticky-product span {
    font-size: 13px;
  }

  .sticky-buy button {
    width: 118px;
    height: 42px;
    border-radius: 10px;
    font-size: 11px;
  }
}

.mobile-menu-trigger {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-trigger {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .mobile-menu-trigger span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #111111;
    display: block;
  }
}


body.cart-open {
  overflow: hidden;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  width: min(420px, 100%);
  height: 100vh;
  background: #ffffff;
  box-shadow: -18px 0 50px rgba(0, 0, 0, 0.18);
  transform: translateX(105%);
  transition: 0.28s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  transform: translateX(0);
}


/* =========================================================
   CARRINHO MOBILE - ESTILO DO PRINT
========================================================= */

.cart-header-spacer {
  width: 72px;
  flex: 0 0 72px;
}

.cart-close-top {
  width: 72px;
  flex: 0 0 72px;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #111111;
  padding: 0;
}

.cart-close-top span {
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
}

.cart-close-top strong {
  font-size: 14px;
  font-weight: 500;
}

.cart-drawer-header h3 {
  flex: 1;
  text-align: center;
  color: #111111;
  font-size: 15px;
  font-weight: 800;
}

/* estrutura nova do item */
.cart-item {
  position: relative;
}

.cart-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.cart-item-badge {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.cart-remove-icon {
  position: absolute;
  right: 0;
  top: 44px;
  width: 34px;
  height: 34px;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  background: #fafafa;
  color: #ff3a3a;
  font-size: 22px;
  line-height: 1;
}

.cart-summary-total {
  display: block !important;
  margin-bottom: 16px;
}

.cart-summary-total span {
  display: block;
  margin-bottom: 4px;
  color: #222222;
  font-size: 14px;
  font-weight: 500;
}

.cart-summary-total strong {
  display: block;
  color: #17325c;
  font-size: 18px;
  font-weight: 900;
}

.cart-continue {
  width: 100%;
  height: 46px;
  margin-top: 10px;
  border: 1px solid #111111;
  border-radius: 10px;
  background: #ffffff;
  color: #111111;
  font-size: 13px;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .cart-overlay {
    background: rgba(0, 0, 0, 0.35);
  }

  .cart-drawer {
    width: calc(100% - 46px);
    max-width: 340px;
    border-left: 1px solid #e9e9e9;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
  }

  .cart-drawer-header {
    height: 54px;
    padding: 0 14px;
    border-bottom: 1px solid #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cart-drawer-header h3 {
    font-size: 14px;
  }

  .cart-items {
    padding: 14px;
  }

  .cart-item {
    grid-template-columns: 70px 1fr;
    gap: 10px;
    padding: 12px 0 16px;
    border-bottom: 1px solid #ededed;
  }

  .cart-item-image {
    width: 70px;
    height: 82px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .cart-item-info {
    position: relative;
    padding-right: 36px;
  }

  .cart-item-info h3 {
    font-size: 12px;
    line-height: 1.22;
    font-weight: 500;
    margin-bottom: 8px;
    color: #111111;
  }

  .cart-item-meta {
    font-size: 12px;
    line-height: 1.45;
    color: #111111;
    margin-bottom: 8px;
  }

  .cart-item-price {
    font-size: 14px;
    font-weight: 900;
    color: #111111;
  }

  .cart-remove-icon {
    right: 0;
    top: 48px;
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .cart-empty {
    padding: 24px 14px;
    font-size: 13px;
  }

  .cart-summary {
    padding: 16px 14px 18px;
    border-top: 1px solid #e9e9e9;
  }

  .cart-checkout {
    height: 46px;
    border-radius: 10px;
    font-size: 13px;
    letter-spacing: 0.2px;
    background: #2dbd59;
  }

  .cart-continue {
    height: 44px;
    border-radius: 10px;
    font-size: 12px;
  }
}

/* =========================================================
   CARRINHO MOBILE - AJUSTE FINAL
========================================================= */

@media (max-width: 768px) {
  body.cart-open {
    overflow: hidden !important;
  }

  .cart-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9998 !important;
    background: rgba(0, 0, 0, 0.35) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: 0.25s ease !important;
  }

  .cart-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .cart-drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    width: calc(100% - 56px) !important;
    max-width: 360px !important;
    height: 100dvh !important;
    background: #ffffff !important;
    transform: translateX(105%) !important;
    transition: transform 0.28s ease !important;
    display: flex !important;
    flex-direction: column !important;
    border-left: 1px solid #e8e8e8 !important;
    box-shadow: -10px 0 28px rgba(0, 0, 0, 0.16) !important;
  }

  .cart-drawer.active {
    transform: translateX(0) !important;
  }

  /* HEADER */
  .cart-mobile-header {
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1px solid #e8e8e8 !important;
    background: #ffffff !important;
  }

  .cart-mobile-close {
    width: 74px !important;
    border: 0 !important;
    background: transparent !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 0 !important;
    color: #111111 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
  }

  .cart-mobile-close span {
    font-size: 28px !important;
    line-height: 1 !important;
  }

  .cart-mobile-header h3 {
    flex: 1 !important;
    margin: 0 !important;
    text-align: center !important;
    color: #111111 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
  }

  .cart-mobile-space {
    width: 74px !important;
    display: block !important;
  }

  /* LISTA */
  .cart-items {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 14px !important;
    background: #ffffff !important;
  }

  .cart-empty {
    display: none !important;
    padding: 20px 14px !important;
    color: #777777 !important;
    font-size: 13px !important;
    text-align: center !important;
  }

  .cart-empty.active {
    display: block !important;
  }

  .cart-mobile-item {
    display: grid !important;
    grid-template-columns: 76px 1fr !important;
    gap: 12px !important;
    padding: 14px 0 18px !important;
    border-bottom: 1px solid #ededed !important;
    position: relative !important;
  }

  .cart-mobile-image {
    width: 76px !important;
    height: 92px !important;
    display: grid !important;
    place-items: center !important;
    background: transparent !important;
  }

  .cart-mobile-image img {
    width: 72px !important;
    height: 92px !important;
    object-fit: contain !important;
  }

  .cart-mobile-info {
    position: relative !important;
    padding-right: 38px !important;
    min-width: 0 !important;
  }

  .cart-mobile-item-top {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
  }

  .cart-mobile-item-top h3 {
    margin: 0 !important;
    color: #111111 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
  }

  .cart-mobile-qty {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
    background: #000000 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
  }

  .cart-mobile-meta {
    margin-bottom: 8px !important;
  }

  .cart-mobile-meta p {
    margin: 0 !important;
    color: #111111 !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
  }

  .cart-mobile-price {
    display: block !important;
    color: #111111 !important;
    font-size: 16px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
  }

  .cart-mobile-remove {
    position: absolute !important;
    right: 0 !important;
    top: 52px !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 999px !important;
    border: 1px solid #e5e5e5 !important;
    background: #ffffff !important;
    color: #ff3a3a !important;
    font-size: 20px !important;
    line-height: 1 !important;
    font-weight: 300 !important;
  }

  /* FOOTER */
  .cart-mobile-summary {
    margin-top: auto !important;
    padding: 16px 14px 16px !important;
    border-top: 1px solid #e8e8e8 !important;
    background: #ffffff !important;
  }

  .cart-mobile-total {
    margin-bottom: 16px !important;
  }

  .cart-mobile-total span {
    display: block !important;
    margin-bottom: 4px !important;
    color: #111111 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
  }

  .cart-mobile-total strong {
    display: block !important;
    color: #17325c !important;
    font-size: 18px !important;
    font-weight: 900 !important;
  }

  .cart-checkout {
    display: block !important;
    width: 100% !important;
    height: 46px !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: #2fbd59 !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    box-shadow: none !important;
  }

  .cart-continue {
    display: block !important;
    width: 100% !important;
    height: 44px !important;
    margin-top: 10px !important;
    border: 1px solid #111111 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    color: #111111 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
  }

  .cart-clear {
    display: none !important;
  }
}


/* =========================================================
   CARRINHO DESKTOP - MESMO ESTILO DO MOBILE, MAIS PREMIUM
========================================================= */

@media (min-width: 769px) {
  body.cart-open {
    overflow: hidden !important;
  }

  .cart-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9998 !important;
    background: rgba(0, 0, 0, 0.42) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: 0.25s ease !important;
  }

  .cart-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .cart-drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;

    width: 460px !important;
    max-width: 460px !important;
    height: 100vh !important;

    background: #ffffff !important;
    transform: translateX(105%) !important;
    transition: transform 0.28s ease !important;

    display: flex !important;
    flex-direction: column !important;

    border-left: 1px solid #e8e8e8 !important;
    box-shadow: -18px 0 50px rgba(0, 0, 0, 0.18) !important;
  }

  .cart-drawer.active {
    transform: translateX(0) !important;
  }

  /* Header */
  .cart-mobile-header {
    height: 64px !important;
    min-height: 64px !important;
    padding: 0 22px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    background: #ffffff !important;
    border-bottom: 1px solid #e8e8e8 !important;
  }

  .cart-mobile-close {
    width: 92px !important;
    border: 0 !important;
    background: transparent !important;

    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;

    padding: 0 !important;
    color: #111111 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
  }

  .cart-mobile-close span {
    font-size: 32px !important;
    line-height: 1 !important;
    transform: translateY(-1px) !important;
  }

  .cart-mobile-header h3 {
    flex: 1 !important;
    margin: 0 !important;

    color: #111111 !important;
    font-size: 18px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-align: center !important;
  }

  .cart-mobile-space {
    width: 92px !important;
    display: block !important;
  }

  /* Lista */
  .cart-items {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 22px !important;
    background: #ffffff !important;
  }

  .cart-empty {
    display: none !important;
    padding: 30px 22px !important;
    color: #777777 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-align: center !important;
  }

  .cart-empty.active {
    display: block !important;
  }

  .cart-mobile-item {
    position: relative !important;

    display: grid !important;
    grid-template-columns: 96px 1fr !important;
    gap: 16px !important;

    padding: 18px 0 22px !important;
    border-bottom: 1px solid #ededed !important;
    background: #ffffff !important;
  }

  .cart-mobile-image {
    width: 96px !important;
    height: 116px !important;

    display: grid !important;
    place-items: center !important;

    background: #ffffff !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
  }

  .cart-mobile-image img {
    width: 86px !important;
    height: 106px !important;
    object-fit: contain !important;
  }

  .cart-mobile-info {
    position: relative !important;
    min-width: 0 !important;
    padding-right: 42px !important;
  }

  .cart-mobile-item-top {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
  }

  .cart-mobile-item-top h3 {
    max-width: 250px !important;
    margin: 0 !important;

    color: #111111 !important;
    font-size: 15px !important;
    line-height: 1.24 !important;
    font-weight: 600 !important;
  }

  .cart-mobile-qty {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;

    width: 24px !important;
    height: 24px !important;
    border-radius: 999px !important;

    display: grid !important;
    place-items: center !important;

    background: #000000 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
  }

  .cart-mobile-meta {
    margin-bottom: 10px !important;
  }

  .cart-mobile-meta p {
    margin: 0 0 3px !important;

    color: #111111 !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    font-weight: 400 !important;
  }

  .cart-mobile-price {
    display: block !important;

    color: #111111 !important;
    font-size: 19px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
  }

  .cart-mobile-remove {
    position: absolute !important;
    right: 0 !important;
    top: 58px !important;

    width: 34px !important;
    height: 34px !important;

    border-radius: 999px !important;
    border: 1px solid #e5e5e5 !important;
    background: #ffffff !important;

    color: #ff3030 !important;
    font-size: 23px !important;
    line-height: 1 !important;
    font-weight: 300 !important;

    transition: 0.2s ease !important;
  }

  .cart-mobile-remove:hover {
    background: #fff1f1 !important;
    border-color: #ffc8c8 !important;
  }

  /* Rodapé */
  .cart-mobile-summary {
    margin-top: auto !important;
    padding: 22px !important;

    background: #ffffff !important;
    border-top: 1px solid #e8e8e8 !important;
  }

  .cart-mobile-total {
    margin-bottom: 18px !important;
  }

  .cart-mobile-total span {
    display: block !important;
    margin-bottom: 5px !important;

    color: #111111 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
  }

  .cart-mobile-total strong {
    display: block !important;

    color: #17325c !important;
    font-size: 24px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
  }

  .cart-checkout {
    display: block !important;

    width: 100% !important;
    height: 52px !important;

    border: 0 !important;
    border-radius: 9px !important;

    background: #2fbd59 !important;
    color: #ffffff !important;

    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2px !important;

    box-shadow: none !important;
    transition: 0.2s ease !important;
  }

  .cart-checkout:hover {
    background: #25a84c !important;
  }

  .cart-continue {
    display: block !important;

    width: 100% !important;
    height: 48px !important;

    margin-top: 12px !important;

    border: 1px solid #111111 !important;
    border-radius: 9px !important;

    background: #ffffff !important;
    color: #111111 !important;

    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2px !important;

    transition: 0.2s ease !important;
  }

  .cart-continue:hover {
    background: #f5f5f5 !important;
  }

  .cart-clear {
    display: none !important;
  }
}


/* =========================================================
   FINALIZAR COMPRA
========================================================= */

.checkout-page {
  background: #ffffff;
  color: #111111;
  padding-bottom: 0;
}

.checkout-container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.checkout-header {
  background: #ffffff;
  border-bottom: 1px solid #dedede;
}

.checkout-header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-logo img {
  width: 154px;
  height: auto;
}

.checkout-secure {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-secure span {
  color: #111111;
  font-size: 10px;
  line-height: 1.05;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.checkout-secure strong {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 2px solid #111111;
  border-radius: 999px;
  font-size: 15px;
}

.checkout-main {
  padding: 34px 0 56px;
}

.checkout-actions-top,
.checkout-actions-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.checkout-actions-bottom {
  margin: 26px 0 0;
}

.checkout-back {
  width: 250px;
  height: 42px;
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #a0a0a0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

.checkout-continue-top,
.checkout-continue-bottom {
  width: 250px;
  height: 42px;
  border: 0;
  border-radius: 3px;
  background: #66b84f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-card {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
}

.checkout-card h1,
.checkout-card h2 {
  color: #111111;
  font-size: 19px;
  line-height: 1;
  font-weight: 900;
}

.checkout-cart-card {
  padding: 26px 24px 22px;
  margin-bottom: 18px;
}

.checkout-cart-card h1 {
  margin-bottom: 18px;
}

.checkout-divider {
  width: 100%;
  height: 1px;
  background: #dedede;
  margin: 18px 0;
}

.checkout-cart-item {
  display: grid;
  grid-template-columns: 116px 1fr 120px 150px 26px;
  gap: 22px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid #dedede;
}

.checkout-cart-image {
  width: 92px;
  height: 112px;
  display: grid;
  place-items: center;
}

.checkout-cart-image img {
  width: 92px;
  height: 112px;
  object-fit: contain;
}

.checkout-cart-info h3 {
  color: #111111;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
  max-width: 410px;
  margin-bottom: 8px;
}

.checkout-cart-info p {
  color: #555555;
  font-size: 12px;
  line-height: 1.35;
  margin: 0;
}

.checkout-cart-qty {
  width: 84px;
  height: 34px;
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  overflow: hidden;
}

.checkout-cart-qty button {
  border: 0;
  background: #f3f3f3;
  color: #111111;
  font-size: 16px;
  font-weight: 800;
}

.checkout-cart-qty span {
  display: grid;
  place-items: center;
  color: #111111;
  font-size: 12px;
  font-weight: 800;
}

.checkout-cart-price {
  color: #111111;
  font-size: 15px;
  font-weight: 900;
  text-align: right;
}

.checkout-cart-remove {
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  color: #777777;
  font-size: 17px;
}

.checkout-empty {
  display: none;
  padding: 24px 0 4px;
  color: #777777;
  font-size: 14px;
}

.checkout-empty.active {
  display: block;
}

.checkout-empty a {
  display: block;
  margin-top: 10px;
  color: #0a65d8;
  font-weight: 800;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.checkout-shipping-card,
.checkout-summary-card {
  padding: 26px 24px;
}

.checkout-cep-row {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 12px;
}

.checkout-cep-row input {
  height: 43px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  padding: 0 14px;
  outline: none;
  color: #111111;
  font-size: 12px;
}

.checkout-cep-row button {
  height: 43px;
  border: 0;
  border-radius: 3px;
  background: #66b84f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.checkout-link-button {
  margin-top: 18px;
  border: 0;
  background: transparent;
  color: #0b69d8;
  font-size: 12px;
  font-weight: 700;
}

.checkout-shipping-result {
  margin-top: 14px;
  color: #236b2e;
  font-size: 12px;
  font-weight: 800;
}

.checkout-summary-line,
.checkout-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-summary-line span,
.checkout-summary-line strong {
  color: #111111;
  font-size: 12px;
  font-weight: 600;
}

.checkout-summary-total span {
  color: #111111;
  font-size: 13px;
  font-weight: 900;
}

.checkout-summary-total strong {
  color: #111111;
  font-size: 18px;
  font-weight: 900;
}

.checkout-summary-card p {
  margin-top: 10px;
  color: #111111;
  font-size: 11px;
  line-height: 1.25;
  text-align: right;
}

.checkout-recommendations {
  margin-top: 28px;
  padding: 26px 24px 30px;
}

.checkout-products-wrapper {
  position: relative;
}

.checkout-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.checkout-product-card {
  text-align: left;
}

.checkout-product-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  margin-bottom: 12px;
}

.checkout-product-card h3 {
  min-height: 42px;
  color: #222222;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 9px;
}

.checkout-product-card .old {
  display: block;
  color: #777777;
  font-size: 12px;
  text-decoration: line-through;
}

.checkout-product-card strong {
  display: block;
  color: #111111;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 10px;
}

.checkout-product-card a,
.checkout-product-card button {
  width: 100%;
  height: 30px;
  border: 1px solid #111111;
  border-radius: 2px;
  background: #ffffff;
  color: #111111;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 500;
}

.checkout-rec-arrow {
  position: absolute;
  top: 40%;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: #bfbfbf;
  color: #ffffff;
  font-size: 22px;
}

.checkout-rec-prev {
  left: -6px;
}

.checkout-rec-next {
  right: -6px;
}

.checkout-dots {
  display: none;
}

.checkout-footer {
  background: #f4f4f4;
  border-top: 1px solid #dedede;
  padding: 38px 0 0;
}

.checkout-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 34px;
}

.checkout-footer-block h3 {
  color: #777777;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.checkout-footer-block strong {
  display: block;
  color: #777777;
  font-size: 17px;
  margin-bottom: 7px;
}

.checkout-footer-block a,
.checkout-footer-block p {
  color: #777777;
  font-size: 12px;
  line-height: 1.5;
}

.checkout-payment-icons {
  display: flex;
  gap: 8px;
}

.checkout-payment-icons span {
  min-width: 42px;
  height: 24px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid #dddddd;
  color: #777777;
  font-size: 9px;
  font-weight: 800;
}

.checkout-security-seal {
  width: 140px;
  height: 42px;
  border: 2px solid #69bd54;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #69bd54;
  font-size: 10px;
  font-weight: 900;
  margin-bottom: 12px;
}

.checkout-store-seal {
  width: 142px;
  height: 34px;
  display: grid;
  place-items: center;
  background: #111111;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

.checkout-footer-copy {
  margin-top: 36px;
  padding: 18px 0;
  border-top: 1px solid #dedede;
  color: #777777;
  font-size: 11px;
  text-align: center;
}

.checkout-scroll-top {
  display: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .checkout-container {
    width: min(100% - 30px, 1120px);
  }

  .checkout-header-inner {
    height: 60px;
  }

  .checkout-logo img {
    width: 90px;
  }

  .checkout-secure span {
    font-size: 9px;
  }

  .checkout-secure strong {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .checkout-main {
    padding: 28px 0 34px;
  }

  .checkout-actions-top,
  .checkout-actions-bottom {
    gap: 16px;
    margin-bottom: 24px;
  }

  .checkout-back {
    width: auto;
    height: auto;
    border: 0;
    color: #a0a0a0;
    font-size: 13px;
    line-height: 1.5;
    background: transparent;
  }

  .checkout-continue-top,
  .checkout-continue-bottom {
    width: 174px;
    height: 43px;
    border-radius: 4px;
    font-size: 12px;
  }

  .checkout-cart-card,
  .checkout-shipping-card,
  .checkout-summary-card,
  .checkout-recommendations {
    border-radius: 8px;
    padding: 24px;
  }

  .checkout-card h1,
  .checkout-card h2 {
    font-size: 18px;
  }

  .checkout-cart-item {
    grid-template-columns: 86px 1fr;
    gap: 18px;
    align-items: start;
    position: relative;
  }

  .checkout-cart-image {
    width: 76px;
    height: 100px;
  }

  .checkout-cart-image img {
    width: 76px;
    height: 100px;
  }

  .checkout-cart-info h3 {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 8px;
  }

  .checkout-cart-info p {
    font-size: 13px;
  }

  .checkout-cart-qty {
    grid-column: 1 / 2;
    margin-top: 10px;
    width: 88px;
  }

  .checkout-cart-price {
    position: absolute;
    right: 28px;
    bottom: 18px;
    font-size: 16px;
  }

  .checkout-cart-remove {
    position: absolute;
    right: 0;
    bottom: 17px;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
  }

  .checkout-cep-row {
    grid-template-columns: 1fr 80px;
  }

  .checkout-summary-card p {
    text-align: right;
  }

  .checkout-recommendations {
    margin-top: 20px;
  }

  .checkout-products {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 0 8px;
  }

  .checkout-products::-webkit-scrollbar {
    display: none;
  }

  .checkout-product-card {
    flex: 0 0 calc(50% - 12px);
    scroll-snap-align: start;
  }

  .checkout-product-card img {
    height: 150px;
  }

  .checkout-rec-arrow {
    display: none;
  }

  .checkout-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 16px;
  }

  .checkout-dots span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #e1e1e1;
  }

  .checkout-dots span.active {
    background: #6ab34f;
  }

  .checkout-footer {
    padding-top: 34px;
  }

  .checkout-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .checkout-payment-icons {
    justify-content: center;
  }

  .checkout-security-seal,
  .checkout-store-seal {
    margin-left: auto;
    margin-right: auto;
  }

  .checkout-scroll-top {
    width: 100%;
    height: 54px;
    border: 0;
    background: #f5f5f5;
    color: #777777;
    display: grid;
    place-items: center;
    font-size: 13px;
  }
}

/* =========================================================
   CHECKOUT - RECOMENDADOS CORRIGIDO
========================================================= */

.checkout-recommendations {
  overflow: hidden;
}

.checkout-products-wrapper {
  position: relative;
  width: 100%;
}

.checkout-products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 28px !important;
  align-items: stretch !important;
}

.checkout-product-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  text-align: left !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.checkout-product-image {
  width: 100% !important;
  height: 190px !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  background: transparent !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
}

.checkout-product-image img {
  width: 100% !important;
  max-width: 185px !important;
  height: 180px !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  display: block !important;
}

.checkout-product-info {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  min-width: 0 !important;
}

.checkout-product-info h3 {
  min-height: 44px !important;
  margin: 0 0 10px !important;
  color: #222222 !important;
  font-size: 12px !important;
  line-height: 1.28 !important;
  font-weight: 500 !important;

  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.checkout-product-old {
  display: block !important;
  color: #777777 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  text-decoration: line-through !important;
  margin-bottom: 3px !important;
}

.checkout-product-info strong {
  display: block !important;
  color: #111111 !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  margin-bottom: 12px !important;
}

.checkout-product-button {
  width: 100% !important;
  height: 32px !important;
  border: 1px solid #111111 !important;
  border-radius: 2px !important;
  background: #ffffff !important;
  color: #111111 !important;

  display: grid !important;
  place-items: center !important;

  font-size: 11px !important;
  font-weight: 500 !important;
  margin-top: auto !important;
}

.checkout-product-button:hover {
  background: #f6f6f6 !important;
}

/* Remove o estilo antigo que estava quebrando o link da imagem */
.checkout-product-card > a:not(.checkout-product-button) {
  border: 0 !important;
  height: auto !important;
  background: transparent !important;
}

/* Arrows */
.checkout-rec-arrow {
  position: absolute !important;
  top: 42% !important;
  z-index: 5 !important;
  width: 30px !important;
  height: 30px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #bfbfbf !important;
  color: #ffffff !important;
  display: grid !important;
  place-items: center !important;
  font-size: 24px !important;
  line-height: 1 !important;
}

.checkout-rec-prev {
  left: -6px !important;
}

.checkout-rec-next {
  right: -6px !important;
}

/* MOBILE */
@media (max-width: 768px) {
  .checkout-products {
    display: flex !important;
    gap: 24px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    padding: 4px 0 10px !important;
  }

  .checkout-products::-webkit-scrollbar {
    display: none !important;
  }

  .checkout-product-card {
    flex: 0 0 calc(50% - 12px) !important;
    scroll-snap-align: start !important;
  }

  .checkout-product-image {
    height: 150px !important;
    margin-bottom: 10px !important;
  }

  .checkout-product-image img {
    max-width: 135px !important;
    height: 145px !important;
  }

  .checkout-product-info h3 {
    min-height: 58px !important;
    font-size: 12px !important;
    line-height: 1.28 !important;
    -webkit-line-clamp: 3 !important;
  }

  .checkout-product-old {
    font-size: 12px !important;
  }

  .checkout-product-info strong {
    font-size: 16px !important;
  }

  .checkout-product-button {
    height: 34px !important;
    font-size: 11px !important;
  }

  .checkout-rec-arrow {
    display: none !important;
  }
}


/* =========================================================
   FINALIZAR PEDIDO - ETAPAS 1 A 4
========================================================= */

.finalizar-pedido-page {
  background: #ffffff;
  color: #111111;
  padding-bottom: 0;
}

.fp-container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.fp-header {
  background: #ffffff;
  border-bottom: 1px solid #dddddd;
}

.fp-header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fp-logo img {
  width: 150px;
  height: auto;
}

.fp-secure {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fp-secure span {
  color: #111111;
  font-size: 10px;
  line-height: 1.05;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.fp-secure strong {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 2px solid #111111;
  border-radius: 999px;
  font-size: 14px;
}

.fp-main {
  padding: 34px 0 62px;
}

.fp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 18px;
  align-items: start;
}

.fp-steps {
  display: grid;
  gap: 16px;
}

.fp-step {
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.fp-step-header {
  min-height: 68px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.fp-step-header > div:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fp-step-number {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #7bcf6e;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.fp-step h2 {
  color: #111111;
  font-size: 19px;
  line-height: 1;
  font-weight: 900;
}

.fp-step-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #111111;
  font-size: 12px;
  line-height: 1.2;
  text-align: right;
}

.fp-step-content {
  display: none;
  padding: 0 24px 24px;
}

.fp-step-active .fp-step-content {
  display: block;
}

.fp-step-active .fp-step-header {
  padding-top: 24px;
  align-items: flex-start;
}

.fp-step-locked {
  opacity: 0.92;
}

.fp-step-locked .fp-step-summary {
  color: #111111;
  font-weight: 500;
}

.fp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fp-field {
  position: relative;
  min-height: 48px;
  display: block;
}

.fp-field span {
  position: absolute;
  left: 42px;
  top: 8px;
  color: #777777;
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  z-index: 2;
}

.fp-field::before {
  content: "✓";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #6ab34f;
  font-size: 15px;
  z-index: 2;
}

.fp-field input {
  width: 100%;
  height: 48px;
  border: 1px solid #74bf41;
  border-radius: 3px;
  outline: none;
  padding: 18px 38px 5px 42px;
  color: #111111;
  font-size: 13px;
  font-weight: 500;
}

.fp-field input::placeholder {
  color: #999999;
}

.fp-field-errorable small {
  display: none;
  margin-top: 6px;
  color: #ff3a3a;
  font-size: 11px;
  font-weight: 600;
}

.fp-field-errorable.fp-error input {
  border-color: #ff3a3a;
}

.fp-field-errorable.fp-error::before {
  content: "×";
  color: #ff3a3a;
}

.fp-field-errorable.fp-error small {
  display: block;
}

.fp-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: #111111;
  font-size: 13px;
  font-weight: 500;
}

.fp-checkbox input {
  width: 20px;
  height: 20px;
  accent-color: #6ab34f;
}

.fp-save-button {
  width: 100%;
  height: 48px;
  margin-top: 26px;
  border: 0;
  border-radius: 3px;
  background: #69b852;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.fp-address-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.fp-link-button {
  border: 0;
  background: transparent;
  color: #0b69d8;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.fp-option-card,
.fp-payment-option {
  min-height: 74px;
  display: grid;
  grid-template-columns: 22px 42px 1fr 80px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.fp-option-card {
  grid-template-columns: 22px 1fr 80px;
}

.fp-option-card input,
.fp-payment-option input {
  width: 18px;
  height: 18px;
  accent-color: #69b852;
}

.fp-option-card strong,
.fp-payment-option strong {
  display: block;
  color: #111111;
  font-size: 14px;
  font-weight: 900;
}

.fp-option-card span,
.fp-payment-option small {
  display: block;
  margin-top: 4px;
  color: #777777;
  font-size: 12px;
  font-weight: 600;
}

.fp-option-card b,
.fp-payment-option b {
  justify-self: end;
  color: #111111;
  font-size: 13px;
  font-weight: 600;
}

.fp-payment-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f4f4f4;
  color: #69b852;
  font-size: 15px;
}

/* SIDEBAR */

.fp-sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 18px;
}

.fp-products-box,
.fp-summary-box {
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
}

.fp-sidebar-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid #dddddd;
}

.fp-sidebar-title h2,
.fp-summary-box h2 {
  color: #111111;
  font-size: 19px;
  font-weight: 900;
}

.fp-sidebar-title span {
  color: #777777;
  font-weight: 600;
}

.fp-sidebar-title a {
  color: #555555;
  font-size: 13px;
  text-decoration: underline;
}

.fp-product-list {
  display: grid;
  gap: 16px;
  padding-top: 18px;
}

.fp-product-item {
  display: grid;
  grid-template-columns: 58px 1fr 90px;
  gap: 12px;
  align-items: center;
}

.fp-product-item img {
  width: 52px;
  height: 68px;
  object-fit: contain;
}

.fp-product-item h3 {
  color: #111111;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 4px;
}

.fp-product-item p {
  color: #555555;
  font-size: 11px;
  line-height: 1.25;
  margin: 0;
}

.fp-product-item strong {
  color: #111111;
  font-size: 14px;
  font-weight: 900;
  text-align: right;
}

.fp-summary-box h2 {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dddddd;
}

.fp-line,
.fp-total-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid #eeeeee;
}

.fp-line span,
.fp-total-line span {
  color: #111111;
  font-size: 13px;
  line-height: 1.35;
}

.fp-line strong {
  color: #111111;
  font-size: 13px;
  font-weight: 600;
  text-align: right;
}

.fp-discount-line strong {
  color: #5cab43;
}

.fp-line button {
  border: 0;
  background: transparent;
  color: #0b69d8;
  font-size: 12px;
  font-weight: 700;
}

.fp-total-line {
  padding-top: 16px;
  border-bottom: 0;
}

.fp-total-line span {
  font-weight: 900;
}

.fp-total-line strong {
  color: #111111;
  font-size: 15px;
  font-weight: 900;
}

.fp-observation {
  width: 100%;
  height: 42px;
  border: 0;
  background: transparent;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.fp-finish-button {
  height: 48px;
  border: 0;
  border-radius: 3px;
  background: #69b852;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.fp-finish-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* MOBILE */

@media (max-width: 900px) {
  .fp-container {
    width: min(100% - 24px, 1160px);
  }

  .fp-header-inner {
    height: 66px;
  }

  .fp-logo img {
    width: 112px;
  }

  .fp-layout {
    grid-template-columns: 1fr;
  }

  .fp-sidebar {
    position: static;
    order: -1;
  }

  .fp-steps {
    order: 2;
  }

  .fp-step-header {
    min-height: 62px;
    padding: 0 18px;
  }

  .fp-step-active .fp-step-header {
    padding-top: 18px;
  }

  .fp-step-content {
    padding: 0 18px 18px;
  }

  .fp-form-grid,
  .fp-address-top {
    grid-template-columns: 1fr;
  }

  .fp-step h2 {
    font-size: 17px;
  }

  .fp-step-summary {
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .fp-products-box,
  .fp-summary-box {
    padding: 18px;
  }

  .fp-product-item {
    grid-template-columns: 54px 1fr 74px;
  }

  .fp-footer {
    margin-top: 40px;
  }
}


/* Loading no campo de CEP */
.fp-field input.fp-loading {
  background-image: linear-gradient(
    90deg,
    transparent,
    rgba(106, 179, 79, 0.12),
    transparent
  );
  background-size: 220% 100%;
  animation: fpCepLoading 1s linear infinite;
}

@keyframes fpCepLoading {
  from {
    background-position: 220% 0;
  }

  to {
    background-position: -220% 0;
  }
}

@media (max-width: 900px) {
  .fp-finish-button-mobile {
    order: 2;
    width: 100%;
    height: 52px;
    margin: 18px 0 0;
    border-radius: 4px;
  }
}

/* =========================================================
   PRODUTO COMBO - ESCOLHA DE 2 CAMISETAS
========================================================= */

.combo-builder {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid #eeeeee;
  border-radius: 14px;
  background: #fbfbfb;
}

.combo-builder-header {
  margin-bottom: 16px;
}

.combo-builder-header strong {
  display: block;
  color: #111111;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 4px;
}

.combo-builder-header span {
  color: #666666;
  font-size: 12px;
  font-weight: 600;
}

.combo-slots {
  display: grid;
  gap: 14px;
}

.combo-slot {
  padding: 14px;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  background: #ffffff;
}

.combo-slot-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.combo-slot-title strong {
  color: #111111;
  font-size: 14px;
  font-weight: 900;
}

.combo-slot-title span {
  color: #0a8f3c;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.combo-slot-grid {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
}

.combo-slot-image {
  width: 92px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #f7f7f7;
}

.combo-slot-image img {
  width: 80px;
  height: 100px;
  object-fit: contain;
}

.combo-slot-fields {
  display: grid;
  gap: 10px;
}

.combo-slot-fields select,
.combo-slot-fields input {
  width: 100%;
  height: 38px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  outline: none;
  padding: 0 10px;
  color: #111111;
  font-size: 12px;
  font-weight: 700;
  background: #ffffff;
}

.combo-slot-sizes {
  display: flex;
  gap: 7px;
}

.combo-slot-sizes button {
  width: 38px;
  height: 32px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  font-size: 11px;
  font-weight: 900;
}

.combo-slot-sizes button.active {
  background: #22a9e8;
  border-color: #22a9e8;
  color: #ffffff;
}

@media (max-width: 768px) {
  .combo-builder {
    padding: 13px;
    border-radius: 14px;
  }

  .combo-slot-grid {
    grid-template-columns: 76px 1fr;
    gap: 10px;
  }

  .combo-slot-image {
    width: 76px;
    height: 96px;
  }

  .combo-slot-image img {
    width: 66px;
    height: 86px;
  }

  .combo-slot-fields select,
  .combo-slot-fields input {
    height: 40px;
  }
}


/* =========================================================
   FINALIZAR COMPRA - COMBO COM IMAGENS UMA EMBAIXO DA OUTRA
========================================================= */

.checkout-cart-image-combo {
  width: 96px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 0;
}

.checkout-combo-shirt {
  position: relative;
  width: 72px;
  height: 78px;
  display: grid;
  place-items: center;
}

.checkout-combo-shirt img {
  width: 72px;
  height: 78px;
  object-fit: contain;
  display: block;
}

.checkout-combo-shirt span {
  position: absolute;
  top: 2px;
  right: -2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 900;
}

/* combo 2 */
.checkout-cart-image-combo.combo-2 {
  min-height: 170px;
}

/* combo 3 */
.checkout-cart-image-combo.combo-3 {
  min-height: 250px;
}

/* melhora o alinhamento do item no checkout */
.checkout-cart-item {
  align-items: start;
}

.checkout-cart-image-combo + .checkout-cart-info {
  padding-top: 4px;
}

/* MOBILE */
@media (max-width: 768px) {
  .checkout-cart-image-combo {
    width: 76px;
    min-height: 138px;
    gap: 6px;
  }

  .checkout-combo-shirt {
    width: 56px;
    height: 62px;
  }

  .checkout-combo-shirt img {
    width: 56px;
    height: 62px;
  }

  .checkout-combo-shirt span {
    width: 16px;
    height: 16px;
    font-size: 8px;
  }

  .checkout-cart-image-combo.combo-2 {
    min-height: 138px;
  }

  .checkout-cart-image-combo.combo-3 {
    min-height: 204px;
  }
}

/* =========================================================
   FINALIZAR PEDIDO - IMAGENS DO COMBO UMA EMBAIXO DA OUTRA
========================================================= */

.fp-product-single-image {
  width: 58px;
  min-height: 72px;
  display: grid;
  place-items: center;
}

.fp-product-single-image img {
  width: 52px;
  height: 68px;
  object-fit: contain;
}

.fp-product-combo-images {
  width: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2px;
  gap: 6px;
}

.fp-product-combo-shirt {
  position: relative;
  width: 52px;
  height: 64px;
  display: grid;
  place-items: center;
}

.fp-product-combo-shirt img {
  width: 52px;
  height: 64px;
  object-fit: contain;
}

.fp-product-combo-shirt span {
  position: absolute;
  top: 0;
  right: -4px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #111111;
  color: #ffffff;
  font-size: 8px;
  font-weight: 900;
}

.fp-product-combo-images.combo-2 {
  min-height: 134px;
}

.fp-product-combo-images.combo-3 {
  min-height: 204px;
}

/* Ajusta o grid da sidebar para aceitar combo maior */
.fp-product-item {
  align-items: flex-start;
}

.fp-product-item > div:nth-child(2) {
  padding-top: 2px;
}

.fp-product-item h3 {
  margin-bottom: 6px;
}

.fp-product-item p {
  margin: 0 0 3px;
}

/* MOBILE */
@media (max-width: 900px) {
  .fp-product-combo-images {
    width: 54px;
    gap: 5px;
  }

  .fp-product-combo-shirt {
    width: 48px;
    height: 58px;
  }

  .fp-product-combo-shirt img {
    width: 48px;
    height: 58px;
  }

  .fp-product-combo-images.combo-2 {
    min-height: 122px;
  }

  .fp-product-combo-images.combo-3 {
    min-height: 186px;
  }
}