:root {
  --paper: #fff6e7;
  --ink: #301E13;
  --amber: #df9636;
  --line: #301E13;
  --cream: #fffdf8;
}

.mtr-product-image img{
  width: 100%;
  height: 420px;
  border-radius: 24px;
  background-repeat: no-repeat;
  object-fit: cover;
  border: 2px solid #301E13;
  box-shadow: 4px 4px 0px 0px #301E13;
  transition: transform .35s ease, box-shadow .35s ease;
}

.mtr-product-card:hover .mtr-product-image img{
  box-shadow: 0px 0px 0px 0px #301E13;
}

.mtr-product-details { padding-top: 18px; }


.mtr-purchase-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 11px;
}

.mtr-price {
  margin: 0;
  color: var(--amber);
  font-size: clamp(14px, 1.2vw, 19px);
  letter-spacing: -.08em;
  white-space: nowrap;
}

.mtr-add-to-cart {
    font-family: "Bebas Neue", sans-serif;
  letter-spacing: .015em;
  text-transform: uppercase;
  color: var(--amber);
  cursor: pointer;
  font-size: clamp(16px, 1.2vw, 20px);
  letter-spacing: .09em;
  line-height: 1;
  white-space: nowrap;
  transition: color .2s ease, transform .2s ease;
}

.mtr-add-to-cart:hover, .mtr-add-to-cart:focus-visible { color: var(--ink); transform: translateX(-3px); }

.mtr-carousel-controls {
  margin-top: 56px;
}
.swiper-pagination{
  text-align: end;
}

.swiper-pagination-bullet { width: 8px; height: 8px; background: var(--ink); opacity: .25; }
.swiper-pagination-bullet-active { width: 22px; border-radius: 8px; background: var(--amber); opacity: 1; }
