/** Shopify CDN: Minification failed

Line 58:13 Expected identifier but found whitespace
Line 58:14 Unexpected ".3s"

**/
:root {
  --primary: #000000;
  --primary-light: #1a1a1a;
  --secondary: #f6660d;
  --accent: #f6660d;
  --highlight: #f6660d;
  --bg: #ffffff;
  --white: #ffffff;
  --text: #1f1f1f;
  --text-light: rgba(31,31,31,0.6);
  --promo: #000000;
  --promo-light: #1a1a1a;
  --radius: 20px;
  --radius-sm: 12px;
  --site-max-width: 1360px;
  --site-gutter: 20px;
  --shadow: 0 8px 20px rgba(0,0,0,0.05);
  --shadow-hover: 0 15px 35px rgba(0,0,0,0.1);
  --shadow-hero: 0 20px 40px rgba(0,0,0,0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: auto;
}

body {
  font-family: 'Oswald', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  text-transform: uppercase;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  position: relative;
}

main {
  width: 100%;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
  transition: .3s ease;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
.mine-collection-card__bottom strong,
.mine-shoppable__product strong {
  text-transform: uppercase;
}

.container {
  max-width: var(--site-max-width);
  width: 100%;
  margin: auto;
  padding: 0 var(--site-gutter);
}

/* ===================== */
/* TOPBAR / ANNOUNCEMENT */
/* ===================== */
.topbar {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.topbar a {
  background: var(--secondary);
  padding: 6px 16px;
  border-radius: 12px;
  margin-left: 12px;
  color: white;
  font-weight: 700;
  transition: all .2s ease;
}

.topbar a:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ========== */
/* HEADER     */
/* ========== */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 999;
  transition: transform .3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1px;
}

.logo img {
  max-height: 44px;
  width: auto;
}

.menu {
  display: flex;
  gap: 8px;
}

.menu a {
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .2s ease;
}

.menu a:hover {
  background: var(--bg);
  color: var(--secondary);
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-form {
  display: flex;
  align-items: center;
}

.search-form input {
  border-radius: 24px;
  padding: 10px 18px;
  border: 2px solid #eee;
  font-size: 13px;
  outline: none;
  width: 220px;
  transition: all .2s ease;
  background: var(--bg);
}

.search-form input:focus {
  border-color: var(--primary);
  width: 260px;
  background: var(--white);
}

.search-form button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
}

.cart-count {
  background: var(--secondary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: 2px;
}

/* ========== */
/* HERO       */
/* ========== */
.hero {
  padding-top: 6px;
}

.hero-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 50px;
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  position: relative;
}

.hero-box::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-left picture,
.hero-media-link {
  display: block;
  width: 100%;
}

.hero-box--image-only {
  padding: 0;
  min-height: 420px;
}

.hero-box--image-only .hero-left {
  width: 100%;
}

.hero-left img {
  width: 480px;
  max-width: 100%;
  border-radius: 16px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  object-fit: contain;
}

.hero-box--image-only .hero-left img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 24px;
  filter: none;
  object-fit: cover;
  display: block;
}

.hero-box--image-only .hero-left picture,
.hero-box--image-only .hero-media-link {
  height: 100%;
}

.hero-right {
  position: relative;
  flex: 1;
}

.badge {
  position: absolute;
  top: -30px;
  left: -30px;
  background: var(--highlight);
  color: black;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(255,216,77,0.5);
  transform: rotate(-10deg);
  z-index: 2;
  line-height: 1.1;
}

.hero h1 {
  font-size: 64px;
  line-height: 1;
  margin: 24px 0;
  font-weight: 900;
  letter-spacing: -2px;
}

.price {
  margin-top: 16px;
}

.price .old {
  text-decoration: line-through;
  opacity: .5;
  font-size: 18px;
  display: block;
}

.price .new {
  font-size: 36px;
  font-weight: 900;
  color: var(--highlight);
}

.cta {
  background: var(--highlight);
  padding: 18px 36px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 24px;
  font-weight: 900;
  color: black;
  font-size: 17px;
  transition: all .2s ease;
  box-shadow: 0 4px 15px rgba(255,216,77,0.4);
}

.cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255,216,77,0.5);
  background: #f6660d;
}

/* ============= */
/* CATEGORIES    */
/* ============= */
.categories {
  padding: 12px 0;
}

.categories-scroll {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.categories-scroll::-webkit-scrollbar {
  display: none;
}

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 100px;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s ease;
  scroll-snap-align: start;
}

.cat-item img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e0e0e0;
  transition: all .2s ease;
}

.cat-item:hover {
  transform: translateY(-4px);
}

.cat-item:hover img {
  border-color: var(--secondary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ========== */
/* PRODUCTS   */
/* ========== */
.products {
  padding: 50px 0 30px;
}

.products.container {
  padding-left: 0;
  padding-right: 0;
}

.products h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
  color: var(--primary);
  padding: 0 var(--site-gutter);
}

.products-swiper {
  padding-bottom: 50px;
}

.products h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
  color: var(--primary);
}

.products-swiper {
  padding-bottom: 50px;
}

/* ========== */
/* CARD       */
/* ========== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: .3s ease;
  height: 100%;
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card:hover img {
  transform: scale(1.05);
}

.img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 14px;
  background: var(--bg);
}

.img-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.badge-sale {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--secondary);
  color: white;
  padding: 5px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(246,102,13,0.3);
}

.card .stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 14px;
}

.card h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card .price {
  margin-bottom: 10px;
}

.old-price {
  text-decoration: line-through;
  opacity: .4;
  font-size: 13px;
  margin-right: 6px;
}

.current-price {
  font-weight: 900;
  font-size: 20px;
  color: var(--primary);
}

.buy {
  background: var(--secondary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 24px;
  margin-top: 8px;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  transition: all .2s ease;
  width: 100%;
}

.buy:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* ========== */
/* PROMO      */
/* ========== */
.promo {
  padding: 30px 0;
}

.promo-box {
  background: linear-gradient(135deg, var(--promo), var(--promo-light));
  color: white;
  border-radius: 24px;
  padding: 44px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}

.promo-box::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.promo-box h2 {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.promo-box p {
  opacity: .8;
  margin-top: 6px;
  font-size: 16px;
}

.promo-badge {
  background: var(--accent);
  color: black;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(255,216,77,0.4);
}

.promo .right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promo .cta {
  background: var(--accent);
  color: black;
}

.countdown {
  font-size: 28px;
  font-weight: 900;
  margin-top: 10px;
  color: var(--accent);
}

/* ============== */
/* FEATURE CARDS  */
/* ============== */
.features {
  padding: 30px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature {
  height: 160px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  color: white;
  font-size: 17px;
  transition: all .2s ease;
  box-shadow: var(--shadow);
}

.feature img {
  width: 40px;
  height: 40px;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* ============ */
/* BIG BANNER   */
/* ============ */
.big-banner {
  padding: 4px 0;
}

.big-banner img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.big-banner-placeholder {
  width: 100%;
  height: 300px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ddd, #ccc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #999;
}

/* ====== */
/* BLOG   */
/* ====== */
.blog {
  padding: 60px 0;
}

.blog h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--primary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all .2s ease;
  box-shadow: var(--shadow);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.blog-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-card h3 {
  padding: 20px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.blog-date {
  padding: 0 20px 20px;
  font-size: 13px;
  opacity: .4;
}

/* ====== */
/* FAQ    */
/* ====== */
.faq {
  padding: 40px 0 24px;
}

.faq h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--primary);
}

.faq details {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq summary {
  padding: 20px 24px;
  font-weight: 800;
  cursor: pointer;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}

.faq summary:hover {
  background: var(--bg);
}

.faq summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

.faq details[open] summary::after {
  content: '−';
}

.faq details p {
  padding: 0 24px 20px;
  opacity: .65;
  font-size: 15px;
  line-height: 1.7;
}

/* =========== */
/* NEWSLETTER  */
/* =========== */
.newsletter {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
}

.newsletter p {
  opacity: .7;
  margin-bottom: 24px;
}

.newsletter form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 520px;
  margin: auto;
}

.newsletter input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 30px;
  border: none;
  font-size: 15px;
  outline: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.newsletter button {
  background: var(--accent);
  color: black;
  border: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(255,216,77,0.4);
}

.newsletter button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255,216,77,0.5);
}

/* ========= */
/* FOOTER    */
/* ========= */
.footer {
  background: var(--primary);
  color: white;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 14px;
  opacity: .6;
  white-space: pre-line;
  line-height: 1.8;
}

.footer-col a {
  font-size: 14px;
  opacity: .6;
  transition: all .2s;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  opacity: .4;
}

/* ============ */
/* SKELETON     */
/* ============ */
.skeleton {
  background: linear-gradient(90deg, #eee 25%, #ddd 37%, #eee 63%);
  background-size: 400% 100%;
  animation: loading 1.4s infinite;
  border-radius: 8px;
}

@keyframes loading {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

/* ============ */
/* REVEAL ANIM  */
/* ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: .6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============ */
/* SWIPER OVERR */
/* ============ */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
  background: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* =================== */
/* PRODUCT PAGE        */
/* =================== */
.product-page {
  padding: 28px 0 50px;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #8e8e8e;
  font-size: 13px;
}

.product-breadcrumb a {
  color: inherit;
}

.product-breadcrumb span:last-child {
  color: #4b4b4b;
}

.product-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
}

.product-gallery {
  max-width: 560px;
  position: relative;
}

.product-gallery__zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #ececec;
  color: #000;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: transform .2s ease, background .2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.product-gallery__zoom:hover {
  background: #f6660d;
  color: #fff;
  transform: scale(1.06);
}

.product-gallery__frame {
  background: #fff;
  border: 1px solid #ece6e0;
  border-radius: 22px;
  padding: 18px;
  cursor: zoom-in;
  overflow: hidden;
}

.product-gallery img#main-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: none;
}

/* LIGHTBOX */
.product-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-lightbox.is-open {
  display: flex;
}

.product-lightbox__content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-lightbox__content img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
}

.product-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
  display: grid;
  place-items: center;
}

.product-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.product-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease;
}

.product-lightbox__arrow--prev { left: 16px; }
.product-lightbox__arrow--next { right: 16px; }

.product-lightbox__arrow:hover {
  background: rgba(255, 102, 13, 0.85);
}

.product-lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .product-lightbox__arrow {
    width: 40px;
    height: 40px;
    font-size: 32px;
  }
  .product-lightbox__arrow--prev { left: 8px; }
  .product-lightbox__arrow--next { right: 8px; }
}

.thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.product-thumb {
  width: 80px;
  height: 80px;
  padding: 0;
  border-radius: 14px;
  border: 2px solid transparent;
  background: #fff;
  cursor: pointer;
  transition: all .2s;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumb:hover,
.product-thumb.is-active {
  border-color: var(--primary);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.product-rating__stars {
  color: #ffc400;
  letter-spacing: 1px;
  font-size: 15px;
}

.product-rating small {
  color: #777;
  font-size: 13px;
  font-weight: 700;
}

.product-info h1 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 14px;
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.product-price .old-price {
  color: #8a8a8a;
  text-decoration: line-through;
  font-size: 16px;
  font-weight: 700;
}

.product-price .current-price {
  color: var(--primary);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.product-price__installments {
  color: #666;
  font-size: 14px;
  font-weight: 700;
}

.product-form {
  display: grid;
  gap: 14px;
}

.product-linked {
  display: grid;
  gap: 10px;
}

.product-linked__header strong {
  display: block;
  color: #444;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.product-linked__selected {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff4e8;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.product-linked__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(102px, 1fr));
  gap: 10px;
}

.product-linked__item {
  min-width: 0;
  padding: 10px 10px 12px;
  border: 1px solid #ece2d7;
  border-radius: 18px;
  background: #fff;
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.product-linked__item--variant {
  appearance: none;
  width: 100%;
}

.product-linked__item img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 12px;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.product-linked__item span {
  max-width: 100%;
  color: #404040;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.product-linked__item:hover,
.product-linked__item.is-active {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.product-linked__grid--compact .product-linked__item span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.4em;
}

.product-linked__item.is-active img {
  box-shadow: none;
}

.product-linked__item.is-active span {
  color: var(--primary);
}

.product-form__row {
  display: flex;
  gap: 12px;
  align-items: end;
}

.product-form__row > * {
  min-width: 0;
}

.product-qty {
  flex: 0 0 92px;
  display: grid;
  gap: 6px;
  color: #666;
  font-size: 12px;
  font-weight: 800;
}

.product-qty__control {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  height: 48px;
  border: 1px solid #ddd7d0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.product-qty__button {
  width: 34px;
  height: 46px;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
}

.product-qty input {
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  appearance: textfield;
  background: #fff;
}

.product-qty input::-webkit-outer-spin-button,
.product-qty input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.product-form__submit {
  flex: 1 1 auto;
  display: flex;
  align-items: end;
}

.product-info .buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.product-info .buy:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.product-shipping-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(276px, auto);
  gap: 12px;
  align-items: start;
}

.product-shipping {
  padding: 10px;
  border: 1px solid #eee3d6;
  border-radius: 14px;
  background: #fff;
}

.product-shipping__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.product-shipping__header strong {
  font-size: 12px;
  font-weight: 900;
}

.product-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(84px, 1fr));
  gap: 8px;
}

.product-trust__item {
  min-height: 96px;
  padding: 10px 8px;
  border: 1px solid #eee3d6;
  border-radius: 14px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 8px;
  align-items: center;
}

.product-trust__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fff3e8;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-trust__icon svg {
  width: 18px;
  height: 18px;
}

.product-trust__item span:last-child {
  color: #5a463b;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.product-shipping__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px;
  gap: 6px;
}

.product-shipping__form input {
  height: 36px;
  border: 1px solid #ddd7d0;
  border-radius: 9px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
}

.product-shipping__form button {
  height: 36px;
  border: 0;
  border-radius: 9px;
  background: #d8d1ca;
  color: #242424;
  font-size: 11px;
  font-weight: 900;
}

.product-shipping__note {
  margin: 6px 0 0;
  color: #6a6a6a;
  font-size: 10px;
  line-height: 1.3;
  font-style: italic;
}

.product-shipping__feedback {
  margin-top: 6px;
  color: #6a6a6a;
  font-size: 11px;
  line-height: 1.4;
}

.product-shipping__rates {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.product-shipping__rate-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.product-shipping__rate {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid #ececec;
  border-radius: 8px;
  background: #fff;
  font-size: 12px;
  color: #242424;
  width: 100%;
  min-height: 40px;
}

.product-shipping__rate-name {
  flex: 1 1 0;
  min-width: 0;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.product-shipping__rate-days {
  flex: 0 0 auto;
  font-size: 11px;
  color: #6a6a6a;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  max-width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-shipping__rate-price {
  flex: 0 0 auto;
  font-weight: 800;
  color: #242424;
  white-space: nowrap;
  text-align: right;
  min-width: 60px;
  font-size: 13px;
}

.product-shipping__rate-total {
  margin: 4px 0 0;
  font-size: 11px;
  color: #6a6a6a;
  text-align: right;
}

.product-shipping__rate-total strong {
  color: #242424;
  font-weight: 800;
}

.product-accordion {
  padding: 8px 0 50px;
  display: grid;
  gap: 18px;
}

.product-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  grid-template-areas:
    "description description"
    "banner video";
  gap: 18px;
  align-items: stretch;
}

.product-story__banner {
  grid-area: banner;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #eee3d6;
}

.product-story__banner picture,
.product-story__banner img {
  display: block;
  width: 100%;
  height: 100%;
}

.product-story__banner img {
  object-fit: cover;
}

.product-story__description,
.product-story__video {
  min-width: 0;
}

.product-story__description {
  grid-area: description;
}

.product-story__video {
  grid-area: video;
}

.product-story__description-inner,
.product-story__video {
  height: 100%;
  padding: 22px;
  border-radius: 24px;
  background: #fff;
}

.product-story__description-inner {
  border: 2px solid #000000;
  color: #4d4d4d;
  font-size: 15px;
  line-height: 1.8;
}

.product-story__video {
  border: 0;
}

.product-story__title {
  margin: 0 0 14px;
  color: #2f2f2f;
  font-size: 26px;
  font-weight: 900;
}

.product-story__description-inner > :first-child {
  margin-top: 0;
}

.product-story__description-inner > :last-child {
  margin-bottom: 0;
}

.product-story__video {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-story__video video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 22px;
}

.product-accordion__box {
  padding: 24px;
  border: 1px solid #eee3d6;
  border-radius: 20px;
  background: #fff;
}

.product-accordion__item {
  border-bottom: 1px solid #efe5da;
}

.product-accordion__item:last-child {
  border-bottom: 0;
}

.product-accordion__item summary {
  position: relative;
  list-style: none;
  padding: 18px 34px 18px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  color: #282828;
  text-transform: uppercase;
}

.product-accordion__item summary::-webkit-details-marker {
  display: none;
}

.product-accordion__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
}

.product-accordion__item[open] summary::after {
  content: '−';
}

.product-accordion__summary-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.product-accordion__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fff4e8;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px #f4d4b8;
}

.product-accordion__title {
  line-height: 1.1;
}

.product-accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s ease, opacity .24s ease;
  opacity: .2;
}

.product-accordion__item[open] .product-accordion__body {
  grid-template-rows: 1fr;
  opacity: 1;
}

.product-accordion__content {
  min-height: 0;
  overflow: hidden;
  padding: 0 0 18px 46px;
  color: #505050;
  line-height: 1.7;
  font-size: 14px;
}

.product-accordion__item[open] summary {
  color: var(--primary);
}

.product-accordion__item[open] .product-accordion__icon {
  background: var(--primary);
  color: #fff;
  box-shadow: none;
}

.product-accordion__note {
  margin: 0 0 12px;
  color: #777;
  font-size: 13px;
}

.product-accordion__content p:first-child {
  margin-top: 0;
}

.product-nutrition__content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
}

.product-nutrition__content th,
.product-nutrition__content td {
  padding: 10px 12px;
  border: 1px solid #eadfd2;
  text-align: left;
}

.product-nutrition__content th {
  background: #fff5eb;
  font-weight: 900;
}

/* =================== */
/* COLLECTION PAGE     */
/* =================== */
.collection-page {
  padding: 50px 0;
}

.collection-page {
  padding-top: 22px;
  padding-bottom: 56px;
}

.collection-page__banner {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
  border-radius: 28px;
  overflow: hidden;
}

.collection-page__banner img {
  display: block;
  width: 100%;
  height: clamp(180px, 24vw, 300px);
  object-fit: cover;
}

.collection-page__heading {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.collection-page h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  margin-bottom: 10px;
}

.collection-desc {
  opacity: .68;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.collection-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  justify-content: center;
}

.empty {
  text-align: center;
  padding: 60px;
  opacity: .4;
  font-size: 20px;
}

/* =================== */
/* CART PAGE           */
/* =================== */
.cart-page {
  padding: 42px 0 68px;
}

.cart-page__hero {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(246, 102, 13, 0.16));
}

.cart-page__hero-logo {
  width: 82px;
  height: auto;
}

.cart-page__hero-content p {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
}

.cart-page__hero-content h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  font-weight: 900;
  color: #222;
}

.cart-page__hero-content span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.7);
}

.cart-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .8fr);
  gap: 22px;
  align-items: start;
}

.cart-page__items {
  display: grid;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid #ece4dc;
  border-radius: 24px;
  background: #fff;
}

.cart-item__media {
  width: 112px;
  height: 112px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #efe8df;
  overflow: hidden;
}

.cart-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  border-radius: 16px;
}

.cart-item__content {
  display: grid;
  gap: 14px;
}

.cart-item__top,
.cart-item__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cart-item-info h3 {
  font-size: 18px;
  font-weight: 800;
  color: #242424;
}

.cart-item-info .variant {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(34, 34, 34, 0.5);
}

.cart-item-info .price {
  color: var(--primary);
  font-weight: 800;
  margin-top: 8px;
}

.cart-item__remove {
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
}

.cart-item-qty {
  display: grid;
  grid-template-columns: 36px 60px 36px;
  align-items: center;
  height: 44px;
  border: 1px solid #ddd6cf;
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}

.cart-item-qty button {
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.cart-item-qty input {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 0;
  border: 0;
  text-align: center;
  font-weight: 700;
  appearance: textfield;
  background: transparent;
}

.cart-item-total {
  font-weight: 900;
  font-size: 20px;
  color: var(--primary);
}

.cart-page__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.cart-page__continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid #e1d9d1;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  color: #373737;
}

.cart-summary {
  position: sticky;
  top: 110px;
}

.cart-summary__card {
  padding: 28px 24px;
  border-radius: 28px;
  background: linear-gradient(145deg, #000000, #1a1a1a);
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cart-summary__logo {
  width: 84px;
  height: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.cart-summary__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.cart-summary h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.02;
  color: #fff;
}

.cart-summary__lead {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.cart-summary__rows {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.cart-summary__row,
.cart-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-summary__row {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.cart-summary__row strong {
  color: #fff;
}

.cart-summary__total {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 18px;
  font-weight: 800;
}

.cart-summary__total strong {
  font-size: 28px;
  color: #fff;
}

.cart-summary__checkout {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-summary small {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.cart-empty {
  padding: 42px 28px;
  border-radius: 28px;
  border: 1px dashed #e0d5cb;
  background: linear-gradient(135deg, #fff, #fff7f3);
  text-align: center;
}

.cart-empty__logo {
  width: 92px;
  height: auto;
  margin-bottom: 16px;
}

.cart-empty .empty {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
}

.cart-empty span {
  display: block;
  margin: 10px 0 20px;
  color: rgba(34, 34, 34, 0.68);
  font-size: 14px;
}

.btn-secondary {
  background: var(--primary);
  border: 0;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}

.btn-secondary:hover {
  background: #1a1a1a;
}

@media (max-width: 960px) {
  .cart-page__layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .cart-page {
    padding: 28px 0 52px;
  }

  .cart-page__hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .cart-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .cart-item__media {
    width: 88px;
    height: 88px;
  }

  .cart-item__top,
  .cart-item__bottom,
  .cart-page__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-summary__card {
    padding: 22px 18px;
  }

  .cart-summary__total strong {
    font-size: 24px;
  }
}

/* =================== */
/* PAGE CONTENT        */
/* =================== */
.page-content {
  padding: 50px 0;
}

.page-content h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
}

.page-body {
  line-height: 1.8;
  opacity: .7;
  font-size: 16px;
}

/* =================== */
/* BLOG PAGE           */
/* =================== */
.blog-page {
  padding: 50px 0;
}

.blog-page h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 28px;
}

.blog-excerpt {
  padding: 0 20px 20px;
  font-size: 14px;
  opacity: .5;
  line-height: 1.5;
}

/* =================== */
/* ARTICLE PAGE        */
/* =================== */
.article-page {
  padding: 50px 0;
}

.article-page h1 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 10px;
}

.article-meta {
  opacity: .4;
  margin-bottom: 20px;
}

.article-image {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.article-body {
  line-height: 1.8;
  font-size: 17px;
}

.article-body h2 {
  margin-top: 28px;
  font-size: 24px;
}

.article-body img {
  border-radius: 14px;
  margin: 20px 0;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.article-nav a {
  font-weight: 800;
  color: var(--primary);
}

/* =================== */
/* AUTH PAGES          */
/* =================== */
.auth-page {
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.auth-box {
  max-width: 440px;
  width: 100%;
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-hover);
}

.auth-box h1 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 24px;
  text-align: center;
}

.auth-box input {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid #eee;
  border-radius: 14px;
  font-size: 15px;
  margin-bottom: 14px;
  outline: none;
  transition: border .2s;
}

.auth-box input:focus {
  border-color: var(--primary);
}

.auth-box .cta {
  width: 100%;
  text-align: center;
  display: block;
}

.auth-box .errors {
  background: #fff0f0;
  color: var(--secondary);
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}

.auth-link {
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
  opacity: .6;
}

.auth-link a {
  color: var(--primary);
  font-weight: 800;
}

/* =================== */
/* ACCOUNT PAGE        */
/* =================== */
.account-page {
  padding: 50px 0;
}

.account-page h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
}

.account-page h2 {
  font-size: 22px;
  font-weight: 900;
  margin: 28px 0 14px;
}

.account-info {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.order-item a {
  margin-left: auto;
  font-weight: 800;
  color: var(--primary);
}

.account-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

/* =================== */
/* ORDER PAGE          */
/* =================== */
.order-page {
  padding: 50px 0;
}

.order-page h1 {
  font-size: 32px;
  font-weight: 900;
}

.order-date {
  opacity: .4;
  margin-bottom: 20px;
}

.order-items {
  margin-bottom: 20px;
}

.order-total {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  text-align: right;
  font-size: 20px;
  box-shadow: var(--shadow);
}

/* =================== */
/* ADDRESSES PAGE      */
/* =================== */
.addresses-page {
  padding: 50px 0;
}

.addresses-page h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
}

.addresses-page .cta {
  display: inline-block;
  margin-bottom: 24px;
}

.addresses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.address-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.address-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}

.address-card p {
  font-size: 14px;
  opacity: .6;
}

.address-actions {
  margin-top: 14px;
  display: flex;
  gap: 14px;
}

.address-actions a {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
}

/* =================== */
/* LIST COLLECTIONS    */
/* =================== */
.list-collections {
  padding: 50px 0;
}

.list-collections h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 24px;
}

.collection-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all .2s ease;
  box-shadow: var(--shadow);
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.collection-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.collection-card h3 {
  padding: 20px;
  font-size: 17px;
  font-weight: 800;
}

/* =================== */
/* PASSWORD PAGE       */
/* =================== */
.password-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.password-box {
  text-align: center;
  color: white;
  max-width: 420px;
  padding: 48px;
}

.password-box h1 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 10px;
}

.password-box p {
  margin-bottom: 28px;
  opacity: .6;
}

.password-box input {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  font-size: 15px;
  margin-bottom: 14px;
}

.password-box .cta {
  width: 100%;
  text-align: center;
  display: block;
}

/* =================== */
/* GIFT CARD PAGE      */
/* =================== */
.gift-card-page {
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.gift-card-box {
  text-align: center;
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  max-width: 520px;
  box-shadow: var(--shadow-hover);
}

.gift-card-box h1 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 20px;
}

.gift-card-box img {
  border-radius: 16px;
  margin-bottom: 20px;
}

.gift-card-code {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--primary);
}

.gift-card-value {
  font-size: 32px;
  font-weight: 900;
  color: var(--secondary);
  margin-top: 10px;
}

/* ============ */
/* RESPONSIVE   */
/* ============ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-box {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }

  .hero-left img {
    width: 100%;
    max-width: 320px;
  }

  .hero-box--image-only {
    padding: 0;
    min-height: 420px;
  }

  .hero-box--image-only .hero-left img {
    max-width: none;
    min-height: 420px;
  }

  .hero-right {
    margin-top: 24px;
  }

  .badge {
    position: static;
    margin: 0 auto 20px;
    transform: rotate(0deg);
  }

  .hero h1 {
    font-size: 38px;
  }

  .price .new {
    font-size: 28px;
  }

  .menu {
    display: none;
  }

  .search-form input {
    width: 140px;
  }

  .search-form input:focus {
    width: 180px;
  }

  .promo-box {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 32px;
  }

  .promo .right {
    flex-direction: row;
    gap: 14px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature {
    height: 120px;
    font-size: 15px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .products h2,
  .blog h2,
  .faq h2 {
    font-size: 26px;
  }

  .product-page.container,
  .product-accordion.container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-page-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-gallery {
    max-width: none;
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }

  .product-gallery img#main-image {
    height: auto;
    max-height: 420px;
  }

  .product-info h1 {
    font-size: 30px;
  }

  .product-form__row {
    flex-direction: column;
    align-items: stretch;
  }

  .product-form__submit {
    display: block;
  }

  .product-linked__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-shipping-row,
  .product-shipping__header,
  .product-shipping__form {
    grid-template-columns: 1fr;
    display: grid;
  }

  .product-shipping__header {
    justify-content: start;
  }

  .product-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-trust__item {
    min-height: 88px;
    padding: 8px 6px;
  }

  .product-story {
    grid-template-columns: 1fr;
    grid-template-areas:
      "banner"
      "description"
      "video";
  }

  .product-story__description-inner,
  .product-story__video {
    padding: 18px;
    border-radius: 20px;
  }

  .product-story__title {
    font-size: 22px;
  }

  .product-story__banner {
    min-height: 180px;
  }

  .product-story__video video {
    width: 100%;
    min-height: 0;
    aspect-ratio: 9 / 16;
  }

  .product-accordion {
    padding-bottom: 40px;
  }

  .product-accordion__box {
    padding: 18px;
  }

  .product-accordion__item summary {
    font-size: 15px;
  }

  .product-accordion__summary-main {
    gap: 10px;
  }

  .product-accordion__icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .product-accordion__content {
    padding-left: 0;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cart-item {
    flex-wrap: wrap;
  }

  .cart-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-footer .cta {
    text-align: center;
  }

  .addresses-grid {
    grid-template-columns: 1fr;
  }

  .order-item {
    flex-wrap: wrap;
  }

  .account-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
  }
}

/* =================== */
/* REVENDEDOR PAGE V2  */
/* =================== */

/* --- Variáveis locais --- */
:root {
  --rev-red: #000000;
  --rev-red-dark: #1a1a1a;
  --rev-red-light: #f6660d;
  --rev-cream: #fff8df;
  --rev-gray: #f5f5f5;
  --rev-text: #1a1a1a;
  --rev-text-light: #666;
  --rev-border: #e5e5e5;
}

/* --- Container base --- */
.revenda-container {
  max-width: 1160px;
  width: calc(100% - 48px);
  margin: 0 auto;
}

/* ========== 1. HERO ========== */
.revenda-hero {
  background: linear-gradient(135deg, var(--rev-red-dark) 0%, var(--rev-red) 100%);
  padding: 100px 0 80px;
  color: white;
}

.revenda-hero__grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}

.revenda-hero__content h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.revenda-hero__sub {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 420px;
  margin: 0;
}

/* --- Form Card --- */
.revenda-form-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.revenda-form-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--rev-red);
  margin: 0 0 4px;
}

.revenda-form-card__hint {
  font-size: 14px;
  color: var(--rev-text-light);
  margin: 0 0 24px;
}

.revenda-form-field {
  margin-bottom: 16px;
}

.revenda-form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--rev-text);
  margin-bottom: 6px;
}

.revenda-form-field input,
.revenda-form-field select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid var(--rev-border);
  border-radius: 10px;
  font-size: 15px;
  background: #fafafa;
  transition: all 0.2s;
}

.revenda-form-field input:focus,
.revenda-form-field select:focus {
  outline: none;
  border-color: var(--rev-red);
  background: white;
}

.revenda-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.revenda-btn-primary {
  width: 100%;
  height: 52px;
  background: var(--rev-red);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
}

.revenda-btn-primary:hover {
  background: var(--rev-red-dark);
  transform: translateY(-1px);
}

/* ========== 2. PROVA SOCIAL (Logos) ========== */
.revenda-social {
  padding: 48px 0;
  background: white;
  border-bottom: 1px solid var(--rev-border);
  overflow: hidden;
}

.revenda-section-label {
  text-align: center;
  font-size: 14px;
  color: var(--rev-text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.revenda-logos-track {
  overflow: hidden;
  position: relative;
}

.revenda-logos-list {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: scroll-logos 30s linear infinite;
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.revenda-logo-item {
  flex-shrink: 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.revenda-logo-item:hover {
  opacity: 1;
}

.revenda-logo-item img {
  max-height: 40px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.revenda-logo-item:hover img {
  filter: grayscale(0%);
}

/* ========== 3. BENEFÍCIOS ========== */
.revenda-benefits {
  padding: 80px 0;
  background: white;
}

.revenda-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.revenda-benefit-card {
  background: white;
  border: 1px solid var(--rev-border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.revenda-benefit-card:hover {
  border-color: var(--rev-red);
  box-shadow: 0 10px 30px rgba(201,0,0,0.08);
  transform: translateY(-4px);
}

.revenda-benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--rev-gray);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--rev-red);
}

.revenda-benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--rev-text);
  margin: 0 0 10px;
}

.revenda-benefit-card p {
  font-size: 14px;
  color: var(--rev-text-light);
  line-height: 1.5;
  margin: 0;
}

/* ========== 4. BLOCO VISUAL ========== */
.revenda-split {
  padding: 100px 0;
  background: var(--rev-cream);
}

.revenda-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.revenda-split__image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.revenda-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.revenda-split__placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #ddd, #eee);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-weight: 600;
}

.revenda-split__content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--rev-text);
  margin: 0 0 20px;
}

.revenda-split__content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--rev-text-light);
  margin: 0 0 28px;
}

.revenda-btn-outline {
  display: inline-flex;
  padding: 14px 28px;
  border: 2px solid var(--rev-red);
  color: var(--rev-red);
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
}

.revenda-btn-outline:hover {
  background: var(--rev-red);
  color: white;
}

/* ========== 5. PORTFÓLIO ========== */
.revenda-portfolio {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.revenda-portfolio__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--rev-text);
  margin: 0 0 40px;
}

.revenda-portfolio__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.revenda-tag {
  display: inline-flex;
  padding: 12px 24px;
  background: var(--rev-gray);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  color: var(--rev-text);
  transition: all 0.2s;
}

.revenda-tag:hover {
  background: var(--rev-red);
  color: white;
}

/* ========== 6. EM AÇÃO ========== */
.revenda-media {
  padding: 80px 0;
  background: var(--rev-gray);
}

.revenda-media__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--rev-text);
  text-align: center;
  margin: 0 0 40px;
}

.revenda-media__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.revenda-media__item {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.revenda-media__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.revenda-media__item:hover img {
  transform: scale(1.05);
}

.revenda-media__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
}

/* ========== 7. FAQ ========== */
.revenda-faq {
  padding: 80px 0;
  background: white;
}

.revenda-faq__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--rev-text);
  text-align: center;
  margin: 0 0 40px;
}

.revenda-faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.revenda-faq__item {
  background: white;
  border: 1px solid var(--rev-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s;
}

.revenda-faq__item:hover {
  border-color: #ddd;
}

.revenda-faq__item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  color: var(--rev-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.revenda-faq__item summary::-webkit-details-marker {
  display: none;
}

.revenda-faq__item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--rev-red);
  font-weight: 300;
}

.revenda-faq__item[open] summary::after {
  content: '−';
}

.revenda-faq__item p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--rev-text-light);
}

/* ========== 8. CTA FINAL ========== */
.revenda-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--rev-red-dark), var(--rev-red));
  color: white;
  text-align: center;
}

.revenda-cta h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin: 0 0 16px;
}

.revenda-cta p {
  font-size: 18px;
  opacity: 0.9;
  margin: 0 0 32px;
}

.revenda-btn-large {
  display: inline-flex;
  padding: 18px 40px;
  background: white;
  color: var(--rev-red);
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.revenda-btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ========== RESPONSIVO ========== */
@media (max-width: 1024px) {
  .revenda-hero__grid,
  .revenda-split__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .revenda-hero {
    padding: 60px 0;
  }

  .revenda-hero__content {
    text-align: center;
  }

  .revenda-hero__sub {
    max-width: 100%;
  }

  .revenda-form-card {
    max-width: 480px;
    margin: 0 auto;
  }

  .revenda-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .revenda-media__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .revenda-container {
    width: calc(100% - 32px);
  }

  .revenda-benefits__grid {
    grid-template-columns: 1fr;
  }

  .revenda-form-row {
    grid-template-columns: 1fr;
  }

  .revenda-media__grid {
    grid-template-columns: 1fr;
  }

  .revenda-split__grid {
    gap: 32px;
  }

  .revenda-benefits,
  .revenda-split,
  .revenda-portfolio,
  .revenda-media,
  .revenda-faq {
    padding: 60px 0;
  }

  .revenda-cta {
    padding: 80px 0;
  }

  .revenda-tag {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* --- Revenda premium refinements --- */
.revenda-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(246, 102, 13, 0.14), transparent 28%),
    linear-gradient(135deg, #000000 0%, #1a1a1a 55%, #2a2a2a 100%);
}

.revenda-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}

.revenda-hero__content {
  position: relative;
  z-index: 1;
}

.revenda-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.revenda-hero__logo {
  width: 124px;
  height: auto;
  margin: 0 0 20px;
  filter: brightness(0) invert(1);
}

.revenda-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.revenda-hero__highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 700;
}

.revenda-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.revenda-hero__steps {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  max-width: 520px;
}

.revenda-hero__step {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.revenda-hero__step strong {
  display: block;
  font-size: 15px;
  color: #fff;
}

.revenda-hero__step span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.revenda-btn-primary--hero {
  width: auto;
  min-width: 250px;
  padding: 0 26px;
  border-radius: 999px;
}

.revenda-hero__actions .revenda-btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  border-radius: 999px;
}

.revenda-hero__actions .revenda-btn-outline:hover {
  background: #fff;
  color: var(--rev-red-dark);
}

.revenda-form-card {
  position: relative;
  z-index: 1;
  padding-top: 28px;
  border: 1px solid rgba(201, 0, 0, 0.08);
}

.revenda-form-card__progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.revenda-form-card__progress span {
  flex: 1 1 0;
  height: 4px;
  border-radius: 999px;
  background: #ddd7d0;
}

.revenda-form-card__progress span.is-active {
  background: var(--primary);
}

.revenda-form-alert {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.revenda-form-alert--success {
  background: #edf8ef;
  color: #1a1a1a;
  border: 1px solid #cae8d0;
}

.revenda-form-alert--error {
  background: #fff1f1;
  color: #a12626;
  border: 1px solid #f0d0d0;
}

.revenda-form-note {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--rev-text-light);
}

.revenda-benefit-card,
.revenda-media__item,
.revenda-faq__item,
.revenda-tag,
.revenda-logo-item,
.revenda-portfolio-card,
.revenda-about-card {
  border-radius: 20px;
}

.revenda-benefit-card {
  box-shadow: 0 14px 30px rgba(0,0,0,0.03);
}

.revenda-section-label {
  margin-bottom: 14px;
  font-weight: 900;
  color: rgba(26, 26, 26, 0.56);
}

.revenda-logos-track,
.revenda-logos-list {
  animation: none;
}

.revenda-logos-carousel {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 4px;
  align-items: center;
}

.revenda-logos-swiper {
  width: 100%;
  min-width: 0;
  padding: 4px 0;
  overflow: hidden;
}

.revenda-logos-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.revenda-logos-swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-shrink: 0;
}

.revenda-logos-arrow {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--primary);
  font-size: 46px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.revenda-logos-arrow span {
  transform: translateY(-2px);
}

.revenda-logo-item {
  width: 100%;
  min-height: 138px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  transition: transform 0.2s ease;
}

.revenda-logo-item:hover {
  transform: translateY(-2px);
}

.revenda-logo-item img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 108px;
  object-fit: contain;
  object-position: center;
  filter: none;
  transform: scale(1.35);
  transform-origin: center;
}

.revenda-logo-item__text {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--primary);
}

.revenda-portfolio__intro,
.revenda-about__intro {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  color: #2d2d2d;
}

.revenda-portfolio__title,
.revenda-media__title,
.revenda-faq__title,
.revenda-about__title {
  margin-bottom: 28px;
}

.revenda-portfolio__cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.revenda-portfolio-card {
  overflow: hidden;
  background: transparent;
  text-align: center;
}

.revenda-portfolio-card__image {
  height: 200px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 18px 16px 0;
  border-radius: 22px;
  background: linear-gradient(180deg, #f3f0eb 0%, #ece6df 100%);
}

.revenda-portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.revenda-portfolio-card__placeholder,
.revenda-about-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
}

.revenda-portfolio-card__placeholder {
  background: linear-gradient(180deg, #f3f0eb 0%, #ece6df 100%);
}

.revenda-portfolio-card__placeholder span,
.revenda-about-card__placeholder span {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.08;
  color: var(--primary);
}

.revenda-portfolio-card__content {
  padding: 14px 8px 0;
}

.revenda-portfolio-card__content h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.18;
  color: #222;
}

.revenda-portfolio-card__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(34, 34, 34, 0.8);
}

.revenda-tag {
  border: 1px solid #efe6de;
  background: #fff9f5;
  font-weight: 700;
}

.revenda-about {
  padding: 86px 0;
  background: #f4f1ed;
}

.revenda-about__title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  text-align: center;
  color: #1f1f1f;
}

.revenda-about__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.revenda-about-card {
  overflow: hidden;
}

.revenda-about-card__image {
  height: 340px;
  border-radius: 26px;
  overflow: hidden;
  background: #e9e4de;
}

.revenda-about-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.revenda-about-card__placeholder {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.12), rgba(246, 102, 13, 0.14));
}

.revenda-about-card__content {
  padding: 14px 8px 0;
  text-align: center;
}

.revenda-about-card__content h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #222;
}

.revenda-about-card__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(34, 34, 34, 0.84);
}

.revenda-split__content {
  max-width: 520px;
}

.revenda-split__content p {
  font-size: 16px;
}

.revenda-faq__item {
  border: 0;
  background: transparent;
}

.revenda-faq__item:hover {
  box-shadow: none;
}

.revenda-faq__item summary {
  padding: 22px 24px;
  border-radius: 18px;
  background: var(--primary);
  color: #fff;
}

.revenda-faq__item summary::after {
  color: #fff;
}

.revenda-faq__item[open] {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 18px;
}

.revenda-faq__item[open] summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.revenda-faq__item p {
  padding: 0 24px 20px;
  color: #4a4a4a;
}

.revenda-cta {
  background: transparent;
  padding-top: 40px;
}

.revenda-cta__inner {
  padding: 54px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 55%, #2a2a2a 100%);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1024px) {
  .revenda-hero__highlights,
  .revenda-hero__actions {
    justify-content: center;
  }

  .revenda-hero__steps {
    margin-left: auto;
    margin-right: auto;
  }

  .revenda-hero__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .revenda-portfolio__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .revenda-about__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .revenda-hero__eyebrow {
    margin-bottom: 12px;
  }

  .revenda-hero__logo {
    width: 104px;
    margin-bottom: 16px;
  }

  .revenda-hero__highlights span {
    font-size: 12px;
  }

  .revenda-hero__actions {
    flex-direction: column;
  }

  .revenda-logos-carousel {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 2px;
  }

  .revenda-logos-arrow {
    width: 32px;
    height: 32px;
    font-size: 30px;
  }

  .revenda-logo-item {
    min-height: 110px;
    padding: 0;
  }

  .revenda-logo-item img {
    max-width: 100%;
    max-height: 82px;
    transform: scale(1.2);
  }

  .revenda-portfolio__intro,
  .revenda-about__intro {
    font-size: 15px;
  }

  .revenda-portfolio__cards {
    grid-template-columns: 1fr;
  }

  .revenda-about {
    padding: 64px 0;
  }

  .revenda-about-card__image {
    height: 280px;
  }

  .revenda-btn-primary--hero,
  .revenda-hero__actions .revenda-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .revenda-cta__inner {
    padding: 40px 18px;
    border-radius: 24px;
  }
}

/* --- Revenda alinhada com a home --- */
.revenda-top-banner {
  padding: 22px 0 8px;
  background: #fff;
}

.revenda-top-banner__card {
  overflow: hidden;
  border-radius: 26px;
}

.revenda-top-banner__card picture,
.revenda-top-banner__card img,
.revenda-top-banner__fallback {
  display: block;
  width: 100%;
}

.revenda-top-banner__card img {
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
}

.revenda-top-banner__fallback {
  min-height: 180px;
  padding: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.revenda-top-banner__fallback img {
  width: auto;
  max-width: 240px;
  min-height: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.revenda-hero,
.revenda-benefits,
.revenda-split,
.revenda-portfolio,
.revenda-about,
.revenda-media,
.revenda-faq,
.revenda-cta {
  background: #fff;
}

.revenda-hero {
  padding: 24px 0 54px;
  color: #1f1f1f;
  overflow: visible;
}

.revenda-hero::after {
  display: none;
}

.revenda-hero__grid {
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  align-items: start;
}

.revenda-hero__eyebrow {
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--primary);
  min-height: 28px;
  margin-bottom: 12px;
}

.revenda-hero__logo {
  width: 116px;
  margin-bottom: 14px;
  filter: none;
}

.revenda-hero__content h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  font-weight: 900;
  color: #171717;
  letter-spacing: -0.02em;
}

.revenda-hero__sub {
  max-width: 640px;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(31, 31, 31, 0.72);
}

.revenda-hero__highlights {
  margin-top: 18px;
}

.revenda-hero__highlights span {
  min-height: 34px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.28);
  color: #333;
  font-size: 12px;
}

.revenda-btn-primary,
.revenda-btn-outline,
.revenda-btn-large {
  min-height: 50px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  justify-content: center;
}

.revenda-btn-primary--hero {
  min-width: 240px;
}

.revenda-btn-outline {
  border-width: 1px;
  border-color: #ddd5cd;
  color: #333;
}

.revenda-btn-outline:hover {
  border-color: var(--primary);
  color: #fff;
}

.revenda-hero__actions .revenda-btn-outline {
  color: #333;
  border-color: #ddd5cd;
}

.revenda-hero__actions .revenda-btn-outline:hover {
  color: #fff;
  background: var(--primary);
}

.revenda-hero__steps {
  margin-top: 22px;
  max-width: 640px;
}

.revenda-hero__step {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.24);
}

.revenda-hero__step strong {
  color: #202020;
  font-size: 14px;
}

.revenda-hero__step span {
  color: rgba(32, 32, 32, 0.7);
  font-size: 13px;
}

.revenda-form-card {
  padding: 24px;
  border: 2px solid var(--primary);
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
}

.revenda-form-card h2 {
  margin: 0 0 6px;
  font-size: 26px;
  color: #171717;
}

.revenda-form-card__hint {
  margin-bottom: 18px;
  font-size: 14px;
}

.revenda-form-field label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.revenda-form-field input,
.revenda-form-field select {
  height: 50px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.28);
  font-size: 14px;
}

.revenda-form-field input:hover,
.revenda-form-field select:hover {
  border-color: rgba(0, 0, 0, 0.42);
}

.revenda-form-field input:focus,
.revenda-form-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.revenda-form-note {
  font-size: 11px;
}

.revenda-social,
.revenda-benefits,
.revenda-split,
.revenda-portfolio,
.revenda-about,
.revenda-media,
.revenda-faq {
  padding: 56px 0;
}

.revenda-social__title,
.revenda-benefits__title,
.revenda-portfolio__title,
.revenda-about__title,
.revenda-media__title,
.revenda-faq__title {
  margin: 0 0 22px;
  text-align: center;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.05;
  font-weight: 900;
  color: #171717;
  letter-spacing: -0.02em;
}

.revenda-social__title {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.revenda-section-label {
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: .12em;
}

.revenda-benefit-card {
  padding: 24px 20px;
  border-radius: 22px;
  border: 1px solid #ece4dc;
  box-shadow: none;
}

.revenda-benefit-card h3 {
  font-size: 18px;
  font-weight: 900;
}

.revenda-benefit-card p,
.revenda-portfolio-card__content p,
.revenda-about-card__content p,
.revenda-media__title + p,
.revenda-faq__item p,
.revenda-portfolio__intro,
.revenda-about__intro,
.revenda-split__content p {
  font-size: 15px;
  line-height: 1.7;
}

.revenda-split {
  padding-top: 24px;
}

.revenda-split__grid {
  gap: 34px;
}

.revenda-split__image {
  box-shadow: none;
  border-radius: 24px;
  border: 1px solid #ece4dc;
}

.revenda-split__content h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  color: #171717;
}

.revenda-portfolio__intro,
.revenda-about__intro {
  max-width: 980px;
  margin: 0 auto 22px;
  color: rgba(31, 31, 31, 0.72);
}

.revenda-portfolio__tags {
  display: none;
}

.revenda-portfolio__cards {
  gap: 22px;
  margin-bottom: 0;
}

.revenda-portfolio-card__image {
  height: 220px;
  background: #fff;
  border: 1px solid #ece4dc;
}

.revenda-about {
  padding-top: 32px;
}

.revenda-about__grid {
  gap: 22px;
}

.revenda-about-card__image {
  height: 320px;
  border: 1px solid #ece4dc;
  background: #f8f6f3;
}

.revenda-about-card__placeholder {
  background: #f8f6f3;
}

.revenda-media {
  display: none;
}

.revenda-faq__list {
  max-width: none;
  width: 100%;
}

.revenda-faq__item {
  margin-bottom: 12px;
}

.revenda-faq__item summary {
  width: 100%;
  min-height: 72px;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 800;
}

.revenda-faq__item p {
  width: 100%;
  padding: 0 24px 22px;
}

.revenda-cta {
  padding: 16px 0 56px;
}

.revenda-cta__inner {
  padding: 42px 24px;
  border-radius: 28px;
}

.revenda-cta h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
}

.revenda-cta p {
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .revenda-hero__grid {
    grid-template-columns: 1fr;
  }

  .revenda-hero__content {
    text-align: left;
  }

  .revenda-hero__logo,
  .revenda-hero__highlights,
  .revenda-hero__steps {
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
  }

  .revenda-portfolio__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .revenda-top-banner {
    padding-top: 16px;
  }

  .revenda-top-banner__card {
    border-radius: 22px;
  }

  .revenda-top-banner__card img {
    min-height: 120px;
  }

  .revenda-hero,
  .revenda-social,
  .revenda-benefits,
  .revenda-split,
  .revenda-portfolio,
  .revenda-about,
  .revenda-faq {
    padding: 40px 0;
  }

  .revenda-hero__content h1,
  .revenda-social__title,
  .revenda-benefits__title,
  .revenda-portfolio__title,
  .revenda-about__title,
  .revenda-faq__title {
    font-size: 30px;
  }

  .revenda-form-card {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .revenda-faq__item summary {
    min-height: 64px;
    font-size: 16px;
    padding: 18px 18px;
  }

  .revenda-faq__item p {
    padding: 0 18px 18px;
  }
}

/* =================== */
/* MF PRODUCT CARD     */
/* =================== */
.mf-product-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  transition: .25s ease;
  border: 1px solid #e0e0e0;
}

.mf-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(0,0,0,.08);
  border-color: #000000;
}

.mf-discount {
  position: absolute;
  right: 14px;
  top: 14px;
  background: #f6660d;
  color: #fff;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
  z-index: 2;
  pointer-events: none;
}

.mf-product-card__image {
  aspect-ratio: 1 / 1;
  height: auto;
  background: transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 14px;
  overflow: hidden;
}

.mf-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mf-stars {
  color: #ffc400;
  font-size: 12px;
  margin-bottom: 6px;
}

.mf-stars span {
  color: #8fa0a0;
  font-size: 10px;
}

.mf-product-card h3 {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  color: #1f1f1f;
  min-height: 48px;
}

.mf-product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.mf-price {
  margin-top: auto;
}

.mf-price s {
  display: block;
  color: #a9b4b4;
  font-size: 11px;
  font-weight: 700;
}

.mf-price strong {
  display: block;
  color: #1f1f1f;
  font-size: 20px;
  font-weight: 900;
}

.mf-price small {
  color: #6c7c7c;
  font-size: 10px;
}

.mf-buy-btn {
  width: 100%;
  height: 36px;
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  background: #000000;
  color: white;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.mf-buy-btn:hover {
  filter: brightness(.95);
}

/* =================== */
/* MF PRODUCT SCROLL   */
/* =================== */
/* Carrossel de produtos: 4 visiveis, passando 1 a 1, autoplay, setas laterais */
.mf-product-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 calc(-1 * var(--site-gutter));
  width: calc(100% + var(--site-gutter) * 2);
}

.mf-product-carousel__viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: visible;
  padding: 16px var(--site-gutter);
}

.mf-product-carousel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 8px 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.mf-product-carousel__track::-webkit-scrollbar {
  display: none;
}

.mf-product-carousel__track > .mf-card-pro,
.mf-product-carousel__track > .mf-card,
.mf-product-carousel__track > .mf-product-card {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

/* Setas laterais finas em laranja */
.mf-product-carousel__arrow {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #f6660d;
  font-size: 32px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease;
  padding: 0;
}

.mf-product-carousel__arrow span {
  transform: translateY(-3px);
  font-weight: 300;
}

.mf-product-carousel__arrow:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .mf-product-carousel__track > .mf-card-pro,
  .mf-product-carousel__track > .mf-card,
  .mf-product-carousel__track > .mf-product-card {
    flex: 0 0 68%;
    scroll-snap-align: start;
  }

  .mf-product-carousel__viewport {
    padding: 16px calc(var(--site-gutter) - 4px) 16px var(--site-gutter);
  }

  .mf-product-carousel__track {
    padding: 8px 12px 8px 0;
  }

  /* Imagem quadrada no mobile */
  .mf-card-pro__media {
    margin: 14px 14px 0;
  }
}

/* =================== */
/* MF BENEFITS         */
/* =================== */
.mf-benefits {
  text-align: center;
  padding: 60px 0;
}

.mf-benefits h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 40px;
  color: var(--primary);
}

.mf-benefits .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mf-benefits .item {
  background: white;
  border: 1px solid #ececec;
  padding: 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: all .2s ease;
}

.mf-benefits .item:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .mf-benefits .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .mf-benefits .grid {
    grid-template-columns: 1fr;
  }
}

/* =================== */
/* MINE FOOTER         */
/* =================== */
.mine-footer {
  background: #000000;
  color: #fff;
  padding: 56px 0 38px;
  font-family: Inter, Arial, sans-serif;
}

.mine-footer__inner {
  max-width: var(--site-max-width);
  width: calc(100% - (var(--site-gutter) * 2));
  margin: 0 auto;
}

.mine-footer__top {
  text-align: center;
  margin-bottom: 58px;
}

.mine-footer__top h2 {
  margin: 0 0 24px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: .025em;
  color: #fff;
}

.mine-footer__buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.mine-footer__btn {
  min-width: 165px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.mine-footer__btn--filled {
  background: #f6660d;
  border: 2px solid #f6660d;
}

.mine-footer__btn--outline {
  background: transparent;
  border: 2px solid #fff;
}

.mine-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
  margin-bottom: 70px;
}

.mine-footer__cols h3 {
  margin: 0 0 22px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .04em;
  color: #fff;
}

.mine-footer__cols a,
.mine-footer__cols p {
  display: block;
  margin: 0 0 13px;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
}

.mine-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mine-footer__social {
  display: flex;
  gap: 18px;
  align-items: center;
}

.mine-footer__social a {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.mine-footer__logo {
  text-align: center;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 28px;
  line-height: .8;
  font-weight: 900;
  color: #fff;
  font-style: italic;
}

.mine-footer__logo span {
  font-size: 12px;
  letter-spacing: .18em;
}

.mine-footer__legal {
  text-align: right;
  font-size: 12px;
  line-height: 1.45;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .mine-footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px;
    margin-bottom: 56px;
  }

  .mine-footer__top h2 {
    font-size: 38px;
  }
}

@media (max-width: 560px) {
  .mine-footer {
    padding: 42px 0 32px;
  }

  .mine-footer__top {
    margin-bottom: 42px;
  }

  .mine-footer__top h2 {
    font-size: 32px;
  }

  .mine-footer__btn {
    width: 100%;
    height: 46px;
    font-size: 16px;
  }

  .mine-footer__cols {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 44px;
    text-align: center;
  }

  .mine-footer__cols h3 {
    text-align: center;
  }

  .mine-footer__cols a {
    text-align: center;
  }

  .mine-footer__top {
    text-align: center;
  }

  .mine-footer__buttons {
    justify-content: center;
  }

  .mine-footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mine-footer__social {
    justify-content: center;
  }

  .mine-footer__legal {
    text-align: center;
  }
}

/* =================== */
/* MARQUEE ROLANTE     */
/* =================== */
.mine-marquee {
  width: 100%;
  height: 36px;
  background: #000000;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mine-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: mineMarquee 28s linear infinite;
}

.mine-marquee__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 34px;
  white-space: nowrap;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mine-marquee__item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}

.mine-marquee__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f6660d;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

@keyframes mineMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .mine-marquee {
    height: 32px;
  }

  .mine-marquee__item {
    font-size: 10px;
    gap: 12px;
    padding-right: 24px;
  }

  .mine-marquee__item img,
  .mine-marquee__icon {
    width: 18px;
    height: 18px;
  }
}

/* =================== */
/* ONDE ENCONTRAR      */
/* =================== */
.mine-where {
  background: #fff;
  padding: 78px 0;
}

.mine-where__inner {
  max-width: var(--site-max-width);
  width: calc(100% - (var(--site-gutter) * 2));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.mine-where__map {
  position: relative;
}

.mine-where__map img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mine-where__placeholder {
  height: 420px;
  border-radius: 22px;
  background: #f4f4f4;
  display: grid;
  place-items: center;
  color: #999;
  font-weight: 800;
}

.mine-where__legend {
  position: absolute;
  right: 22px;
  bottom: 16px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 17px;
  font-weight: 900;
  color: #333;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.mine-where__legend span {
  width: 24px;
  height: 12px;
  position: relative;
  display: inline-block;
}

.mine-where__legend span::before,
.mine-where__legend span::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 10px;
  height: 10px;
  background: #f6660d;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(239,58,58,.18);
}

.mine-where__legend span::before {
  left: 0;
}

.mine-where__legend span::after {
  left: 7px;
}

.mine-where__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8e8e8;
  color: #000000;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 28px;
}

.mine-where__content h2 {
  margin: 0 0 28px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #222;
}

.mine-where__content h2 strong {
  color: #000000;
  font-weight: 900;
}

.mine-where__content p {
  margin: 0 0 34px;
  max-width: 640px;
  font-size: 25px;
  line-height: 1.45;
  color: #5f6872;
}

.mine-where__button {
  width: fit-content;
  min-width: 338px;
  height: 72px;
  border-radius: 14px;
  background: #000000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 32px;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  transition: .2s ease;
}

.mine-where__button:hover {
  transform: translateY(-2px);
  background: #d45608;
}

.mine-where__button span {
  font-size: 24px;
}

/* RESPONSIVO */
@media (max-width: 980px) {
  .mine-where {
    padding: 60px 0;
  }

  .mine-where__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mine-where__content {
    text-align: center;
  }

  .mine-where__content p {
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
  }

  .mine-where__button {
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .mine-where {
    padding: 46px 0;
  }

  .mine-where__inner {
    width: calc(100% - (var(--site-gutter) * 2));
  }

  .mine-where__tag {
    font-size: 14px;
    padding: 9px 20px;
    margin-bottom: 20px;
  }

  .mine-where__content h2 {
    font-size: 38px;
  }

  .mine-where__content p {
    font-size: 17px;
  }

  .mine-where__button {
    width: 100%;
    min-width: 0;
    height: 58px;
    font-size: 18px;
  }

  .mine-where__legend {
    position: static;
    margin: 18px auto 0;
    width: fit-content;
    font-size: 14px;
    padding: 11px 18px;
  }
}

/* =================== */
/* MOSAICO DE BANNERS  */
/* =================== */
.mine-mosaic {
  background: #fff;
  padding: 12px 0;
}

.mine-mosaic__inner {
  max-width: var(--site-max-width);
  width: calc(100% - (var(--site-gutter) * 2));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
}

.mine-mosaic__card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  color: #fff;
  min-height: 260px;
}

.mine-mosaic__card--large {
  grid-row: span 2;
}

.mine-mosaic__card img,
.mine-mosaic__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #000000, #c40000);
  transition: transform .45s ease;
}

.mine-mosaic__card:hover img {
  transform: scale(1.06);
}

.mine-mosaic__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.16) 42%,
    rgba(0,0,0,.55) 100%
  );
  z-index: 1;
}

.mine-mosaic__content {
  position: absolute;
  left: 32px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.mine-mosaic__content h3 {
  margin: 0;
  max-width: 82%;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: #fff;
}

.mine-mosaic__content span {
  font-size: 46px;
  line-height: 1;
  font-weight: 400;
}

/* RESPONSIVO */
@media (max-width: 980px) {
  .mine-mosaic__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .mine-mosaic__card,
  .mine-mosaic__card--large {
    grid-row: auto;
    min-height: 240px;
  }

  .mine-mosaic__card--large {
    grid-column: span 2;
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .mine-mosaic {
    padding: 42px 0;
  }

  .mine-mosaic__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mine-mosaic__card,
  .mine-mosaic__card--large {
    grid-column: auto;
    min-height: 260px;
  }

  .mine-mosaic__content {
    left: 20px;
    right: 18px;
    bottom: 20px;
  }

  .mine-mosaic__content h3 {
    font-size: 22px;
  }

  .mine-mosaic__content span {
    font-size: 36px;
  }
}

/* =================== */
/* SHOPPABLE VIDEOS    */
/* =================== */
.mine-shoppable {
  background: #fff;
  padding: 28px 0 40px;
}

.mine-shoppable__inner {
  max-width: var(--site-max-width);
  width: calc(100% - (var(--site-gutter) * 2));
  margin: 0 auto;
}

.mine-shoppable h2 {
  margin: 0 0 28px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: #000000;
}

.mine-shoppable__slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}

.mine-shoppable__slider::-webkit-scrollbar {
  display: none;
}

.mine-shoppable__item {
  scroll-snap-align: start;
}

.mine-shoppable__video {
  position: relative;
  height: 390px;
  border-radius: 16px;
  overflow: hidden;
  background: #eee;
}

.mine-shoppable__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mine-shoppable__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 24px;
  color: #fff;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

.mine-shoppable__product {
  margin-top: 8px;
  background: #fff;
  border: 1px solid #e7e0df;
  border-radius: 10px;
  padding: 8px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: center;
  color: #222;
  text-decoration: none;
}

.mine-shoppable__product img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 7px;
  background: #faf3ed;
}

.mine-shoppable__product strong {
  display: -webkit-box;
  font-size: 12px;
  line-height: 1.2;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mine-shoppable__product span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 900;
  color: #000000;
}

@media (max-width: 768px) {
  .mine-shoppable__slider {
    grid-auto-columns: 72%;
  }

  .mine-shoppable__video {
    height: 420px;
  }
}

/* =================== */
/* BARRA TOPO PRO      */
/* =================== */
.mine-top-marquee {
  position: relative;
  width: 100%;
  height: 42px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg);
  color: var(--color);
}

/* fade nas laterais */
.mine-top-marquee__fade {
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.mine-top-marquee__fade.left {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.mine-top-marquee__fade.right {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.mine-top-marquee__button {
  height: 30px;
  padding: 0 16px;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .18);
  flex: 0 0 auto;
}

.mine-top-marquee__track {
  display: flex;
  width: max-content;
  animation: mineMarquee calc(var(--speed) * 1.8) linear infinite;
}

/* pausa quando passa o mouse (UX premium) */
.mine-top-marquee:hover .mine-top-marquee__track {
  animation-play-state: paused;
}

.mine-top-marquee__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 8px;
  white-space: nowrap;
}

.mine-top-marquee__item span {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ícone */
.mine-top-marquee__item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* mobile */
@media (max-width: 640px) {
  .mine-top-marquee {
    height: 38px;
  }

  .mine-top-marquee__item span {
    font-size: 10px;
  }

  .mine-top-marquee__item {
    gap: 6px;
    padding-right: 6px;
  }

  .mine-top-marquee__fade {
    width: 30px;
  }

  .mine-top-marquee__button {
    height: 26px;
    padding: 0 12px;
    font-size: 10px;
  }
}

/* =================== */
/* CARD PRODUTO PREMIUM */
/* =================== */
.mf-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #ececec;
  overflow: hidden;
  transition: .25s;
}

.mf-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 28px rgba(0,0,0,.08);
}

/* imagem */
.mf-card__image {
  display: block;
  background: transparent;
  padding: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.mf-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* conteúdo */
.mf-card__content {
  padding: 16px;
}

/* estrelas */
.mf-card__stars {
  font-size: 12px;
  color: #ffc400;
}

.mf-card__stars span {
  color: #888;
  font-size: 11px;
}

/* título */
.mf-card h3 {
  margin: 8px 0 10px;
  font-size: 14px;
  font-weight: 900;
  color: #1f1f1f;
}

.mf-card h3 a {
  text-decoration: none;
  color: inherit;
}

/* badge */
.mf-card__badge {
  display: inline-block;
  background: #6dbb2e;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 10px;
}

/* preço */
.mf-card__price s {
  display: block;
  color: #bbb;
  font-size: 12px;
}

.mf-card__price strong {
  font-size: 22px;
  font-weight: 900;
  color: #000000;
}

.mf-card__price small {
  display: block;
  font-size: 12px;
  color: #666;
}

/* botão */
.mf-card__btn {
  margin-top: 12px;
  width: 100%;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: #000000;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: .2s;
}

.mf-card__btn:hover {
  background: #1a1a1a;
}

.mf-card-pro__btn:hover {
  background: #1a1a1a;
}

/* =================== */
/* CARD PRODUTO PRO    */
/* =================== */
.mf-card-pro {
  position: relative;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 22px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.mf-card-pro:hover {
  transform: translateY(-6px);
  border-color: #000000;
  box-shadow: 0 20px 34px rgba(0, 0, 0, .12);
}

.mf-card-pro__save,
.mf-card-pro__tag {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .03em;
  color: #fff;
}

.mf-card-pro__save {
  background: #79b829;
}

.mf-card-pro__tag {
  background: #000000;
}

.mf-card-pro__save + .mf-card-pro__tag {
  top: 46px;
}

.mf-card-pro__media {
  position: relative;
  display: block;
  margin: 14px 14px 0;
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
  padding: 0;
}

.mf-card-pro__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: 0;
  transition: opacity .28s ease, transform .35s ease;
  display: block;
}

.mf-card-pro__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.mf-card-pro:hover .mf-card-pro__img--main {
  transform: scale(1.04);
}

.mf-card-pro:hover .mf-card-pro__img--hover {
  opacity: 1;
  transform: scale(1.04);
}

.mf-card-pro__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mf-card-pro__reviews {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.mf-card-pro__reviews span {
  color: #ffc400;
  font-size: 14px;
  letter-spacing: .03em;
}

.mf-card-pro__reviews small {
  color: #7a8585;
  font-size: 12px;
  font-weight: 700;
}

.mf-card-pro h3 {
  margin: 0 0 10px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  color: #1f1f1f;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.mf-card-pro h3 a {
  color: inherit;
  text-decoration: none;
}

.mf-card-pro__price {
  margin-top: auto;
}

.mf-card-pro__price s {
  display: block;
  color: #aeb6b6;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 2px;
}

.mf-card-pro__price strong {
  display: block;
  color: #f6660d;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.03em;
}

.mf-card-pro__price small {
  display: block;
  margin-top: 6px;
  color: #5d6969;
  font-size: 13px;
  font-weight: 600;
}

.mf-card-pro__form {
  margin-top: 12px;
}

.mf-card-pro__btn {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #000000;
  color: #fff;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.mf-card-pro__btn:hover {
  background: #1a1a1a;
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .22);
}

.mf-card-pro__btn:disabled {
  background: #c9c9c9;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.mf-card-pro__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.mf-card-pro__bottom .mf-card-pro__form {
  margin-top: 0;
  flex-shrink: 0;
}

.mf-card-pro__bottom .mf-card-pro__btn {
  width: auto;
  padding: 0 16px;
  height: 36px;
  font-size: 11px;
}

/* MOBILE: empilha preço em cima e botão embaixo, centralizado */
@media (max-width: 768px) {
  .mf-card-pro__bottom {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .mf-card-pro__bottom .mf-card-pro__price {
    text-align: left;
    width: 100%;
  }

  .mf-card-pro__bottom .mf-card-pro__price strong,
  .mf-card-pro__bottom .mf-card-pro__price small,
  .mf-card-pro__bottom .mf-card-pro__price s {
    text-align: left;
  }

  .mf-card-pro__bottom .mf-card-pro__form {
    width: 100%;
  }

  .mf-card-pro__bottom .mf-card-pro__btn {
    width: 100%;
    height: 42px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .collection-page {
    padding-top: 16px;
    padding-bottom: 40px;
    overflow: visible;
  }

  .collection-page__banner {
    margin-bottom: 20px;
    border-radius: 22px;
  }

  .collection-page__banner img {
    height: clamp(140px, 42vw, 220px);
  }

  .collection-page__heading {
    margin-bottom: 22px;
  }

  .collection-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    max-width: 420px;
    margin: 0 auto;
    overflow: visible;
  }

  .mf-card-pro {
    overflow: visible !important;
  }

  .mf-card-pro__media {
    height: auto;
  }

  .mf-card-pro h3 {
    font-size: 12px;
  }

  .mf-card-pro__price strong {
    font-size: 20px;
  }

  .mf-card-pro__btn {
    height: 36px;
    font-size: 11px;
  }
}

/* =================== */
/* QUICK BOX DRAWER    */
/* =================== */

.mine-quick-floating {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 90;

  height: 58px;
  padding: 0 24px 0 10px;
  border: 0;
  border-radius: 999px;

  background: #f6660d;
  color: #000000;

  display: inline-flex;
  align-items: center;
  gap: 14px;

  font-family: Montserrat, Inter, sans-serif;
  font-size: 15px;
  font-weight: 900;

  cursor: pointer;
  box-shadow: 0 18px 38px rgba(246, 102, 13, .28);
}

.mine-quick-floating span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: #f6660d;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex: 0 0 auto;
}

.mine-quick-floating strong {
  white-space: nowrap;
}

.mine-quick-floating:hover {
  background: #f6660d;
}

@media (max-width: 560px) {
  .mine-quick-floating {
    bottom: 16px;
    height: 54px;
    padding: 0 18px 0 8px;
    font-size: 13px;
  }

  .mine-quick-floating span {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
}

.mine-quick-box {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

.mine-quick-box.active {
  pointer-events: auto;
}

.mine-quick-box__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.42);
  opacity: 0;
  transition: .25s;
}

.mine-quick-box.active .mine-quick-box__overlay {
  opacity: 1;
}

.mine-quick-box__panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(680px, 100%);
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: .3s ease;
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
}

.mine-quick-box.active .mine-quick-box__panel {
  transform: translateX(0);
}

.mine-quick-box__close {
  position: absolute;
  right: 18px;
  top: 16px;
  border: 0;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
  color: #000000;
  line-height: 1;
  padding: 0;
}

.mine-quick-box__close:hover {
  color: #f6660d;
}

.mine-quick-box__header {
  padding-right: 48px;
  margin-bottom: 14px;
}

.mine-quick-box p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.45;
}

.mine-drawer-tabs-shell {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.mine-drawer-tabs-arrow {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #f6660d;
  color: #000000;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(255,216,77,.35);
}

.mine-drawer-tabs-arrow span {
  line-height: 1;
}

.mine-quick-box__tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 0;
  scrollbar-width: none;
}

.mine-quick-box__tabs::-webkit-scrollbar {
  display: none;
}

.mine-quick-box__tabs button {
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #000000;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.mine-quick-box__tabs button.active {
  background: #000000;
  color: #fff;
}

.mine-quick-box__content {
  overflow-y: auto;
  flex: 1;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: #000000 #ececec;
}

.mine-quick-box__content::-webkit-scrollbar {
  width: 8px;
}

.mine-quick-box__content::-webkit-scrollbar-track {
  background: #ececec;
  border-radius: 999px;
}

.mine-quick-box__content::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 999px;
}

.mine-quick-box__group {
  display: grid;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #ececec;
  scroll-margin-top: 12px;
}

.mine-quick-product {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.04);
}

.mine-quick-product__image {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  background: transparent;
  display: grid;
  place-items: center;
}

.mine-quick-product img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.mine-quick-product__info strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  color: #1f1f1f;
  margin-bottom: 6px;
}

.mine-quick-product__info span {
  display: block;
  margin-top: 0;
  font-weight: 900;
  color: #000000;
  font-size: 16px;
}

.mine-quick-product--has-variants {
  align-items: start;
  grid-template-columns: 96px 1fr auto;
  row-gap: 8px;
}

.mine-quick-product__variant-label {
  display: block;
  margin: 6px 0 4px;
  font-size: 10px;
  font-weight: 700;
  color: #6a6a6a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mine-quick-product__variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-width: 100%;
}

.mine-quick-product__variant-option {
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #1f1f1f;
  font-size: 11px;
  font-weight: 700;
  text-transform: none;
  padding: 4px 8px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  line-height: 1.2;
}

.mine-quick-product__variant-option:hover {
  border-color: #1f1f1f;
}

.mine-quick-product__variant-option.is-active {
  background: #1f1f1f;
  color: #fff;
  border-color: #1f1f1f;
}

.mine-qty {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 999px;
  overflow: hidden;
}

.mine-qty button {
  width: 34px;
  height: 34px;
  border: 0;
  background: #f5f5f5;
  font-weight: 900;
  cursor: pointer;
}

.mine-qty input {
  width: 40px;
  height: 34px;
  border: 0;
  text-align: center;
  font-weight: 900;
}

.mine-quick-empty {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 14px;
}

.mine-drawer-group-title {
  margin: 0 0 4px;
  color: #000000;
  font-size: 16px;
  font-weight: 900;
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
  padding: 6px 0 8px;
}

.mine-quick-box__footer {
  border-top: 1px solid #eee;
  padding-top: 14px;
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.mine-quick-box__footer strong {
  display: block;
  color: #222;
  font-size: 15px;
}

.mine-quick-box__footer small {
  color: #000000;
  font-size: 13px;
  font-weight: 800;
}

.mine-quick-box__footer button {
  flex: 1;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

@media(max-width: 560px) {
  .mine-quick-trigger {
    width: 54px;
    height: 54px;
    left: 18px;
    bottom: 18px;
  }

  .mine-quick-box__panel {
    padding: 24px 18px;
  }

  .mine-drawer-tabs-shell {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
  }

  .mine-drawer-tabs-arrow {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .mine-quick-product {
    grid-template-columns: 80px 1fr;
  }

  .mine-qty {
    grid-column: 2;
    width: fit-content;
  }
}

/* =================== */
/* HEADER PREMIUM      */
/* =================== */

.mf-header {
  background: #000000;
  border-bottom: 1px solid #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 100;
}

.mf-header__inner {
  max-width: var(--site-max-width);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--site-gutter);
  gap: 24px;
  position: relative;
  min-height: 140px;
}

/* LOGO - centralizado no topo */
.mf-header__logo {
  grid-column: 1 / 4;
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
}

.mf-header__logo img {
  height: 60px;
  width: auto;
  max-width: 240px;
  display: block;
  object-fit: contain;
}

.mf-header__brand {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
}

/* MENU - centralizado embaixo */
.mf-header__nav {
  grid-column: 1 / 4;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  height: auto;
  margin: 0;
  padding: 0;
  /* border-top: 1px solid rgba(255, 255, 255, 0.12); */
  padding-top: 0px;
}

.mf-nav-item {
  position: static;
  display: flex;
  align-items: center;
  height: 100%;
}

.mf-nav-link {
  font-weight: 800;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  transition: color .2s;
  position: relative;
  border: 0;
  background: transparent;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.mf-nav-item--has-children > .mf-nav-link {
  padding-right: 16px;
}

.mf-nav-link:hover,
.mf-nav-item:hover > .mf-nav-link,
.mf-nav-item:focus-within > .mf-nav-link {
  color: #f6660d;
}

.mf-nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f6660d;
  transition: width .2s;
}

.mf-nav-link:hover::after,
.mf-nav-item:hover > .mf-nav-link::after,
.mf-nav-item:focus-within > .mf-nav-link::after {
  width: 100%;
}

.mf-nav-item--has-children > .mf-nav-link::before {
  content: '';
  position: absolute;
  right: 1px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  transform-origin: center;
}

.mf-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  min-width: 200px;
  max-width: 260px;
  padding: 10px 12px;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  background: #0d0d0d;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity .15s ease, visibility .15s ease;
  z-index: 20;
  margin-top: 0;
}

.mf-mega-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.mf-nav-item--has-children {
  position: relative;
}

.mf-nav-item--has-children:hover .mf-mega-menu,
.mf-nav-item--has-children:focus-within .mf-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mf-mega-menu__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 18px;
  align-items: start;
}

.mf-mega-menu__column {
  min-width: 0;
}

.mf-mega-menu__title {
  display: inline-block;
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
}

.mf-mega-menu__title--single {
  margin-bottom: 0;
}

.mf-mega-menu__links {
  display: grid;
  gap: 8px;
}

.mf-mega-menu__link {
  font-size: 14px;
  line-height: 1.25;
  color: #ffffff;
  text-decoration: none;
}

.mf-mega-menu__title:hover,
.mf-mega-menu__link:hover {
  color: #f6660d;
}

/* BLOCO DIREITO: ícones (busca, conta, carrinho) - canto superior direito absoluto */
.mf-header__icons {
  position: absolute;
  top: 24px;
  right: var(--site-gutter);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  height: 40px;
  z-index: 5;
}

.mf-header__icons > a {
  display: flex;
  align-items: center;
  height: 100%;
}

.mf-header__mobile-toggle {
  display: none;
  margin-right: auto;
}

.mf-mobile-menu__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.mf-mobile-menu__toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform .2s ease, opacity .2s ease;
}

.mf-header.is-mobile-menu-open .mf-mobile-menu__toggle span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.mf-header.is-mobile-menu-open .mf-mobile-menu__toggle span:nth-child(2) {
  opacity: 0;
}

.mf-header.is-mobile-menu-open .mf-mobile-menu__toggle span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

/* SEARCH */
.mf-header__search {
  position: relative;
  display: flex;
  align-items: center;
}

.mf-header__search input {
  height: 40px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #000000;
  padding: 0 42px 0 16px;
  font-size: 13px;
  width: 220px;
  text-transform: none;
  transition: border-color .2s, box-shadow .2s;
}

.mf-header__search input::placeholder {
  color: rgba(0, 0, 0, 0.55);
}

.mf-header__search input:focus {
  outline: none;
  border-color: #f6660d;
  box-shadow: 0 0 0 3px rgba(246, 102, 13, .2);
}

.mf-header__search button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICONS SVG */
.mf-icon {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  stroke-width: 2;
  fill: none;
  cursor: pointer;
  transition: stroke .2s;
}

.mf-icon:hover {
  stroke: #f6660d;
}

/* CART */
.mf-header__cart {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.mf-header__cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #f6660d;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.mf-mobile-menu__panel {
  border-top: 1px solid #1a1a1a;
  background: #000000;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.mf-mobile-menu__inner {
  max-width: var(--site-max-width);
  width: calc(100% - (var(--site-gutter) * 2));
  margin: 0 auto;
  padding: 20px 0 28px;
}

.mf-mobile-menu__group {
  padding: 18px 0;
  border-bottom: 1px solid #1a1a1a;
}

.mf-mobile-menu__group:last-child {
  border-bottom: 0;
}

.mf-mobile-menu__group-title,
.mf-mobile-menu__column-title,
.mf-mobile-menu__solo-link,
.mf-mobile-menu__fallback a {
  text-decoration: none;
}

.mf-mobile-menu__group-title {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
}

.mf-mobile-menu__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
}

.mf-mobile-menu__column {
  min-width: 0;
}

.mf-mobile-menu__column-title {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
}

.mf-mobile-menu__links,
.mf-mobile-menu__fallback {
  display: grid;
  gap: 8px;
}

.mf-mobile-menu__link,
.mf-mobile-menu__solo-link,
.mf-mobile-menu__fallback a {
  font-size: 15px;
  line-height: 1.35;
  color: #ffffff;
  text-decoration: none;
}

.mf-mobile-menu__solo-link {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid #1a1a1a;
  font-weight: 800;
}

.mf-mobile-menu__solo-link--button {
  width: 100%;
  text-align: left;
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-radius: 0;
  font-family: inherit;
  cursor: pointer;
}

.mf-mobile-menu__solo-link:last-child {
  border-bottom: 0;
}

/* MOBILE */
@media (max-width: 968px) {
  .mf-header__inner {
    gap: 14px;
    position: relative;
    min-height: 90px;
    padding: 20px 0;
  }

  .mf-header__mobile-toggle {
    display: inline-flex;
    order: 0;
    margin-right: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    padding-left: 12px;
  }

  /* Mobile: logo centralizada */
  .mf-header__logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: auto;
  }

  .mf-header__logo img {
    height: 52px;
    max-width: 200px;
  }

  .mf-header__icons {
    order: 1;
    padding-top: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-right: 12px;
  }

  .mf-header__nav {
    display: none;
  }

  .mf-mobile-menu__toggle {
    display: inline-flex;
    border-color: #1a1a1a;
  }

  .mf-header__search {
    display: none;
  }

  /* Mobile: banner encostando no header */
  .hero {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }

  .hero-box {
    border-radius: 0;
  }

  /* Mobile: titulo perto do carrossel */
  .products,
  .products.container {
    overflow: visible !important;
  }

  .products h2 {
    margin-bottom: 4px;
  }

  /* Mobile: carrossel com ultimo card saindo da tela */
  .mf-product-carousel {
    padding: 4px 0 4px;
    margin-top: 0;
    margin-bottom: -40px;
  }

  .mf-product-carousel__viewport {
    overflow: visible;
    padding: 8px 0 8px var(--site-gutter);
  }

  .mf-product-carousel__track {
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 0 4px 0;
  }

  .mf-product-carousel__track > .mf-card-pro,
  .mf-product-carousel__track > .mf-card,
  .mf-product-carousel__track > .mf-product-card {
    flex: 0 0 calc(85% - 30px);
    scroll-snap-align: start;
  }

  /* Mobile: banner grande com largura padrao */
  .big-banner {
    padding: 4px var(--site-gutter);
    width: 100%;
    max-width: var(--site-max-width);
    margin: 0 auto;
  }

  .big-banner img,
  .big-banner-placeholder {
    border-radius: 14px;
  }
}

@media (max-width: 640px) {
  .mf-header__inner {
    padding: 16px 0;
  }

  .mf-header__icons {
    gap: 12px;
    padding-right: 12px;
  }

  .mf-header__mobile-toggle {
    padding-left: 12px;
  }

  .mf-header__logo img {
    height: 48px;
    max-width: 180px;
  }

  .mf-mobile-menu__columns {
    grid-template-columns: 1fr;
  }

  .mf-mobile-menu__inner {
    padding: 16px 0 22px;
  }
}

/* =================== */
/* COLLECTION CARDS    */
/* =================== */
.mine-collection-cards {
  background: #fff;
  padding: 54px 0;
}

.mine-collection-cards__inner {
  max-width: var(--site-max-width);
  width: calc(100% - (var(--site-gutter) * 2));
  margin: 0 auto;
}

.mine-collection-cards h2 {
  margin: 0 0 28px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  font-weight: 900;
  color: #000000;
  text-align: center;
}

.mine-collection-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mine-collection-card {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: transparent;
  text-decoration: none;
  color: #222;
  transition: .25s ease;
}

.mine-collection-card:hover {
  transform: translateY(-3px);
}

.mine-collection-card__image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

.mine-collection-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.22), transparent 32%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.16), transparent 30%);
  opacity: .8;
}

.mine-collection-card__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s ease;
}

.mine-collection-card:hover .mine-collection-card__image img {
  transform: scale(1.05) rotate(-1deg);
}

.mine-collection-card__zoom {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  opacity: 0;
  transform: translateY(6px);
}

.mine-collection-card:hover .mine-collection-card__zoom,
.mine-collection-card__zoom:focus {
  opacity: 1;
  transform: translateY(0);
}

.mine-collection-card__zoom:hover {
  background: #f6660d;
  color: #fff;
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .mine-collection-card__zoom {
    opacity: 1;
    transform: translateY(0);
  }
}

.mine-category-zoom {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.mine-category-zoom.is-open {
  display: flex;
}

.mine-category-zoom__content {
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mine-category-zoom__content img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
}

.mine-category-zoom__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.mine-category-zoom__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.mine-collection-card__placeholder {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
}

.mine-collection-card__bottom {
  min-height: 70px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}

.mine-collection-card__bottom strong {
  display: block;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  color: #333;
}

.mine-collection-card__bottom span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #555;
}

.mine-collection-card__bottom em {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #000000;
  color: #fff;
  padding: 10px 16px;
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .mine-collection-cards__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .mine-collection-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mine-collection-card__image {
    height: 200px;
  }
}

@media (max-width: 560px) {
  .mine-collection-cards {
    padding: 40px 0;
  }

  .mine-collection-cards__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mine-collection-card__image {
    height: 240px;
  }

  .mine-collection-card__bottom {
    min-height: 60px;
    padding: 12px 0;
  }

  .mine-collection-card__bottom strong {
    font-size: 15px;
  }

  .mine-collection-card__bottom span {
    font-size: 13px;
  }

  .mine-collection-card__bottom em {
    padding: 10px 14px;
    font-size: 11px;
  }
}

/* =================== */
/* BANNER CAROUSEL     */
/* =================== */
.banner-carousel {
  width: 100%;
  overflow: hidden;
}

.banner-carousel__container {
  position: relative;
  width: 100%;
}

.banner-carousel__track {
  display: flex;
  transition: transform 0.5s ease;
}

.banner-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
}

.banner-carousel__link {
  display: block;
  width: 100%;
}

.banner-carousel__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Arrows */
.banner-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.2s;
  z-index: 10;
}

.banner-carousel__arrow:hover {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.banner-carousel__arrow--prev {
  left: 20px;
}

.banner-carousel__arrow--next {
  right: 20px;
}

/* Dots */
.banner-carousel__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.banner-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.banner-carousel__dot.active {
  background: #000000;
  border-color: #000000;
  transform: scale(1.2);
}

.banner-carousel__dot:hover {
  background: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .banner-carousel__arrow {
    width: 36px;
    height: 36px;
  }
  
  .banner-carousel__arrow--prev {
    left: 10px;
  }
  
  .banner-carousel__arrow--next {
    right: 10px;
  }
  
  .banner-carousel__dot {
    width: 8px;
    height: 8px;
  }
}

/* =================== */
/* CART DRAWER         */
/* =================== */
body.mf-cart-drawer-open {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
}

.mf-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1300;
  pointer-events: none;
}

.mf-cart-drawer.active {
  pointer-events: auto;
}

.mf-cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 16, 0.42);
  opacity: 0;
  transition: opacity .25s ease;
}

.mf-cart-drawer.active .mf-cart-drawer__overlay {
  opacity: 1;
}

.mf-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 460px);
  height: 100%;
  background: #fff;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  transform: translateX(100%);
  transition: transform .28s ease;
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.14);
}

.mf-cart-drawer.active .mf-cart-drawer__panel {
  transform: translateX(0);
}

.mf-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 22px 16px;
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
}

.mf-cart-drawer__brand {
  display: grid;
  gap: 4px;
}

.mf-cart-drawer__brand-logo {
  width: 84px;
  height: auto;
  margin-bottom: 4px;
}

.mf-cart-drawer__header p {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(34, 34, 34, 0.55);
}

.mf-cart-drawer__header h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
  color: var(--primary);
}

.mf-cart-drawer__header-actions {
  display: flex;
  align-items: center;
  gap: 0;
}

.mf-cart-drawer__close {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.mf-cart-drawer__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.mf-cart-drawer__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mf-cart-drawer__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mf-cart-drawer__body {
  min-height: 0;
  overflow-y: auto;
  padding: 18px 22px;
}

.mf-cart-drawer__items {
  display: grid;
  gap: 14px;
}

.mf-cart-drawer__item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #ece7e1;
}

.mf-cart-drawer__item-image,
.mf-cart-drawer__item-image-placeholder {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #efebe6;
  overflow: hidden;
}

.mf-cart-drawer__item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  display: block;
}

.mf-cart-drawer__item-content {
  display: grid;
  gap: 12px;
}

.mf-cart-drawer__item-top,
.mf-cart-drawer__item-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.mf-cart-drawer__item-info strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  color: #2a2a2a;
}

.mf-cart-drawer__item-info small {
  display: block;
  margin-top: 5px;
  color: rgba(34, 34, 34, 0.62);
  font-size: 12px;
}

.mf-cart-drawer__remove {
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  text-transform: uppercase;
}

.mf-cart-drawer__qty {
  display: grid;
  grid-template-columns: 34px 52px 34px;
  align-items: center;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #ddd7d0;
  background: #fff;
  overflow: hidden;
}

.mf-cart-drawer__qty button {
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.mf-cart-drawer__qty input {
  width: 100%;
  height: 100%;
  border: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  color: #222;
  background: transparent;
  appearance: textfield;
}

.mf-cart-drawer__qty input::-webkit-outer-spin-button,
.mf-cart-drawer__qty input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.mf-cart-drawer__item-price {
  font-size: 16px;
  color: var(--primary);
}

.mf-cart-drawer__empty {
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px dashed #ddd6cf;
  text-align: center;
}

.mf-cart-drawer__empty strong {
  display: block;
  color: var(--primary);
}

.mf-cart-drawer__empty p {
  margin-top: 8px;
  color: rgba(34, 34, 34, 0.68);
  font-size: 14px;
}

.mf-cart-drawer__footer {
  display: grid;
  gap: 10px;
  padding: 10px 18px 18px;
  background: #fff;
  border-top: 1px solid rgba(34, 34, 34, 0.08);
}

.mf-cart-drawer__block {
  padding: 8px 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #ece7e1;
}

.mf-cart-drawer__block--inline {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 6px 10px;
  align-items: center;
}

.mf-cart-drawer__block-head {
  margin-bottom: 0;
}

.mf-cart-drawer__block-head strong {
  display: grid;
  gap: 1px;
  font-size: 10px;
  color: #555;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1.15;
}

.mf-cart-drawer__inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
}

.mf-cart-drawer__inline-form input {
  height: 34px;
  border-radius: 12px;
  border: 1px solid #ddd6cf;
  padding: 0 12px;
  font-size: 12px;
  background: #fff;
}

.mf-cart-drawer__inline-form input:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.mf-cart-drawer__inline-form button {
  height: 34px;
  width: 34px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.mf-cart-drawer__helper {
  grid-column: 2;
  margin-top: 0;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(34, 34, 34, 0.65);
}

.mf-cart-drawer__helper[hidden] {
  display: none !important;
}

.mf-cart-drawer__shipping-rates {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 12px;
}

.mf-cart-drawer__shipping-rate {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid #e6e0da;
  background: #fff;
  cursor: pointer;
  text-align: left;
  min-height: 44px;
}

.mf-cart-drawer__shipping-rate-name {
  flex: 1 1 0;
  min-width: 0;
  font-size: 12px;
  color: #2a2a2a;
  line-height: 1.2;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mf-cart-drawer__shipping-rate-days {
  flex: 0 0 auto;
  font-size: 11px;
  color: #6a6a6a;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mf-cart-drawer__shipping-rate-price {
  flex: 0 0 auto;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  text-align: right;
  min-width: 65px;
}

.mf-cart-drawer__shipping-rate.is-active {
  border-color: var(--primary);
  background: #fff;
}

.mf-cart-drawer__totals {
  display: grid;
  gap: 8px;
  padding: 2px 2px 0;
}

.mf-cart-drawer__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.74);
}

.mf-cart-drawer__total-row strong {
  color: #222;
}

.mf-cart-drawer__total-row--grand {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(34, 34, 34, 0.08);
  font-size: 18px;
}

.mf-cart-drawer__total-row--grand strong {
  color: var(--primary);
  font-size: 22px;
}

.mf-cart-drawer__checkout {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 640px) {
  .mf-cart-drawer__panel {
    width: 100%;
  }

  .mf-cart-drawer__header,
  .mf-cart-drawer__body,
  .mf-cart-drawer__footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mf-cart-drawer__item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
  }

  .mf-cart-drawer__item-image,
  .mf-cart-drawer__item-image-placeholder {
    width: 76px;
    height: 76px;
  }

  .mf-cart-drawer__item-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .mf-cart-drawer__block--inline {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 8px 10px;
  }

  .mf-cart-drawer__inline-form {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

#compre-rapido,
#onde-encontrar {
  scroll-margin-top: 120px;
}

/* =================== */
/* CARROSSEL PARCEIROS */
/* =================== */
.parceiros-carousel {
  background: #fff;
  padding: 4px 0 100px;
}

.parceiros-carousel__container {
  max-width: var(--site-max-width);
  width: calc(100% - (var(--site-gutter) * 2));
  margin: 0 auto;
}

.parceiros-carousel__title {
  margin: 0 0 12px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

/* Viewport: setas do lado de fora do track preto */
.parceiros-carousel__viewport {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* Track com fundo preto e cantos arredondados - NAO pega 100% da tela */
.parceiros-carousel__track {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  padding: 22px 28px;
  background: #000000;
  border-radius: 22px;
  max-width: 100%;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.parceiros-carousel__track::-webkit-scrollbar {
  display: none;
}

.parceiros-carousel__slide {
  flex: 0 0 auto;
  width: 180px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 14px;
}

.parceiros-carousel__slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.parceiros-carousel__placeholder {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #999;
}

/* Setas: ficam do lado de fora do track preto */
.parceiros-carousel__arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #f6660d;
  font-size: 46px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease;
}

.parceiros-carousel__arrow span {
  transform: translateY(-2px);
}

.parceiros-carousel__arrow:hover {
  transform: scale(1.06);
}

/* Bolinhas (dots) de paginacao em laranja */
.parceiros-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.parceiros-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f6660d;
  opacity: .35;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}

.parceiros-carousel__dot.is-active {
  opacity: 1;
  transform: scale(1.2);
}

.parceiros-carousel__dot:hover {
  opacity: .7;
}

@media (max-width: 640px) {
  .parceiros-carousel {
    padding: 40px 0 30px;
  }

  .parceiros-carousel__viewport {
    gap: 6px;
  }

  .parceiros-carousel__arrow {
    width: 32px;
    height: 32px;
    font-size: 30px;
  }

  .parceiros-carousel__track {
    padding: 16px 18px;
    border-radius: 18px;
  }

  .parceiros-carousel__slide {
    width: 130px;
    height: 80px;
  }
}

/* =================== */
/* CARROSSEL PARCEIROS */
/* =================== */
.parceiros-carousel {
  background: #fff;
  padding: 0 0 70px;
  margin-top: -20px;
}

.parceiros-carousel__container {
  max-width: var(--site-max-width);
  width: calc(100% - (var(--site-gutter) * 2));
  margin: 0 auto;
}

.parceiros-carousel__title {
  margin: 0 0 12px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

/* Viewport: setas do lado de fora do track preto */
.parceiros-carousel__viewport {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* Track com fundo preto e cantos arredondados - NAO pega 100% da tela */
.parceiros-carousel__track {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  padding: 22px 28px;
  background: #000000;
  border-radius: 22px;
  max-width: 100%;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.parceiros-carousel__track::-webkit-scrollbar {
  display: none;
}

.parceiros-carousel__slide {
  flex: 0 0 auto;
  width: 180px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 14px;
}

.parceiros-carousel__slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.parceiros-carousel__placeholder {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #999;
}

/* Setas: ficam do lado de fora do track preto */
.parceiros-carousel__arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #f6660d;
  font-size: 46px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease;
}

.parceiros-carousel__arrow span {
  transform: translateY(-2px);
}

.parceiros-carousel__arrow:hover {
  transform: scale(1.06);
}

/* Bolinhas (dots) de paginacao em laranja */
.parceiros-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.parceiros-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f6660d;
  opacity: .35;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}

.parceiros-carousel__dot.is-active {
  opacity: 1;
  transform: scale(1.2);
}

.parceiros-carousel__dot:hover {
  opacity: .7;
}

@media (max-width: 640px) {
  .parceiros-carousel {
    padding: 40px 0 30px;
  }

  .parceiros-carousel__viewport {
    gap: 6px;
  }

  .parceiros-carousel__arrow {
    width: 32px;
    height: 32px;
    font-size: 30px;
  }

  .parceiros-carousel__track {
    padding: 16px 18px;
    border-radius: 18px;
  }

  .parceiros-carousel__slide {
    width: 130px;
    height: 80px;
  }
}
