/* PCDIGA — tema custom sobre DaisyUI. Tokens do brand_brief.json */
[data-theme="pcdiga"] {
  --p: 15 100% 60%;      /* #FF5A33 */
  --pf: 15 90% 52%;
  --pc: 0 0% 100%;
  --s: 217 74% 42%;      /* #1C5AB7 */
  --sc: 0 0% 100%;
  --a: 22 55% 81%;       /* #EBC8B3 */
  --ac: 217 74% 15%;
  --n: 217 74% 12%;      /* #081933 */
  --nc: 0 0% 100%;
  --b1: 0 0% 100%;
  --b2: 0 0% 95%;        /* #F2F2F2 */
  --b3: 210 20% 89%;     /* #DDE3E9 */
  --bc: 217 74% 12%;
  --su: 217 74% 42%;
  --er: 4 90% 52%;
  --rounded-box: 8px;
  --rounded-btn: 6px;
  --rounded-badge: 4px;
  --animation-btn: .2s;
  --border-btn: 1px;
  --tab-radius: 6px;
}

:root {
  --mk-orange: #FF5A33;
  --mk-blue: #1C5AB7;
  --mk-navy: #081933;
  --mk-surface: #F2F2F2;
  --mk-border: #DDE3E9;
  --mk-container: 1440px;
}

html, body { background: var(--mk-surface); color: var(--mk-navy); }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }

/* container do site: conteúdo centrado com margens laterais cinzentas */
.mk-container { max-width: var(--mk-container); margin-inline: auto; padding-inline: 16px; }
.mk-page { background: #fff; }

/* ---------- Promo bar ---------- */
.mk-promobar {
  background: var(--mk-orange); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; text-align: center; padding: 7px 12px;
}

/* ---------- Header ---------- */
.mk-header { background: #fff; border-bottom: 1px solid var(--mk-border); position: sticky; top: 0; z-index: 40; }
.mk-header .navbar { min-height: 64px; padding-inline: 0; gap: 12px; }
.mk-logo { height: 26px; width: auto; display: block; }
.mk-headlink { font-size: 14px; font-weight: 700; color: var(--mk-navy); white-space: nowrap; }
.mk-headlink:hover { color: var(--mk-orange); }
.mk-search { flex: 1 1 auto; }
.mk-search-wrap .input {
  background: var(--mk-surface); border: 1px solid transparent;
  border-radius: 6px; height: 40px; width: 100%; padding-left: 40px; font-size: 14px;
}
.mk-search-wrap .input:focus { outline: none; border-color: var(--mk-orange); background: #fff; }
.mk-search-wrap { position: relative; width: 100%; }
.mk-search-wrap > i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #8a93a0; font-size: 15px; }
.mk-iconbtn { font-size: 20px; color: var(--mk-navy); }
.mk-iconbtn:hover { color: var(--mk-orange); }
.mk-cart-badge { background: var(--mk-orange); color: #fff; border: none; font-size: 11px; font-weight: 700; }

/* --- header: bloco de tema (sol / interruptor / lua / info) --- */
.mk-promobar { display: none; }        /* o site de referência não mostra a barra laranja */
.mk-burger-end { display: none; }
.mk-theme { display: flex; align-items: center; gap: 8px; margin-right: 18px; }
.mk-theme .mk-sun-out { color: #FFB300; font-size: 17px; }
.mk-theme .mk-moon-out { color: var(--mk-navy); font-size: 16px; }
.mk-theme .mk-info { color: var(--mk-navy); font-size: 15px; display: inline-flex; }
.mk-toggle {
  width: 34px; height: 18px; border-radius: 999px; background: #2b2b2b;
  display: inline-flex; align-items: center; padding: 2px; border: 0; cursor: pointer;
}
.mk-toggle .mk-knob {
  width: 14px; height: 14px; border-radius: 999px; background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.mk-toggle .mk-knob i { display: none; }

/* ---------- Hero ---------- */
.mk-hero { display: block; background: var(--mk-orange); overflow: hidden; }
.mk-hero img { width: 100%; height: auto; display: block; }
.mk-hero-dots { display: flex; gap: 6px; justify-content: center; padding: 10px 0; background: #fff; }
.mk-hero-dot { width: 8px; height: 8px; border-radius: 999px; background: #cfd6de; }
.mk-hero-dot.is-active { background: var(--mk-orange); width: 20px; }

/* ---------- Quick categories (ícones circulares) ---------- */
.mk-quickcats { display: grid; grid-template-columns: repeat(10, minmax(0,1fr)); gap: 8px; padding: 18px 0 22px; }
.mk-quickcat { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.mk-quickcat-ico {
  width: 64px; height: 64px; border-radius: 999px; background: var(--mk-surface);
  display: grid; place-items: center; overflow: hidden; transition: box-shadow .2s, transform .2s;
}
.mk-quickcat:hover .mk-quickcat-ico { box-shadow: 0 6px 16px rgba(8,25,51,.14); transform: translateY(-2px); }
.mk-quickcat-ico img { width: 46px; height: 46px; object-fit: contain; }
.mk-quickcat span { font-size: 11px; line-height: 1.25; color: var(--mk-navy); }

/* ---------- Section head ---------- */
.mk-sechead { display: flex; align-items: center; justify-content: space-between; padding: 18px 0 12px; }
.mk-sectitle { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; }
.mk-sectitle::before { content: ""; width: 4px; height: 22px; background: var(--mk-orange); border-radius: 2px; }
.mk-sectitle--center { justify-content: center; font-size: 22px; letter-spacing: .02em; }
.mk-sectitle--center::before { display: none; }

/* ---------- Product cards ---------- */
.mk-prow { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; padding-bottom: 24px; }
.mk-prow--5 { grid-template-columns: repeat(5, minmax(0,1fr)); }
.mk-pcard { border: 1px solid var(--mk-border); border-radius: 8px; background: #fff; box-shadow: 0 1px 2px rgba(8,25,51,.05); transition: box-shadow .2s, transform .2s; }
.mk-pcard:hover { box-shadow: 0 10px 24px rgba(8,25,51,.12); transform: translateY(-2px); }
.mk-pcard .card-body { padding: 12px; gap: 6px; }
.mk-pcard-figure { position: relative; padding: 14px; background: #fff; border-radius: 8px 8px 0 0; }
.mk-pcard-figure img { width: 100%; height: 160px; object-fit: contain; display: block; }
.mk-pbadge { position: absolute; top: 8px; left: 8px; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.mk-pbadge--disc { left: auto; right: 8px; background: #E53935; color: #fff; border: none; }
.mk-pname { font-size: 13px; font-weight: 600; line-height: 1.35; min-height: 36px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mk-pstock { font-size: 11px; color: #17864a; font-weight: 700; }
.mk-pdeliv { font-size: 11px; color: #6b7683; }
.mk-pprice { font-size: 18px; font-weight: 800; color: var(--mk-orange); }
.mk-pold { font-size: 12px; color: #8a93a0; text-decoration: line-through; margin-left: 6px; }
.mk-pactions { display: flex; gap: 12px; font-size: 11px; color: #6b7683; border-top: 1px solid var(--mk-border); padding-top: 8px; margin-top: 4px; }
.mk-buybtn { background: var(--mk-orange); color: #fff; border: none; border-radius: 999px; font-weight: 700; letter-spacing: .04em; }
.mk-buybtn:hover { background: #e8471f; color: #fff; }

/* ---------- Banners ---------- */
.mk-banner { display: block; margin: 8px 0 24px; border-radius: 8px; overflow: hidden; }
.mk-banner img { width: 100%; height: auto; display: block; }

/* ---------- Campanhas grid ---------- */
.mk-campgrid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; padding-bottom: 24px; }
.mk-campcard { border: 1px solid var(--mk-border); border-radius: 8px; overflow: hidden; background: #fff; }
.mk-campcard img { width: 100%; height: auto; display: block; }
.mk-campcard .card-body { padding: 14px; gap: 6px; }

/* ---------- USPs ---------- */
.mk-usps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; padding: 28px 0; }
.mk-usp { display: flex; gap: 22px; align-items: flex-start; background: #fff; border: 1px solid var(--mk-border); border-radius: 8px; padding: 26px 24px; min-width: 0; }
.mk-usp img { width: 42px; height: 42px; object-fit: contain; flex: none; }
.mk-usp > div { min-width: 0; }
.mk-usp h3 { font-size: 20px; font-weight: 400; color: #23272b; text-transform: uppercase; line-height: 1.3; margin-bottom: 10px; }
.mk-usp p { font-size: 16px; color: #9aa1a8; line-height: 1.65; }

/* ---------- Blog ---------- */
.mk-blogrow { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; padding-bottom: 28px; }
.mk-blogcard { border: 1px solid var(--mk-border); border-radius: 8px; overflow: hidden; background: #fff; }
.mk-blogcard img { width: 100%; height: 150px; object-fit: cover; display: block; }
.mk-blogcard .card-body { padding: 14px; gap: 6px; }
.mk-blogcard h3 { font-size: 14px; font-weight: 700; line-height: 1.35; }
.mk-blogcard p { font-size: 12px; color: #6b7683; }
.mk-blogtag { font-size: 11px; color: var(--mk-orange); font-weight: 700; }

/* ---------- Newsletter ---------- */
.mk-newsletter { background: var(--mk-orange); color: #fff; padding: 20px 0; }
.mk-newsletter-inner { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.mk-newsletter h2 { font-size: 15px; font-weight: 800; text-transform: uppercase; flex: 1 1 260px; }
.mk-newsletter .input { border-radius: 6px; height: 40px; border: none; }

/* ---------- Footer ---------- */
.mk-footer { background: #fff; color: #1a1a1a; }
.mk-footer-grid { display: grid; grid-template-columns: 1.5fr 1.05fr 1.1fr .7fr .65fr; gap: 28px; padding: 34px 0 40px; }
.mk-footer h3 { color: #111; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .01em; margin-bottom: 14px; }
.mk-footer a { color: #1a1a1a; font-size: 14px; line-height: 2; }
.mk-footer a:hover { color: var(--mk-orange); }
.mk-footer .mk-foot-tag { font-size: 15px; color: #111; margin-top: 12px; line-height: 1.4; }
.mk-social { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.mk-social a { width: 34px; height: 34px; border: 1px solid #d7dbe0; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-size: 15px; color: #111; line-height: 1; }
.mk-social a:hover { border-color: var(--mk-orange); }
.mk-badges { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 20px; }
.mk-badges img { height: 92px; width: auto; background: transparent; border-radius: 0; padding: 0; }
.mk-certs { display: flex; gap: 11px; align-items: center; flex-wrap: wrap; margin-top: 18px; }
.mk-certs .mk-cert { display: flex; align-items: center; gap: 6px; font-size: 8px; line-height: 1.15; color: #111; font-weight: 700; text-transform: uppercase; }
.mk-certs .mk-cert .mk-cert-mark { width: 28px; height: 28px; flex: none; display: block; }
.mk-certs .mk-cert-eu .mk-cert-mark { width: 38px; height: 26px; }
.mk-certs .mk-cert-rp { font-size: 10px; letter-spacing: .01em; }
.mk-certs .mk-cert small { display: block; font-size: 7px; font-weight: 500; text-transform: none; color: #444; }
.mk-pay { display: flex; gap: 9px; align-items: center; flex-wrap: wrap; margin-top: 20px; }
.mk-pay span { font-weight: 800; font-size: 13px; letter-spacing: -.02em; line-height: 1; }
.mk-pay .pay-visa { color: #1a1f71; font-style: italic; font-size: 17px; }
.mk-pay .pay-mc { width: 34px; height: 20px; position: relative; display: inline-block; }
.mk-pay .pay-mc i { position: absolute; top: 0; width: 20px; height: 20px; border-radius: 999px; }
.mk-pay .pay-mc i:first-child { left: 0; background: #eb001b; }
.mk-pay .pay-mc i:last-child { right: 0; background: #f79e1b; opacity: .85; }
.mk-pay .pay-mb { border: 1px solid #d0d4d9; border-radius: 3px; padding: 2px 5px; font-size: 11px; color: #111; }
.mk-pay .pay-mb b { color: #d8232a; }
.mk-pay .pay-klarna { background: #ffb3c7; border-radius: 4px; padding: 2px 6px; font-size: 12px; color: #17120f; }
.mk-pay .pay-sequra { color: #00c2a8; font-weight: 700; }
.mk-pay .pay-aplazame { color: #4a3aff; }
.mk-copy { background: #f4f5f6; border-top: 1px solid #e5e7eb; padding: 22px 0; font-size: 12px; color: #4b5563; line-height: 1.7; }
.mk-copy .mk-container { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.mk-copy .mk-copy-note { text-align: right; }

/* ---------- Breadcrumbs / conteúdo ---------- */
.mk-crumbs { font-size: 12px; color: #6b7683; padding: 12px 0; }
.mk-crumbs a:hover { color: var(--mk-orange); }
.mk-prose h1 { font-size: 28px; font-weight: 800; margin-bottom: 14px; }
.mk-prose h2 { font-size: 18px; font-weight: 800; margin: 22px 0 8px; }
.mk-prose p, .mk-prose li { font-size: 14px; line-height: 1.7; color: #33415a; }
.mk-prose ul { list-style: disc; padding-left: 22px; margin: 8px 0; }

/* ---------- PDP ---------- */
.mk-pdp { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; padding: 12px 0 28px; }
.mk-gallery-main { border: 1px solid var(--mk-border); border-radius: 8px; background: #fff; padding: 24px; }
.mk-gallery-main img { width: 100%; height: 420px; object-fit: contain; }
.mk-thumbs { display: flex; gap: 10px; margin-top: 10px; }
.mk-thumbs img { width: 72px; height: 72px; object-fit: contain; border: 1px solid var(--mk-border); border-radius: 6px; padding: 4px; background: #fff; }
.mk-pdp-price { font-size: 32px; font-weight: 800; color: var(--mk-orange); }
.mk-spec { width: 100%; font-size: 13px; }
.mk-spec td { border-bottom: 1px solid var(--mk-border); padding: 9px 6px; }
.mk-spec td:first-child { color: #6b7683; width: 40%; }

/* ---------- Responsivo ---------- */
@media (max-width: 1023px) {
  .mk-prow, .mk-prow--5 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mk-campgrid, .mk-blogrow { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mk-usps { grid-template-columns: 1fr; }
  .mk-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .mk-pdp { grid-template-columns: 1fr; }
  .mk-gallery-main img { height: 300px; }
}
@media (max-width: 639px) {
  .mk-header .navbar { min-height: 54px; gap: 0; }
  .mk-header .navbar-end .btn { padding-inline: 4px; }
  .mk-logo { height: 20px; }
  .mk-iconbtn { font-size: 17px; }
  .mk-hero img { height: 150px; object-fit: cover; object-position: left center; }
  .mk-quickcats { display: flex; gap: 14px; overflow-x: auto; padding: 16px 0; scrollbar-width: none; }
  .mk-quickcats::-webkit-scrollbar { display: none; }
  .mk-quickcat { flex: 0 0 78px; }
  .mk-prow, .mk-prow--5, .mk-campgrid, .mk-blogrow { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .mk-footer-grid { grid-template-columns: 1fr; gap: 18px; padding: 24px 0; }
  .mk-badges img { height: 72px; }
  .mk-copy .mk-container { flex-direction: column; gap: 10px; }
  .mk-copy .mk-copy-note { text-align: left; }
  .mk-sectitle { font-size: 17px; }
  .mk-pcard-figure img { height: 130px; }
}

.mk-brandtile { overflow:hidden; }
.mk-brandtile .mk-brandtile-figure { aspect-ratio: 3/4; background:#f4f5f7; display:flex; align-items:center; justify-content:center; }
.mk-brandtile .mk-brandtile-figure img { width:100%; height:100%; object-fit:cover; }
.mk-brandtile .card-body { padding: 10px; }

/* ---------- Section: Promoções (section-08) ---------- */
.mk-promo .mk-promo-wrap { position: relative; }
.mk-promo .mk-promo-row { overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; padding-bottom: 14px; }
.mk-promo .mk-promo-row::-webkit-scrollbar { height: 6px; }
.mk-promo .mk-promo-row::-webkit-scrollbar-track { background: #eceff3; border-radius: 999px; }
.mk-promo .mk-promo-row::-webkit-scrollbar-thumb { background: #c7cdd6; border-radius: 999px; }
.mk-promo .mk-promo-row > * { scroll-snap-align: start; }
.mk-promo .mk-pcard { border-color: #e6e9ee; }
.mk-promo .mk-pcard-figure img { height: 200px; }
.mk-promo .mk-pribbon { position: absolute; top: 10px; left: 10px; z-index: 2; display: inline-flex; align-items: center; gap: 4px;
  background: #E32118; color: #fff; font-size: 11px; font-weight: 700; line-height: 1; padding: 6px 9px; border-radius: 4px; max-width: calc(100% - 20px); }
.mk-promo .mk-pribbon--dark { background: #14181d; }
.mk-promo .mk-pcut { position: absolute; right: 10px; bottom: 10px; z-index: 2; background: #F5C518; color: #14181d;
  font-size: 15px; font-weight: 800; line-height: 1; padding: 7px 10px; border-radius: 4px; }
.mk-promo .mk-pname { font-size: 15px; font-weight: 700; color: #14181d; line-height: 1.3; min-height: 40px; }
.mk-promo .mk-pdesc { font-size: 11px; color: #8a93a0; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.mk-promo .mk-psku { font-size: 11px; color: #6b7683; }
.mk-promo .mk-pstock { display: flex; align-items: center; gap: 5px; }
.mk-promo .mk-pdeliv { padding-left: 17px; }
.mk-promo .mk-pricerow { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.mk-promo .mk-pprice { color: #E32118; font-size: 21px; }
.mk-promo .mk-pold { margin-left: 0; }
.mk-promo .mk-ppvpr { font-size: 10px; color: #a0a7b1; }
.mk-promo .mk-pactions { justify-content: flex-start; gap: 16px; border-top: none; padding-top: 6px; }
.mk-promo .mk-promo-nav { position: absolute; top: 45%; transform: translateY(-50%); z-index: 5; width: 34px; height: 34px; border-radius: 6px;
  background: rgba(255,255,255,.9); border: 1px solid #e6e9ee; color: #98a0aa; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 3px rgba(8,25,51,.12); cursor: pointer; }
.mk-promo .mk-promo-nav:hover { color: #14181d; background: #fff; }
.mk-promo .mk-promo-nav--prev { left: 6px; }
.mk-promo .mk-promo-nav--next { right: 6px; }
@media (max-width: 1023px) {
  .mk-promo .mk-promo-nav { display: none; }
  .mk-promo .mk-pcard-figure img { height: 150px; }
  .mk-promo .mk-pname { font-size: 13px; }
}

/* ---------- Header mobile (referência: barra laranja) ---------- */
@media (max-width: 767px) {
  .mk-header { background: var(--mk-orange); border-bottom: 0; }
  .mk-header .mk-container { padding-inline: 14px; }
  .mk-header .navbar { min-height: 60px; gap: 0; padding-top: 6px; }
  .mk-header .mk-logo { height: 21px; filter: brightness(0) invert(1); }
  .mk-header .mk-iconbtn { color: #fff; font-size: 20px; }
  .mk-header .navbar-end { gap: 2px; }
  .mk-header .navbar-end .btn { padding-inline: 5px; }
  .mk-hide-sm { display: none !important; }
  .mk-burger-start { display: none !important; }
  .mk-burger-end { display: inline-flex; }
  .mk-cart-badge { display: none; }
  .mk-theme { gap: 6px; margin-right: 6px; margin-left: 4px; }
  .mk-theme .mk-sun-out, .mk-theme .mk-moon-out { display: none; }
  .mk-theme .mk-info { color: #fff; font-size: 21px; }
  .mk-toggle { width: 40px; height: 22px; background: #8c2d16; padding: 3px; }
  .mk-toggle .mk-knob { width: 16px; height: 16px; }
  .mk-toggle .mk-knob i { display: inline; color: #FFB300; font-size: 12px; line-height: 1; }
  .mk-header .mk-search-wrap { padding-bottom: 4px; }
  .mk-header .mk-search-wrap .input { background: #f4f4f4; height: 48px; border-radius: 10px; font-size: 16px; padding-left: 46px; }
  .mk-header .mk-search-wrap > i { left: 18px; font-size: 18px; }
}

/* === section-04-novidades (lane: index:product_row__novidades) === */
.mk-novidades .mk-nov-wrap { position: relative; }
.mk-novidades .mk-nov-row {
  display: flex; grid-template-columns: none;
  gap: 12px; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding-bottom: 14px; margin-bottom: 10px;
}
.mk-novidades .mk-nov-row > * { flex: 0 0 calc((100% - 4 * 12px) / 5); scroll-snap-align: start; }
.mk-novidades .mk-nov-row::-webkit-scrollbar { height: 6px; }
.mk-novidades .mk-nov-row::-webkit-scrollbar-track { background: #ececef; border-radius: 999px; }
.mk-novidades .mk-nov-row::-webkit-scrollbar-thumb { background: #b6bac1; border-radius: 999px; }
.mk-novidades .mk-nov-row { scrollbar-width: thin; scrollbar-color: #b6bac1 #ececef; }

.mk-novidades .mk-pcard { border-color: #e6e9ee; }
.mk-novidades .mk-pcard .card-body { padding: 14px; gap: 5px; }
.mk-novidades .mk-pcard-figure { padding: 18px; }
.mk-novidades .mk-pcard-figure img { height: 240px; }
.mk-novidades .mk-pbadge {
  top: 0; left: 0; border-radius: 0 0 6px 0; border: none;
  background: #1D4E9E; color: #fff; text-transform: none;
  font-size: 12px; font-weight: 600; height: auto; padding: 6px 12px;
}
.mk-novidades .mk-pname { font-size: 15px; font-weight: 700; color: #14181d; line-height: 1.3; min-height: 40px; }
.mk-novidades .mk-pdesc {
  font-size: 12px; line-height: 1.35; color: #9aa1aa; margin: 2px 0 6px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; min-height: 49px;
}
.mk-novidades .mk-psku { font-size: 12px; color: #444b54; }
.mk-novidades .mk-pstock { display: flex; align-items: center; gap: 5px; font-size: 12px; }
.mk-novidades .mk-pdeliv { font-size: 12px; padding-left: 18px; }
.mk-novidades .mk-pprice { font-size: 21px; color: var(--mk-orange); white-space: nowrap; }
.mk-novidades .mk-pactions { justify-content: flex-start; gap: 18px; font-size: 12px; border-top: none; padding-top: 8px; }

.mk-novidades .mk-brandtile .mk-brandtile-figure { aspect-ratio: auto; height: 100%; }
.mk-novidades .mk-brandtile { position: relative; }
.mk-novidades .mk-brandtile .card-body { position: absolute; left: 0; right: 0; bottom: 24px; padding: 0 34px; background: transparent; }

.mk-novidades .mk-nov-nav {
  position: absolute; top: calc(50% - 12px); transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 4px; border: 1px solid #e0e3e8;
  background: rgba(255,255,255,.92); color: #6b7683; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 3px rgba(8,25,51,.12); cursor: pointer; z-index: 3;
}
.mk-novidades .mk-nov-prev { left: -4px; }
.mk-novidades .mk-nov-next { right: -4px; }

@media (max-width: 1024px) {
  .mk-novidades .mk-nov-row > * { flex: 0 0 calc((100% - 2 * 12px) / 3); }
}
@media (max-width: 640px) {
  .mk-novidades .mk-nov-row { gap: 13px; padding-bottom: 12px; }
  .mk-novidades .mk-nov-row > * { flex: 0 0 224px; }
  .mk-novidades .mk-pcard-figure img { height: 200px; }
  .mk-novidades .mk-pname { font-size: 14px; }
  .mk-novidades .mk-nov-nav { display: none; }
}

/* ===== section-12-top-vendas (scoped .mk-topv) ===== */
.mk-topv .mk-sectitle { font-size: 26px; font-weight: 700; }
.mk-topv .mk-sectitle::before { width: 4px; height: 26px; }
.mk-topv .mk-sechead .btn { border-radius: 6px; font-weight: 700; font-size: 13px; padding: 0 22px; height: 44px; min-height: 44px; border-color: #14181d; color: #14181d; }
.mk-topv .mk-prow--5 { gap: 20px; align-items: stretch; }
.mk-topv .mk-pcard { border-color: #ececec; border-radius: 6px; box-shadow: none; display: flex; flex-direction: column; }
.mk-topv .mk-pcard:hover { box-shadow: 0 6px 18px rgba(8,25,51,.10); transform: none; }
.mk-topv .mk-pcard-figure { padding: 16px 16px 0; }
.mk-topv .mk-pcard-figure img { height: 230px; }
.mk-topv .mk-pbadge { top: 12px; left: 12px; background: #E32118; border-color: #E32118; color: #fff; border-radius: 4px; font-size: 12px; font-weight: 700; text-transform: none; padding: 4px 8px; height: auto; letter-spacing: 0; }
.mk-topv .mk-tvfire { font-size: 12px; }
.mk-topv .mk-pcard .card-body { padding: 14px 16px 12px; gap: 4px; flex: 1 1 auto; }
.mk-topv .mk-pname { font-size: 15px; font-weight: 700; color: #14181d; line-height: 1.3; min-height: 40px; -webkit-line-clamp: 2; }
.mk-topv .mk-tvdesc { font-size: 12px; line-height: 1.35; color: #9aa1a9; margin: 2px 0 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; min-height: 49px; }
.mk-topv .mk-tvsku { font-size: 12px; color: #6b7683; margin-top: 6px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mk-topv .mk-pstock { font-size: 13px; font-weight: 600; }
.mk-topv .mk-pdeliv { font-size: 12.5px; font-weight: 700; color: #14181d; padding-left: 18px; }
.mk-topv .mk-tvprices { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.mk-topv .mk-pprice { font-size: 22px; font-weight: 800; color: #E32118; white-space: nowrap; }
.mk-topv .mk-pold { font-size: 13px; color: #6b7683; text-decoration: none; margin-left: 0; white-space: nowrap; }
.mk-topv .mk-tvpvpr { font-size: 11px; color: #9aa1a9; display: inline-flex; align-items: center; gap: 3px; }
.mk-topv .mk-pactions { border-top: none; padding-top: 6px; margin-top: auto; gap: 16px; font-size: 12px; color: #14181d; }
.mk-topv .mk-tvenergy { display: inline-flex; align-items: center; gap: 2px; border: 1px solid #d8dce1; border-radius: 3px; padding: 1px 3px; background: #fff; }
.mk-topv .mk-tvenergy-letter { background: #f5c518; color: #14181d; font-weight: 800; font-size: 12px; line-height: 1; padding: 3px 6px; border-radius: 2px; }
.mk-topv .mk-tvenergy-scale { display: flex; flex-direction: column; font-size: 6px; line-height: 1.1; color: #14181d; font-weight: 700; }
.mk-topv .mk-tvenergy-scale i { font-style: normal; }
.mk-topv .mk-brandtile { position: relative; }
.mk-topv .mk-brandtile .mk-brandtile-figure { aspect-ratio: auto; height: 100%; }
.mk-topv .mk-brandtile .card-body { position: absolute; left: 0; right: 0; bottom: 8%; padding: 0 18%; }
.mk-topv .mk-brandtile .mk-buybtn { width: 100%; border-radius: 4px; font-weight: 800; height: 46px; min-height: 46px; font-size: 14px; }
@media (max-width: 900px) {
  .mk-topv .mk-sectitle { font-size: 18px; }
  .mk-topv .mk-pcard-figure img { height: 150px; }
  .mk-topv .mk-pname { font-size: 13px; min-height: 34px; }
  .mk-topv .mk-tvdesc { font-size: 11px; line-height: 1.35; min-height: 0; max-height: 2.75em; overflow: hidden !important; -webkit-line-clamp: 2 !important; }
  .mk-topv .mk-pprice { font-size: 18px; }
  .mk-topv .mk-brandtile .card-body { padding: 0 12%; }
}

/* ---------- Section: Destaques (section-10) ---------- */
.mk-dest .mk-dest-wrap { position: relative; }
.mk-dest .mk-dest-row { overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; padding-bottom: 14px; }
.mk-dest .mk-dest-row::-webkit-scrollbar { height: 6px; }
.mk-dest .mk-dest-row::-webkit-scrollbar-track { background: #eceff3; border-radius: 999px; }
.mk-dest .mk-dest-row::-webkit-scrollbar-thumb { background: #c7cdd6; border-radius: 999px; }
.mk-dest .mk-dest-row > * { scroll-snap-align: start; }
.mk-dest .mk-pcard { border-color: #e6e9ee; }
.mk-dest .mk-pcard-figure img { height: 200px; }
.mk-dest .mk-pribbon { position: absolute; top: 10px; left: 10px; z-index: 2; display: inline-flex; align-items: center; gap: 4px;
  background: #E32118; color: #fff; font-size: 11px; font-weight: 700; line-height: 1; padding: 6px 9px; border-radius: 4px; max-width: calc(100% - 20px); }
.mk-dest .mk-pname { font-size: 15px; font-weight: 700; color: #14181d; line-height: 1.3; min-height: 40px; }
.mk-dest .mk-pdesc { font-size: 11px; color: #8a93a0; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.mk-dest .mk-skurow { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 20px; }
.mk-dest .mk-psku { font-size: 11px; color: #6b7683; }
.mk-dest .mk-penergy { display: inline-flex; align-items: stretch; height: 20px; border-radius: 3px; overflow: hidden; }
.mk-dest .mk-penergy b { background: #F5C518; color: #14181d; font-size: 12px; font-weight: 800; line-height: 20px; padding: 0 6px; }
.mk-dest .mk-penergy i { background: #14181d; color: #fff; font-style: normal; font-size: 6px; line-height: 1.6; padding: 0 3px; text-align: center; }
.mk-dest .mk-pstock { display: flex; align-items: center; gap: 5px; }
.mk-dest .mk-pdeliv { padding-left: 17px; }
.mk-dest .mk-pricerow { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.mk-dest .mk-pprice { color: #E32118; font-size: 21px; }
.mk-dest .mk-pold { margin-left: 0; }
.mk-dest .mk-ppvpr { font-size: 10px; color: #a0a7b1; }
.mk-dest .mk-pactions { justify-content: flex-start; gap: 16px; border-top: none; padding-top: 6px; }
.mk-dest .mk-dest-nav { position: absolute; top: 45%; transform: translateY(-50%); z-index: 5; width: 34px; height: 34px; border-radius: 6px;
  background: rgba(255,255,255,.9); border: 1px solid #e6e9ee; color: #98a0aa; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 3px rgba(8,25,51,.12); cursor: pointer; }
.mk-dest .mk-dest-nav:hover { color: #14181d; background: #fff; }
.mk-dest .mk-dest-nav--prev { left: 6px; }
.mk-dest .mk-dest-nav--next { right: 6px; }
@media (max-width: 1023px) {
  .mk-dest .mk-dest-nav { display: none; }
  .mk-dest .mk-pcard-figure img { height: 150px; }
  .mk-dest .mk-pname { font-size: 13px; }
}
