/**
 * Raiz do Tambor
 * Arquivo: assets/css/loja.css
 * Responsabilidade: vitrine publica, detalhe de produto e lightbox da loja.
 */

:root {
  --store-bg: #f5f1e6;
  --store-card: #ffffff;
  --store-border: #e3d8c5;
  --store-green: #16834a;
  --store-green-dark: #0f6b3b;
  --store-gold: #d9a441;
  --store-gold-dark: #b8860b;
  --store-orange: #e68a2e;
  --store-alert: #fff3cd;
  --store-success: #dff5e6;
  --store-price: #145a32;
  --store-text-dark: #2d2d2d;
  --store-shadow: 0 18px 45px rgba(70, 52, 35, 0.1);
}

.store-page {
  background: var(--store-bg);
  color: var(--store-text-dark);
}

.rt-status-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.38rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  border: 1px solid rgba(109, 76, 65, 0.12);
  background: #fff8e8;
  color: #6d4c41;
}

.rt-status-badge.is-success {
  color: #0f6b38;
  background: rgba(46, 107, 63, 0.12);
  border-color: rgba(46, 107, 63, 0.2);
}

.rt-status-badge.is-warning {
  color: #77510f;
  background: rgba(200, 155, 60, 0.16);
  border-color: rgba(200, 155, 60, 0.24);
}

.rt-status-badge.is-info {
  color: #25536f;
  background: rgba(67, 128, 161, 0.12);
  border-color: rgba(67, 128, 161, 0.2);
}

.rt-status-badge.is-danger {
  color: #9b2c2c;
  background: rgba(155, 44, 44, 0.1);
  border-color: rgba(155, 44, 44, 0.18);
}

.store-orders-page,
.store-order-detail-page {
  min-height: 70vh;
}

.store-orders-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.store-orders-grid {
  display: grid;
  gap: 1rem;
}

.store-order-card,
.store-order-detail-hero,
.store-order-timeline,
.store-order-info-card,
.store-order-section {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(46, 107, 63, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(45, 45, 45, 0.09);
}

.store-order-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.store-order-main,
.store-order-footer,
.store-order-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.store-order-main {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(46, 107, 63, .1);
  background: linear-gradient(135deg, #fff, #fbfdfb);
}

.store-order-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .25rem .65rem;
  min-width: 0;
}

.store-order-heading p {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
}

.store-order-label {
  color: #81746c;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.store-order-number {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  color: var(--cor-marrom);
  background: var(--cor-creme);
  border-radius: 999px;
  font-weight: 900;
}

.store-order-card h2,
.store-order-detail-hero h1,
.store-order-info-card h2,
.store-order-section h2 {
  color: var(--cor-verde);
  font-weight: 900;
}

.store-order-card p,
.store-order-detail-hero p {
  margin: 0.35rem 0 0;
  color: #6d625b;
}

.store-order-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  background: #fff;
}

.store-order-facts > div {
  display: flex;
  min-width: 0;
  min-height: 94px;
  align-items: center;
  gap: .7rem;
  padding: 1rem;
  border-right: 1px solid rgba(46, 107, 63, .1);
}

.store-order-facts > div:last-child {
  border-right: 0;
}

.store-order-facts > div > span:last-child {
  min-width: 0;
}

.store-order-facts small,
.store-order-facts strong {
  display: block;
}

.store-order-facts small {
  margin-bottom: .18rem;
  color: #82776f;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.store-order-facts strong {
  overflow-wrap: anywhere;
  color: #403832;
  font-size: .84rem;
  line-height: 1.35;
}

.store-order-fact-icon {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: rgba(200, 155, 60, .13);
}

.store-order-facts i,
.store-order-tracking i {
  color: var(--cor-dourado);
}

.store-order-facts .store-order-total {
  justify-content: flex-end;
  text-align: right;
  background: linear-gradient(135deg, rgba(46, 107, 63, .055), rgba(200, 155, 60, .08));
}

.store-order-facts .store-order-total strong {
  color: var(--cor-verde);
  font-size: 1.2rem;
}

.store-order-tracking {
  display: flex;
  gap: 0.75rem;
  padding: 0.9rem;
  background: rgba(46, 107, 63, 0.07);
  border: 1px solid rgba(46, 107, 63, 0.12);
  margin: 0 1.25rem 1rem;
  border-radius: 14px;
}

.store-order-tracking span {
  display: grid;
  gap: 0.15rem;
}

.store-order-footer {
  padding: .9rem 1.25rem 1.15rem;
  border-top: 1px solid rgba(46, 107, 63, .08);
}

.store-order-footer > span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #788078;
  font-size: .75rem;
}

.store-order-footer > span i {
  color: var(--cor-verde);
}

.store-order-detail-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.store-order-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem;
}

.store-order-timeline div {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  color: #8a7970;
  text-align: center;
  font-weight: 900;
}

.store-order-timeline span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #8a7970;
  background: #f2eadc;
  border-radius: 50%;
}

.store-order-timeline .is-active span {
  color: #fff;
  background: var(--cor-verde);
}

.store-order-timeline .is-current span {
  box-shadow: 0 0 0 5px rgba(200, 155, 60, 0.18);
}

.store-order-pix {
  max-width: none;
}

.store-order-product {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(46, 107, 63, 0.12);
}

.store-order-product:last-child {
  border-bottom: 0;
}

.store-order-product-media {
  display: grid;
  place-items: center;
  width: 72px;
  aspect-ratio: 1;
  overflow: hidden;
  color: var(--cor-verde);
  background: var(--cor-creme);
  border-radius: 14px;
}

.store-order-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-order-product small {
  display: block;
  color: #6d625b;
  font-weight: 800;
}

.store-order-product b {
  color: var(--cor-verde);
  white-space: nowrap;
}

.store-order-summary {
  top: 96px;
}

.store-order-info-card {
  height: 100%;
  padding: 1.2rem;
}

.store-order-info-card h2 {
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .store-order-detail-hero,
  .store-orders-actions,
  .store-order-main,
  .store-order-footer,
  .store-order-action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .store-order-main {
    align-items: flex-start;
  }

  .store-order-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-order-facts > div {
    border-bottom: 1px solid rgba(46, 107, 63, .1);
  }

  .store-order-facts > div:nth-child(2) {
    border-right: 0;
  }

  .store-order-facts > div:nth-child(n+3) {
    border-bottom: 0;
  }

  .store-order-facts .store-order-total {
    justify-content: flex-start;
    text-align: left;
  }

  .store-order-timeline {
    grid-template-columns: 1fr;
  }

  .store-order-timeline div {
    grid-template-columns: 44px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .store-order-product {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .store-order-product b {
    grid-column: 1 / -1;
  }
}

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

  .store-order-facts > div,
  .store-order-facts > div:nth-child(2),
  .store-order-facts > div:nth-child(n+3) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(46, 107, 63, .1);
  }

  .store-order-facts > div:last-child {
    border-bottom: 0;
  }

  .store-order-footer .btn {
    width: 100%;
  }
}

.store-hero,
.product-detail-hero {
  background:
    radial-gradient(circle at 88% 12%, rgba(200, 155, 60, 0.18), transparent 32%),
    linear-gradient(135deg, #f9f4e6 0%, #f3ead4 48%, rgba(46, 107, 63, 0.18) 100%);
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.store-hero h1,
.product-info-panel h1 {
  color: var(--cor-verde);
  font-weight: 900;
  line-height: 1.04;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  letter-spacing: 0;
}

.store-hero .lead {
  max-width: 760px;
  color: #4a382f;
}

.store-search-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  max-width: 760px;
  padding: 0.65rem;
  margin: 1.7rem 0 1rem;
  background: #fff;
  border: 1px solid rgba(46, 107, 63, 0.14);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(45, 45, 45, 0.12);
}

.store-search-panel > i {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  color: var(--cor-verde);
  background: rgba(46, 107, 63, 0.1);
  border-radius: 50%;
}

.store-search-panel .form-control {
  min-height: 48px;
  border: 0;
  box-shadow: none;
}

.store-hero-actions,
.product-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.store-hero-panel {
  min-height: 360px;
  padding: 2rem;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(46, 107, 63, 0.92), rgba(109, 76, 65, 0.84)),
    radial-gradient(circle at 70% 20%, rgba(200, 155, 60, 0.35), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(45, 45, 45, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.store-hero-panel > span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 2.2rem;
  color: var(--cor-dourado);
}

.store-hero-panel strong {
  font-size: 1.6rem;
}

.store-hero-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.store-hero-panel small,
.store-badge,
.store-stock-badge,
.store-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-weight: 800;
}

.store-hero-panel small {
  background: rgba(255, 255, 255, 0.14);
}

.store-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.store-sort-form {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.store-filter-pills {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.store-filter-pills a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.65rem 0.95rem;
  color: var(--cor-verde);
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(46, 107, 63, 0.16);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(45, 45, 45, 0.08);
}

.store-filter-pills a.active,
.store-filter-pills a:hover {
  color: #fff;
  background: var(--cor-verde);
}

.store-filter-pills small {
  color: inherit;
  opacity: 0.78;
}

.store-result-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: #6d4c41;
  font-weight: 800;
}

.store-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.store-empty {
  grid-column: 1 / -1;
}

.store-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(46, 107, 63, 0.12);
  border-radius: 18px;
  box-shadow: 0 16px 35px rgba(45, 45, 45, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(45, 45, 45, 0.14);
}

.store-product-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  color: var(--cor-verde);
  text-decoration: none;
  background:
    radial-gradient(circle at 70% 22%, rgba(200, 155, 60, 0.18), transparent 30%),
    linear-gradient(135deg, #fff8e8, #e4f0e5);
}

.store-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.store-product-card:hover .store-product-media img {
  transform: scale(1.04);
}

.store-product-media > i {
  font-size: 4rem;
}

.store-product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  color: #2b210d;
  background: var(--cor-dourado);
}

.store-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.1rem;
}

.store-product-meta,
.store-product-status,
.product-code-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: #6d4c41;
  font-size: 0.86rem;
  font-weight: 800;
}

.store-product-meta span,
.store-product-status span,
.product-code-line span {
  padding: 0.25rem 0.55rem;
  background: rgba(247, 243, 232, 0.9);
  border-radius: 999px;
}

.store-product-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.store-product-card h3 a {
  color: var(--cor-grafite);
  text-decoration: none;
  font-weight: 950;
}

.store-product-card p {
  margin: 0;
  color: #5c514b;
}

.store-product-footer {
  margin-top: auto;
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 0.9rem;
}

.product-price small {
  color: #8a7970;
  font-weight: 800;
  text-decoration: line-through;
}

.store-price-original {
  width: fit-content;
  color: #8a7970;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration-thickness: 2px;
}

.store-price-current {
  color: var(--store-price) !important;
  font-weight: 950 !important;
}

.store-price-promotion {
  width: fit-content;
  color: var(--store-orange) !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
}

.product-price strong {
  color: var(--cor-verde);
  font-size: 1.55rem;
  line-height: 1;
}

.store-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.product-detail-page {
  background: var(--cor-creme);
}

.breadcrumb-brand {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
  color: #6d4c41;
  font-weight: 800;
}

.breadcrumb-brand a {
  color: var(--cor-verde);
  text-decoration: none;
}

.product-gallery,
.product-info-panel,
.product-trust-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(46, 107, 63, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(45, 45, 45, 0.12);
}

.product-gallery {
  padding: 1rem;
}

.product-main-image {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #fff;
}

.product-main-image img,
.product-main-image video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-main-placeholder {
  gap: 0.7rem;
  color: var(--cor-verde);
  background: linear-gradient(135deg, #fff8e8, #e4f0e5);
}

.product-main-placeholder i {
  font-size: 4rem;
}

.media-play-badge,
.product-thumb span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(46, 107, 63, 0.86);
  border-radius: 50%;
}

.product-thumb-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.product-thumb {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #fff;
}

.product-thumb.is-active,
.product-thumb:hover {
  border-color: var(--cor-dourado);
}

.product-thumb img,
.product-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.store-badge {
  color: #2b210d;
  background: var(--cor-dourado);
}

.store-stock-badge {
  color: var(--cor-verde);
  background: rgba(46, 107, 63, 0.1);
}

.product-short-description {
  color: #4a382f;
  font-size: 1.08rem;
}

.product-action-row .btn {
  min-height: 48px;
}

.btn-link-brand {
  color: var(--cor-verde);
  font-weight: 900;
  text-decoration: none;
}

.product-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.product-trust-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  font-weight: 900;
  color: #4a382f;
}

.product-trust-card i {
  color: var(--cor-dourado);
  font-size: 1.35rem;
}

.product-rich-text {
  color: #3f332d;
  font-size: 1.05rem;
  line-height: 1.75;
}

.product-rich-text h2,
.product-rich-text h3 {
  color: var(--cor-verde);
  margin-top: 1.4rem;
}

.product-tech-card dl {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.product-tech-card dt {
  color: var(--cor-verde);
  font-weight: 900;
}

.product-tech-card dd {
  margin: -0.55rem 0 0;
  color: #5c514b;
}

.media-lightbox .modal-content {
  color: #fff;
  background: rgba(18, 24, 20, 0.98);
}

.media-lightbox .modal-header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.media-counter {
  font-weight: 900;
}

.media-lightbox .modal-body {
  min-height: 70vh;
  display: grid;
  place-items: center;
}

.lightbox-media {
  display: block;
  max-width: 100%;
  max-height: 74vh;
  margin: 0 auto;
  object-fit: contain;
}

.lightbox-caption {
  margin: 1rem 0 0;
  text-align: center;
  color: #f7f3e8;
}

.admin-product-modal {
  max-width: min(1180px, calc(100vw - 1rem));
}

.store-cart-page {
  min-height: 70vh;
  background: var(--cor-creme);
  color: var(--cor-grafite);
}

.cart-hero {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(200, 155, 60, 0.22), transparent 30%),
    linear-gradient(135deg, #f8f0dc 0%, #fffaf0 46%, rgba(46, 107, 63, 0.18) 100%);
  border-bottom: 1px solid rgba(46, 107, 63, 0.12);
}

.cart-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cart-hero h1 {
  margin: 0;
  color: var(--cor-verde);
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
}

.cart-hero p {
  max-width: 720px;
  margin: 0.85rem 0 0;
  color: #4a382f;
  font-size: 1.1rem;
}

.cart-hero-badge {
  display: grid;
  place-items: center;
  min-width: 150px;
  min-height: 150px;
  padding: 1.2rem;
  color: #fff;
  text-align: center;
  background: var(--cor-verde);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 28px;
  box-shadow: 0 20px 42px rgba(46, 107, 63, 0.24);
}

.cart-hero-badge i {
  color: var(--cor-dourado);
  font-size: 2.4rem;
}

.cart-hero-badge span {
  font-weight: 900;
}

.cart-alert {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(45, 45, 45, 0.08);
}

.cart-empty-card,
.cart-items-panel,
.cart-summary-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(46, 107, 63, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(45, 45, 45, 0.1);
}

.cart-empty-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.cart-empty-card > span {
  display: inline-grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin-bottom: 1.1rem;
  color: var(--cor-verde);
  background: rgba(46, 107, 63, 0.1);
  border-radius: 28px;
  font-size: 2.4rem;
}

.cart-empty-card h2,
.cart-panel-heading h2,
.cart-summary-card h2 {
  color: var(--cor-verde);
  font-weight: 900;
}

.cart-items-panel {
  overflow: hidden;
}

.cart-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(247, 243, 232, 0.82);
  border-bottom: 1px solid rgba(46, 107, 63, 0.12);
}

.cart-panel-heading h2 {
  margin: 0;
  font-size: 1.45rem;
}

.cart-item-list {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.cart-item-card {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid rgba(46, 107, 63, 0.1);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(45, 45, 45, 0.065);
}

.cart-item-media {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  color: var(--cor-verde);
  text-decoration: none;
  background:
    radial-gradient(circle at 72% 20%, rgba(200, 155, 60, 0.16), transparent 32%),
    linear-gradient(135deg, #fff8e8, #e4f0e5);
  border-radius: 16px;
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-media i {
  font-size: 3.2rem;
}

.cart-item-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1rem;
}

.cart-item-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.cart-item-title-row span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.35rem;
  padding: 0.25rem 0.6rem;
  color: var(--cor-marrom);
  font-size: 0.82rem;
  font-weight: 900;
  background: var(--cor-creme);
  border-radius: 999px;
}

.cart-item-title-row h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
}

.cart-item-title-row h3 a {
  color: var(--cor-grafite);
  text-decoration: none;
}

.cart-item-title-row p {
  display: -webkit-box;
  margin: 0.4rem 0 0;
  overflow: hidden;
  color: #5c514b;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cart-remove-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-width: 92px;
  min-height: 40px;
  padding: .45rem .75rem;
  color: #9f2f2f;
  background: rgba(159, 47, 47, 0.08);
  border: 1px solid rgba(159, 47, 47, .2);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
}

.cart-remove-btn:hover {
  color: #fff;
  background: #9f2f2f;
  border-color: #9f2f2f;
}

.cart-item-price del,
.rt-checkout-price del {
  display: block;
  color: #8a7970;
  font-size: .78rem;
  font-weight: 700;
}

.rt-checkout-price {
  display: grid;
  justify-items: end;
}

.rt-checkout-price strong {
  color: var(--cor-verde);
}

.cart-item-controls {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto auto;
  gap: 1rem;
  align-items: end;
}

.cart-qty-form label,
.cart-item-price small {
  display: block;
  margin-bottom: 0.35rem;
  color: #7b6b62;
  font-size: 0.82rem;
  font-weight: 900;
}

.cart-qty-form > div {
  display: grid;
  grid-template-columns: 86px auto;
  gap: 0.5rem;
}

.cart-qty-form .form-control {
  min-height: 44px;
  border-radius: 14px;
  text-align: center;
}

.cart-item-price {
  min-width: 112px;
  text-align: right;
}

.cart-item-price strong {
  color: var(--cor-verde);
  font-size: 1.08rem;
}

.cart-item-price.is-subtotal strong {
  color: var(--cor-marrom);
}

.cart-summary-card {
  position: sticky;
  top: 96px;
  padding: 1.4rem;
}

.cart-summary-line,
.cart-summary-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(46, 107, 63, 0.12);
}

.cart-summary-line span,
.cart-summary-line strong {
  color: #5c514b;
}

.cart-summary-line.muted strong {
  color: #8a7970;
}

.cart-summary-total {
  align-items: center;
  margin: 0.5rem 0 1rem;
  border-bottom: 0;
}

.cart-summary-total span {
  font-weight: 900;
}

.cart-summary-total strong {
  color: var(--cor-verde);
  font-size: 1.65rem;
  line-height: 1;
}

.cart-trust-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(46, 107, 63, 0.12);
}

.cart-trust-list span {
  display: flex;
  gap: 0.55rem;
  color: #5c514b;
  font-weight: 800;
}

.cart-trust-list i {
  color: var(--cor-dourado);
}

.store-checkout-page {
  min-height: 70vh;
  background: var(--cor-creme);
}

.checkout-hero {
  padding: clamp(2.4rem, 5vw, 4.8rem) 0;
  background:
    radial-gradient(circle at 86% 18%, rgba(200, 155, 60, 0.2), transparent 30%),
    linear-gradient(135deg, #fffaf0 0%, #f7f3e8 46%, rgba(46, 107, 63, 0.16) 100%);
  border-bottom: 1px solid rgba(46, 107, 63, 0.12);
}

.checkout-hero h1 {
  margin: 0;
  color: var(--cor-verde);
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
}

.checkout-hero p {
  max-width: 740px;
  margin: 0.9rem 0 0;
  color: #4a382f;
  font-size: 1.1rem;
}

.checkout-alert {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(45, 45, 45, 0.08);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  gap: 1.35rem;
  align-items: start;
}

.checkout-form-panel,
.checkout-summary-card,
.checkout-success-card,
.checkout-order-review {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(46, 107, 63, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(45, 45, 45, 0.1);
}

.checkout-form-panel {
  padding: clamp(1rem, 3vw, 1.6rem);
}

.checkout-step-heading {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(247, 243, 232, 0.82);
  border: 1px solid rgba(200, 155, 60, 0.22);
  border-radius: 18px;
}

.checkout-step-heading > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--cor-verde);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(46, 107, 63, 0.22);
}

.checkout-step-heading h2 {
  margin: 0;
  color: var(--cor-verde);
  font-size: 1.25rem;
  font-weight: 900;
}

.checkout-step-heading p {
  margin: 0.25rem 0 0;
  color: #6d625b;
}

.checkout-form-panel .form-control {
  min-height: 48px;
  border-color: rgba(46, 107, 63, 0.18);
  border-radius: 14px;
}

.checkout-form-panel textarea.form-control {
  min-height: 112px;
}

.checkout-form-panel .form-control:focus {
  border-color: var(--cor-dourado);
  box-shadow: 0 0 0 0.2rem rgba(200, 155, 60, 0.18);
}

.rt-cep-lookup .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.rt-cep-lookup .btn {
  min-width: 52px;
  border-color: rgba(46, 107, 63, 0.26);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.rt-cep-help {
  display: inline-flex;
  margin-top: 0.35rem;
  color: var(--cor-verde);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.rt-cep-help:hover {
  color: var(--cor-dourado);
}

.checkout-choice {
  display: flex;
  gap: 0.75rem;
  height: 100%;
  padding: 1rem;
  cursor: pointer;
  background: #fff;
  border: 1px solid rgba(46, 107, 63, 0.14);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(45, 45, 45, 0.055);
}

.checkout-choice input {
  margin-top: 0.35rem;
  accent-color: var(--cor-verde);
}

.checkout-choice span {
  display: grid;
  gap: 0.15rem;
}

.checkout-choice i {
  color: var(--cor-dourado);
  font-size: 1.35rem;
}

.checkout-choice strong {
  color: var(--cor-grafite);
}

.checkout-choice small {
  color: #6d625b;
  line-height: 1.3;
}

.checkout-accept {
  display: flex;
  gap: 0.7rem;
  padding: 1rem;
  color: #4a382f;
  background: rgba(46, 107, 63, 0.07);
  border: 1px solid rgba(46, 107, 63, 0.14);
  border-radius: 16px;
  font-weight: 800;
}

.checkout-summary-card {
  position: sticky;
  top: 96px;
  padding: 1.35rem;
}

.checkout-summary-card h2 {
  color: var(--cor-verde);
  font-weight: 900;
}

.checkout-summary-items {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0;
}

.checkout-summary-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  padding: 0.85rem;
  background: var(--cor-creme);
  border-radius: 16px;
}

.checkout-summary-item strong {
  display: block;
  color: var(--cor-grafite);
  line-height: 1.25;
}

.checkout-summary-item span {
  display: block;
  margin-top: 0.25rem;
  color: #6d625b;
  font-size: 0.9rem;
  font-weight: 800;
}

.checkout-summary-item b {
  color: var(--cor-verde);
  white-space: nowrap;
}

.checkout-success-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.checkout-success-card > span {
  display: inline-grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin-bottom: 1rem;
  color: #fff;
  background: var(--cor-verde);
  border-radius: 28px;
  font-size: 2.5rem;
}

.checkout-success-card h2 {
  color: var(--cor-verde);
  font-weight: 900;
}

.checkout-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.2rem;
}

.checkout-order-review {
  max-width: 920px;
  margin-inline: auto;
  padding: 1.4rem;
}

.checkout-order-review h3 {
  color: var(--cor-verde);
  font-weight: 900;
}

.checkout-mini-item,
.checkout-mini-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(46, 107, 63, 0.12);
}

.checkout-mini-total {
  border-bottom: 0;
  color: var(--cor-verde);
  font-size: 1.2rem;
  font-weight: 900;
}

.rt-shop-shell {
  background:
    linear-gradient(180deg, rgba(247, 243, 232, .96), rgba(255, 255, 255, .96)),
    radial-gradient(circle at 80% 10%, rgba(200, 155, 60, .15), transparent 28%);
}

.rt-commerce-panel,
.rt-checkout-summary {
  border-radius: 18px;
}

.rt-qty-control {
  display: inline-grid;
  grid-template-columns: 38px 68px 38px;
  gap: 6px;
  align-items: center;
}

.rt-qty-control button {
  width: 38px;
  height: 38px;
  color: var(--cor-verde);
  font-weight: 900;
  background: #f7f3e8;
  border: 1px solid rgba(46, 107, 63, .18);
  border-radius: 12px;
}

.rt-qty-control input {
  text-align: center;
}

.rt-coupon-box,
.rt-shipping-box {
  padding: 14px;
  margin-bottom: 14px;
  background: #fffaf0;
  border: 1px solid rgba(200, 155, 60, .22);
  border-radius: 16px;
}

.rt-shipping-options {
  display: grid;
  gap: 8px;
}

.rt-shipping-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  width: 100%;
  padding: 12px;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(46, 107, 63, .14);
  border-radius: 14px;
}

.rt-shipping-option small {
  color: #6d625b;
}

.rt-shipping-option b {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: var(--cor-verde);
}

.rt-shipping-option.is-selected {
  border-color: var(--cor-verde);
  box-shadow: 0 0 0 3px rgba(46, 107, 63, .1);
}

.rt-shipping-loading {
  padding: 10px;
  color: #6d4c41;
  background: #fff;
  border-radius: 12px;
}

.rt-checkout-items {
  display: grid;
  gap: 10px;
}

.rt-checkout-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(46, 107, 63, .12);
  border-radius: 16px;
}

.rt-checkout-media {
  width: 74px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--cor-creme);
  color: var(--cor-verde);
  text-decoration: none;
}

.rt-checkout-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rt-checkout-product {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.rt-checkout-product small {
  color: #6d4c41;
}

.rt-checkout-item span {
  color: var(--cor-verde);
  font-weight: 900;
}

.rt-address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
}

.rt-address-card {
  display: grid;
  gap: 4px;
  padding: 12px;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(46, 107, 63, .14);
  border-radius: 14px;
}

.rt-address-card.is-selected,
.rt-address-card:hover {
  border-color: var(--cor-dourado);
  box-shadow: 0 0 0 3px rgba(200, 155, 60, .12);
}

.rt-pix-box {
  border: 1px solid rgba(46, 107, 63, .18);
  background: linear-gradient(135deg, #f8fff9, #fffaf0);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 8px;
}

.rt-pix-box span {
  color: var(--cor-verde);
  font-weight: 800;
}

.rt-pix-box strong {
  color: var(--cor-grafite);
  word-break: break-word;
  font-size: .98rem;
}

.admin-detail-list {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 8px 14px;
  margin: 0;
}

.admin-detail-list dt {
  color: #6D4C41;
  font-weight: 800;
}

.admin-detail-list dd {
  margin: 0;
}

@media (max-width: 1199.98px) {
  .store-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .store-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .store-sort-form {
    justify-content: space-between;
  }

  .cart-summary-card {
    position: static;
  }

  .cart-item-controls {
    grid-template-columns: 1fr 1fr;
  }

  .cart-qty-form {
    grid-column: 1 / -1;
  }

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

  .checkout-summary-card {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .store-search-panel {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .store-search-panel > i {
    display: none;
  }

  .store-product-grid,
  .product-trust-grid {
    grid-template-columns: 1fr;
  }

  .store-product-actions,
  .product-action-row {
    grid-template-columns: 1fr;
  }

  .store-product-actions .btn,
  .product-action-row .btn {
    width: 100%;
  }

  .product-thumb-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cart-hero-content,
  .cart-panel-heading,
  .cart-item-title-row {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-hero-badge {
    min-width: 100%;
    min-height: 96px;
    border-radius: 20px;
  }

  .cart-item-card {
    grid-template-columns: 1fr;
  }

  .cart-item-media {
    aspect-ratio: 4 / 3;
  }

  .cart-item-controls {
    grid-template-columns: 1fr;
  }

  .cart-item-price {
    min-width: 0;
    text-align: left;
  }

  .cart-qty-form > div {
    grid-template-columns: 88px 1fr;
  }

  .checkout-step-heading,
  .checkout-accept {
    align-items: flex-start;
  }

  .checkout-summary-item,
  .checkout-mini-item,
  .checkout-mini-total {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .checkout-success-actions .btn {
    width: 100%;
  }

  .rt-checkout-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .rt-checkout-media {
    width: 64px;
  }

  .rt-checkout-item > span,
  .rt-checkout-item .rt-qty-control,
  .rt-checkout-item > .btn {
    grid-column: 1 / -1;
  }

  .rt-shipping-option {
    grid-template-columns: 1fr;
  }
}

.store-variations {
  display: grid;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.store-variation-group {
  padding: 0;
  margin: 0;
  border: 0;
}

.store-variation-group legend {
  margin-bottom: 0.55rem;
  color: var(--store-text-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.store-variation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.store-variation-option {
  position: relative;
  min-width: 72px;
  display: grid;
  justify-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.75rem;
  color: #5d5148;
  background: #fff;
  border: 1px solid var(--store-border);
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.store-variation-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.store-variation-option:has(input:checked) {
  color: var(--store-green-dark);
  background: var(--store-success);
  border-color: var(--store-green);
  box-shadow: 0 0 0 2px rgba(22, 131, 74, 0.12);
}

.store-variation-option.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.store-color-circle {
  width: 34px;
  height: 34px;
  display: block;
  background: var(--variation-color);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(45, 45, 45, 0.25);
}

.store-variation-option small {
  color: var(--store-orange);
  font-weight: 900;
}

.store-cart-variations,
.store-checkout-variations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.store-cart-variations span,
.store-checkout-variations span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.45rem;
  color: #5d5148;
  background: #f5f1e8;
  border-radius: 8px;
  font-size: 0.72rem;
}

.store-mini-color {
  width: 12px;
  height: 12px;
  display: inline-block;
  background: var(--variation-color);
  border: 1px solid rgba(45, 45, 45, 0.25);
  border-radius: 50%;
}

.store-summary-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--store-border);
}

.store-summary-heading > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--store-green);
  border-radius: 12px;
  font-size: 1.15rem;
}

.store-summary-heading h2 {
  margin: 0;
  color: var(--store-text-dark);
  font-size: 1.2rem;
  font-weight: 950;
}

.store-summary-heading p {
  margin: 0.15rem 0 0;
  color: #75695e;
  font-size: 0.75rem;
}

.store-savings-highlight {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  margin: 1rem 0;
  color: #fff;
  background: linear-gradient(135deg, #e06e17, var(--store-orange));
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(230, 138, 46, 0.23);
}

.store-savings-highlight span {
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-savings-highlight strong {
  font-size: 1.65rem;
  font-weight: 950;
  line-height: 1;
}

.store-savings-highlight small {
  width: fit-content;
  padding: 0.2rem 0.45rem;
  color: #4c3406;
  background: #ffe08a;
  border-radius: 999px;
  font-weight: 900;
}

.store-savings-highlight.is-checkout {
  margin-top: 0.5rem;
}

.store-summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  color: #5d5148;
  border-bottom: 1px solid var(--store-border);
  font-size: 0.82rem;
}

.store-summary-line strong,
.store-summary-line del {
  color: var(--store-text-dark);
  font-weight: 900;
  white-space: nowrap;
}

.store-summary-line.is-original del {
  color: #9b8e84;
}

.store-summary-line.is-benefit {
  color: var(--store-green-dark);
  background: rgba(223, 245, 230, 0.55);
}

.store-summary-line.is-subtotal {
  color: var(--store-text-dark);
  font-weight: 900;
}

.store-summary-line.is-subtotal strong {
  color: var(--store-orange);
}

.store-system-discount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem;
  margin: 0.55rem 0;
  color: #17496d;
  background: #e0f1ff;
  border: 1px solid #75bff0;
  border-radius: 12px;
}

.store-system-discount div {
  display: grid;
}

.store-system-discount strong {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.store-system-discount small {
  font-size: 0.7rem;
}

.store-system-discount b {
  color: #075da0;
  white-space: nowrap;
}

.store-coupon-compact {
  margin-top: 0.85rem;
}

.rt-shipping-box .rt-cep-lookup .btn {
  min-width: 108px;
}

/* Loja virtual 2026: vitrine compacta, imagens integrais e checkout comercial. */
.store-security-strip {
  color: #fff;
  background: #245a35;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.store-security-strip .container {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  overflow-x: auto;
  scrollbar-width: none;
}

.store-security-strip span {
  flex: 0 0 auto;
  display: inline-flex;
  gap: .4rem;
  align-items: center;
  font-size: .76rem;
  font-weight: 800;
}

.store-security-strip i {
  color: #f4cf77;
}

.nav-cart-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .75rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.nav-cart-link:hover {
  color: var(--cor-verde);
  background: #fff;
}

.nav-cart-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  font-size: 1.25rem;
}

.nav-cart-badge {
  position: absolute;
  top: -.7rem;
  right: -.75rem;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  padding: 0 .28rem;
  color: #fff;
  background: var(--cor-dourado);
  border: 2px solid var(--cor-verde);
  border-radius: 999px;
  font-size: .67rem;
  line-height: 1;
}

.store-hero {
  padding: clamp(2rem, 4vw, 3.6rem) 0;
}

.store-hero h1 {
  max-width: 850px;
  font-size: clamp(2rem, 4.3vw, 3.7rem);
}

.store-hero-panel-compact {
  min-height: 180px;
  justify-content: center;
  align-items: center;
  gap: .65rem;
  padding: 1.4rem;
  text-align: center;
}

.store-hero-panel-compact > span {
  width: 58px;
  height: 58px;
  margin: 0;
}

.store-hero-panel-compact div {
  display: grid;
  margin: 0;
}

.store-hero-panel-compact div strong {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.store-hero-panel-compact a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.store-catalog-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.store-category-sidebar {
  position: sticky;
  top: 132px;
  display: grid;
  gap: .45rem;
  padding: .8rem;
  background: #eef2f4;
  border: 1px solid rgba(46, 107, 63, .1);
  border-radius: 18px;
}

.store-category-sidebar-title {
  display: flex;
  gap: .55rem;
  align-items: center;
  padding: .6rem .65rem;
  color: var(--cor-verde);
}

.store-category-sidebar a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .65rem .75rem;
  color: var(--cor-grafite);
  background: #fff;
  border: 1px solid rgba(46, 107, 63, .09);
  border-radius: 13px;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 5px 14px rgba(45, 45, 45, .05);
}

.store-category-sidebar a span {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.store-category-sidebar a i {
  color: var(--cor-dourado);
  font-size: 1rem;
}

.store-category-sidebar a b {
  color: var(--cor-marrom);
  font-size: .72rem;
}

.store-category-sidebar a.active,
.store-category-sidebar a:hover {
  color: #fff;
  background: var(--cor-verde);
}

.store-category-sidebar a.active i,
.store-category-sidebar a.active b,
.store-category-sidebar a:hover i,
.store-category-sidebar a:hover b {
  color: #fff;
}

.store-filter-mobile {
  display: none;
}

.store-product-grid {
  gap: .9rem;
}

.store-catalog-results .store-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.store-product-card {
  position: relative;
  border-radius: 15px;
  box-shadow: 0 9px 22px rgba(45, 45, 45, .08);
}

.store-product-media {
  aspect-ratio: 1 / .9;
  padding: .8rem;
  background: #f7f9fa;
  border-bottom: 1px solid rgba(46, 107, 63, .08);
}

.store-product-media img {
  object-fit: contain;
  object-position: center;
}

.store-product-card:hover .store-product-media img {
  transform: scale(1.02);
}

.store-favorite-button {
  position: absolute;
  z-index: 3;
  top: .72rem;
  right: .72rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--cor-verde);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(46, 107, 63, .14);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(45, 45, 45, .12);
  text-decoration: none;
}

.store-favorite-button:hover,
.store-favorite-button.is-active {
  color: #a92f3e;
}

.store-product-badge,
.store-discount-badge {
  top: auto;
  bottom: .65rem;
  padding: .28rem .58rem;
  font-size: .7rem;
}

.store-discount-badge {
  position: absolute;
  left: .65rem;
  color: #fff;
  background: var(--cor-verde);
  border-radius: 999px;
  font-weight: 900;
}

.store-product-badge + .store-discount-badge {
  left: auto;
  right: .65rem;
}

.store-product-body {
  gap: .55rem;
  padding: .9rem;
}

.store-product-meta {
  min-height: 22px;
}

.store-product-meta span {
  padding: .18rem .45rem;
  font-size: .68rem;
}

.store-product-card h3 {
  min-height: 2.55em;
  display: -webkit-box;
  overflow: hidden;
  font-size: .95rem;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.store-product-status {
  min-height: 25px;
  font-size: .72rem;
}

.store-product-status span {
  color: var(--cor-verde);
  background: #edf8ef;
}

.store-product-footer .product-price {
  gap: .12rem;
  margin-bottom: .65rem;
}

.store-product-footer .product-price small {
  font-size: .72rem;
}

.store-product-footer .product-price strong {
  font-size: 1.35rem;
}

.store-product-footer .product-price span {
  color: #6d625b;
  font-size: .72rem;
}

.store-product-actions {
  grid-template-columns: 1fr;
  gap: .4rem;
}

.store-product-actions .btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 900;
}

.product-detail-hero {
  padding: clamp(1.5rem, 3vw, 2.8rem) 0;
}

.product-info-panel h1 {
  font-size: clamp(1.75rem, 3.4vw, 2.8rem);
}

.product-gallery,
.product-info-panel {
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(45, 45, 45, .09);
}

.product-main-image {
  aspect-ratio: 4 / 3;
}

.product-price .product-saving {
  width: fit-content;
  margin-top: .4rem;
  padding: .28rem .6rem;
  color: var(--cor-verde);
  background: #edf8ef;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  text-decoration: none;
}

.product-price .product-installment {
  color: #6d625b;
  font-size: .86rem;
  font-weight: 700;
}

.product-buy-box {
  display: grid;
  gap: .45rem;
  padding: 1rem;
  margin: 1rem 0;
  background: #f7f9f6;
  border: 1px solid rgba(46, 107, 63, .14);
  border-radius: 16px;
}

.product-buy-box > label {
  color: var(--cor-marrom);
  font-size: .8rem;
  font-weight: 900;
}

.product-buy-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: .65rem;
}

.product-quantity {
  min-width: 0;
}

.product-secondary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-secondary-actions .btn-link-brand {
  grid-column: 1 / -1;
  text-align: center;
}

.product-secondary-actions .is-favorite {
  color: #8f2938;
  border-color: rgba(143, 41, 56, .32);
}

.cart-hero,
.checkout-hero {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.cart-hero h1,
.checkout-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cart-hero-badge {
  min-width: 112px;
  min-height: 92px;
  border-radius: 18px;
}

.cart-item-media img,
.rt-checkout-media img,
.checkout-summary-media img {
  object-fit: contain;
  object-position: center;
}

.cart-item-title-row p {
  -webkit-line-clamp: 1;
}

.cart-items-panel,
.cart-summary-card,
.checkout-form-panel,
.checkout-summary-card {
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(45, 45, 45, .08);
}

.checkout-step-heading {
  padding: .8rem;
  border-radius: 12px;
}

.checkout-summary-item {
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  padding: .65rem;
  border: 1px solid rgba(46, 107, 63, .09);
  border-radius: 12px;
}

.checkout-summary-media {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
}

.checkout-summary-media img {
  width: 100%;
  height: 100%;
}

.checkout-summary-media i {
  color: var(--cor-verde);
}

@media (max-width: 1199.98px) {
  .store-catalog-results .store-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .nav-cart-link {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
  }

  .store-catalog-layout {
    grid-template-columns: 1fr;
  }

  .store-category-sidebar {
    display: none;
  }

  .store-filter-mobile {
    display: flex;
  }
}

@media (max-width: 575.98px) {
  .store-security-strip .container {
    justify-content: flex-start;
    padding-block: .25rem;
  }

  .store-catalog-results .store-product-grid {
    grid-template-columns: 1fr;
  }

  .store-product-media {
    aspect-ratio: 4 / 3;
  }

  .product-buy-row,
  .product-secondary-actions {
    grid-template-columns: 1fr;
  }

  .checkout-summary-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .checkout-summary-item > b {
    grid-column: 2;
  }
}

/* Experiência comercial da loja */
.store-benefit-bar {
  color: var(--store-text-dark);
  background: var(--store-card);
  border-bottom: 1px solid var(--store-border);
}

.store-benefit-bar .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.store-benefit-bar .container > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-right: 1px solid var(--store-border);
}

.store-benefit-bar .container > div:last-child {
  border-right: 0;
}

.store-benefit-bar i {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--store-green-dark);
  background: var(--store-success);
  border-radius: 50%;
  font-size: 1.1rem;
}

.store-benefit-bar span {
  min-width: 0;
  display: grid;
  line-height: 1.2;
}

.store-benefit-bar strong {
  font-size: 0.85rem;
  font-weight: 900;
}

.store-benefit-bar small {
  margin-top: 0.2rem;
  color: #75695e;
  font-size: 0.72rem;
}

.store-hero,
.product-detail-hero,
.rt-shop-shell {
  background-color: var(--store-bg);
}

.store-hero {
  background:
    radial-gradient(circle at 88% 20%, rgba(217, 164, 65, 0.25), transparent 25%),
    linear-gradient(125deg, #1f5934 0%, var(--store-green-dark) 58%, #6d4c41 100%);
}

.store-search-panel {
  border: 2px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 16px 36px rgba(25, 37, 29, 0.22);
}

.store-search-panel .btn,
.store-action-button {
  color: #2f2418;
  background: var(--store-gold);
  border-color: var(--store-gold);
  font-weight: 900;
}

.store-search-panel .btn:hover,
.store-action-button:hover {
  color: #fff;
  background: var(--store-gold-dark);
  border-color: var(--store-gold-dark);
}

.store-category-sidebar {
  background: #eee7d9;
  border-color: var(--store-border);
  box-shadow: 0 12px 28px rgba(70, 52, 35, 0.07);
}

.store-category-sidebar a {
  border-color: var(--store-border);
}

.store-category-sidebar a.active,
.store-category-sidebar a:hover {
  background: var(--store-green);
  border-color: var(--store-green);
}

.store-product-card {
  overflow: hidden;
  background: var(--store-card);
  border: 1px solid var(--store-border);
  box-shadow: 0 10px 25px rgba(70, 52, 35, 0.08);
}

.store-product-card:hover {
  border-color: rgba(22, 131, 74, 0.42);
  box-shadow: 0 20px 40px rgba(70, 52, 35, 0.14);
  transform: translateY(-5px);
}

.store-product-media {
  background: linear-gradient(145deg, #fff 0%, #f5f1e8 100%);
  border-bottom-color: var(--store-border);
}

.store-product-description {
  min-height: 2.7em;
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #75695e;
  font-size: 0.78rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.store-product-footer .product-price strong,
.product-info-panel .product-price > strong,
.cart-summary-total strong {
  color: var(--store-price);
}

.store-product-actions .store-add-cart,
.product-buy-box .btn-brand,
.rt-shipping-box .btn-brand,
.checkout-form-panel .btn-brand {
  color: #fff;
  background: var(--store-green);
  border-color: var(--store-green);
}

.store-product-actions .store-add-cart:hover,
.product-buy-box .btn-brand:hover,
.rt-shipping-box .btn-brand:hover,
.checkout-form-panel .btn-brand:hover {
  color: #fff;
  background: var(--store-green-dark);
  border-color: var(--store-green-dark);
}

.store-discount-badge {
  background: var(--store-orange);
}

.store-product-badge,
.store-badge {
  color: #443018;
  background: var(--store-gold);
}

.product-info-panel,
.product-gallery,
.cart-items-panel,
.cart-summary-card,
.checkout-form-panel,
.checkout-summary-card,
.checkout-success-card,
.checkout-order-review {
  background: var(--store-card);
  border-color: var(--store-border);
  box-shadow: var(--store-shadow);
}

.product-info-panel {
  border-top: 5px solid var(--store-green);
}

.product-buy-box {
  background: #f5faf6;
  border: 1px solid rgba(22, 131, 74, 0.25);
}

.btn-whatsapp-store {
  color: #fff;
  background: #128c4b;
  border-color: #128c4b;
  font-weight: 900;
}

.btn-whatsapp-store:hover {
  color: #fff;
  background: #0d713c;
  border-color: #0d713c;
}

.product-trust-card {
  border-color: var(--store-border);
}

.product-trust-card i {
  color: var(--store-green);
  background: var(--store-success);
}

.product-detail-tabs {
  gap: 0.45rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--store-border);
}

.product-detail-tabs .nav-link {
  color: var(--store-text-dark);
  background: #f3eee4;
  border: 1px solid var(--store-border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 900;
}

.product-detail-tabs .nav-link.active {
  color: #fff;
  background: var(--store-green);
  border-color: var(--store-green);
}

.product-detail-tab-content {
  min-height: 180px;
  padding-top: 1.35rem;
  color: #5f554d;
}

.cart-summary-card,
.checkout-summary-card {
  top: 118px;
  border-top: 5px solid var(--store-gold);
}

.rt-coupon-box,
.rt-shipping-box {
  background: #faf7f0;
  border-color: var(--store-border);
}

.cart-summary-total {
  margin: 0.7rem -0.25rem 1rem;
  padding: 1rem 0.25rem;
  background: var(--store-success);
  border-top: 1px solid rgba(22, 131, 74, 0.18);
  border-bottom: 1px solid rgba(22, 131, 74, 0.18);
}

.cart-summary-card > .btn-dourado,
.checkout-summary-card > .btn-dourado {
  min-height: 54px;
  color: #fff;
  background: var(--store-green);
  border-color: var(--store-green);
  box-shadow: 0 10px 22px rgba(15, 107, 59, 0.22);
  font-weight: 900;
}

.cart-summary-card > .btn-dourado:hover,
.checkout-summary-card > .btn-dourado:hover {
  background: var(--store-green-dark);
  border-color: var(--store-green-dark);
}

.store-deadline-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.1rem;
  margin-top: 1rem;
  color: #5d5148;
  background: var(--store-card);
  border: 1px solid var(--store-border);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(70, 52, 35, 0.07);
}

.store-deadline-card h3 {
  margin: 0 0 0.15rem;
  color: var(--store-text-dark);
  font-size: 1rem;
  font-weight: 900;
}

.store-deadline-card h3 i,
.store-deadline-card a i {
  color: var(--store-green);
}

.store-deadline-card span {
  display: grid;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--store-border);
  font-size: 0.82rem;
}

.store-deadline-card a {
  color: var(--store-green-dark);
  font-weight: 900;
  text-decoration: none;
}

.store-checkout-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--store-card);
  border: 1px solid var(--store-border);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(70, 52, 35, 0.06);
}

.store-checkout-progress span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 66px;
  padding: 0.65rem;
  color: #75695e;
  border-right: 1px solid var(--store-border);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.store-checkout-progress span:last-child {
  border-right: 0;
}

.store-checkout-progress b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--store-green-dark);
  background: var(--store-success);
  border-radius: 50%;
}

.store-checkout-progress .is-active {
  color: #fff;
  background: var(--store-green);
}

.store-checkout-progress .is-active b {
  color: var(--store-green-dark);
  background: #fff;
}

.store-checkout-progress .is-complete {
  color: var(--store-green-dark);
  background: var(--store-success);
}

.store-checkout-progress .is-complete b {
  color: #fff;
  background: var(--store-green);
}

.store-checkout-progress span {
  cursor: pointer;
}

.checkout-cart-review {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  margin-bottom: 0.8rem;
  color: #66584e;
  background: #faf7f0;
  border: 1px solid var(--store-border);
  border-radius: 12px;
}

.checkout-cart-review strong {
  color: var(--store-green-dark);
}

.checkout-review-heading {
  margin-bottom: 1rem;
}

.checkout-summary-title {
  color: var(--store-text-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.checkout-step-heading {
  background: #faf7f0;
  border: 1px solid var(--store-border);
}

.checkout-step-heading > span {
  background: var(--store-green);
}

.checkout-choice input:checked + span {
  background: var(--store-success);
  border-color: var(--store-green);
  box-shadow: 0 0 0 3px rgba(22, 131, 74, 0.1);
}

@media (max-width: 991.98px) {
  .store-benefit-bar .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-benefit-bar .container > div:nth-child(2) {
    border-right: 0;
  }

  .store-benefit-bar .container > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--store-border);
  }

  .cart-summary-card,
  .checkout-summary-card {
    top: auto;
  }
}

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

  .store-checkout-progress span {
    min-height: 48px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--store-border);
  }

  .store-checkout-progress span:last-child {
    border-bottom: 0;
  }

  .checkout-cart-review {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .store-benefit-bar {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .store-benefit-bar::-webkit-scrollbar {
    display: none;
  }

  .store-benefit-bar .container {
    width: max-content;
    min-width: 100%;
    grid-template-columns: repeat(4, 210px);
  }

  .store-benefit-bar .container > div {
    border-right: 1px solid var(--store-border);
    border-bottom: 0 !important;
  }

  .store-product-description {
    min-height: auto;
  }

  .product-detail-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.75rem;
  }

  .product-detail-tabs .nav-link {
    white-space: nowrap;
  }

  .cart-summary-card > .btn,
  .checkout-summary-card > .btn {
    min-height: 52px;
  }
}

/* Topo compacto da vitrine */
.store-page .store-hero {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 1rem 0;
  background: linear-gradient(110deg, var(--store-green-dark), #245f39 72%, #6d4c41);
}

.store-page .store-hero h1 {
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.store-top-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  max-width: 760px;
  min-height: 52px;
  padding: 0.35rem 0.4rem 0.35rem 0.75rem;
  margin: 0 0 1.25rem;
  background: var(--store-card);
  border: 1px solid var(--store-border);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(70, 52, 35, 0.08);
}

.store-top-search > i {
  color: var(--store-green);
  font-size: 1rem;
}

.store-top-search .form-control {
  min-height: 40px;
  padding-inline: 0.35rem;
  border: 0;
  box-shadow: none;
}

.store-top-search .btn {
  min-height: 42px;
  padding-inline: 1.15rem;
  border-radius: 10px;
}

.store-user-discount,
.product-profile-saving {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.35rem;
  color: var(--store-green-dark) !important;
  background: var(--store-success);
  border: 1px solid rgba(22, 131, 74, 0.2);
  border-radius: 999px;
  font-size: 0.75rem !important;
  font-weight: 900 !important;
  line-height: 1.2;
}

.store-user-discount {
  padding: 0.3rem 0.55rem;
}

.product-profile-saving {
  margin-top: 0.45rem;
  padding: 0.45rem 0.7rem;
}

.cart-item-benefit,
.checkout-item-benefit {
  display: block;
  margin-top: 0.3rem;
  color: var(--store-green-dark);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
}

.checkout-item-benefit {
  padding: 0.3rem 0.5rem;
  background: var(--store-success);
  border-radius: 8px;
  text-align: center;
}

@media (max-width: 575.98px) {
  .store-page .store-hero {
    min-height: 68px;
    padding: 0.8rem 0;
  }

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

  .store-top-search .btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* Imagens completas na vitrine, sem recorte */
.store-page .store-product-card .store-product-media {
  width: 100%;
  height: 270px;
  min-height: 270px;
  aspect-ratio: auto;
  padding: 0.85rem;
  overflow: hidden;
  background: #fff;
}

.store-page .store-product-card .store-product-media img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
}

.store-page .store-product-card:hover .store-product-media img {
  transform: none !important;
}

@media (max-width: 575.98px) {
  .store-page .store-product-card .store-product-media {
    height: 280px;
    min-height: 280px;
    aspect-ratio: auto;
  }
}

.checkout-digital-delivery {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  color: #244f31;
  border: 1px solid rgba(46, 107, 63, .22);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(46, 107, 63, .1), rgba(200, 155, 60, .08));
}

.checkout-digital-delivery > span {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  font-size: 1.45rem;
  border-radius: 15px;
  background: #2e6b3f;
  box-shadow: 0 10px 24px rgba(46, 107, 63, .2);
}

.checkout-digital-delivery h2,
.checkout-digital-delivery strong {
  margin: 0;
  color: #244f31;
}

.checkout-digital-delivery p,
.checkout-digital-delivery small {
  display: block;
  margin: .25rem 0 0;
  color: #5e6d62;
}

.checkout-digital-delivery.is-compact {
  margin-bottom: 1rem;
}
