/* ============================================================
   LOJA FIT — clone visual do lumafitoficial.com
   Paleta: preto #0a0a0a + verde #7ed957 + azul #1e88ff
   Desktop-first, mobile responsive
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #ffffff;
  color: #222;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

:root {
  --lf-black: #0a0a0a;
  --lf-black-2: #1a1a1a;
  /* GOLD FIT — paleta dourada pra harmonizar com logo "Gold Fit".
     Var names mantidas (--lf-green, --lf-blue) pra compat com CSS/JS legacy. */
  --lf-green: #d4af37;       /* dourado principal (accents/CTAs) */
  --lf-green-dark: #b8941f;  /* dourado escuro (hover) */
  --lf-green-soft: #f6ecd0;  /* dourado suave (bg badges/chips) */
  --lf-blue: #d4af37;        /* borda logo — agora tambem dourada */
  --lf-text: #222;
  --lf-text-2: #555;
  --lf-text-3: #888;
  --lf-border: #e5e5e5;
  --lf-bg-soft: #f7f7f7;
  --tt-red: var(--lf-green);
}

/* ================== TOPBAR ================== */
.lf-topbar {
  background: var(--lf-green-soft);
  color: var(--lf-black);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
}
.lf-topbar strong { font-weight: 700; }
.lf-topbar__pin { display: inline-block; margin-right: 4px; }

/* ================== HEADER PRETO ================== */
.lf-header {
  background: var(--lf-black);
  color: #fff;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lf-header__logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.5px;
  color: #fff;
  text-transform: uppercase;
  border: 3px solid var(--lf-blue);
  padding: 4px 12px;
  border-radius: 4px;
}
.lf-header__logo img { max-height: 42px; width: auto; border: none; padding: 0; }
.lf-header__logo-a { color: #fff; }
.lf-header__logo-b { color: var(--lf-blue); margin-left: 4px; }

.lf-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.lf-header__nav a {
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.15s;
}
.lf-header__nav a:hover, .lf-header__nav a.is-active { color: var(--lf-green); }

.lf-header__cart {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.lf-header__cart-ico { width: 22px; height: 22px; }

.lf-hamburger { display: none; background: none; border: none; color: #fff; padding: 4px; }

/* ================== HERO ================== */
.lf-hero {
  padding: 40px 24px 24px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.lf-hero__badge {
  font-size: 14px;
  font-weight: 700;
  color: var(--lf-text-2);
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.lf-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--lf-black);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin: 0 0 16px;
}
.lf-hero__subtitle {
  font-size: 15px;
  color: var(--lf-text-2);
  margin-bottom: 4px;
}
.lf-hero__subtitle strong { color: var(--lf-black); font-weight: 700; }
.lf-hero__strike {
  font-size: 13px;
  color: var(--lf-text-3);
  text-decoration: line-through;
  margin-bottom: 24px;
}
.lf-hero__urgencia {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--lf-text);
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 4px;
  margin-top: 12px;
}

/* ================== GRID ================== */
.lf-grid-wrap { max-width: 1240px; margin: 0 auto; padding: 32px 24px 48px; }
.lf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 992px) { .lf-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (max-width: 720px)  { .lf-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 420px)  { .lf-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ================== PRODUCT CARD ================== */
.lf-card { position: relative; display: flex; flex-direction: column; background: #fff; }
.lf-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background: var(--lf-green-soft);
  color: var(--lf-green-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}
.lf-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--lf-bg-soft);
  margin-bottom: 12px;
}
.lf-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.lf-card:hover .lf-card__img { transform: scale(1.03); }
.lf-card__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--lf-black);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 8px;
  line-height: 1.3;
  min-height: 34px;
}
.lf-card__prices { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.lf-card__price-old { font-size: 12px; color: var(--lf-text-3); text-decoration: line-through; }
.lf-card__price { font-size: 15px; font-weight: 700; color: var(--lf-green-dark); }
.lf-card__parcel { font-size: 12px; color: var(--lf-text-2); margin-bottom: 10px; }
.lf-card__chip {
  display: inline-block;
  background: var(--lf-green-soft);
  color: var(--lf-green-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  align-self: flex-start;
}

/* ================== FOOTER PRETO ================== */
.lf-footer {
  background: var(--lf-black);
  color: #bbb;
  padding: 48px 24px 24px;
  margin-top: 48px;
  font-size: 13px;
}
.lf-footer__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 720px) { .lf-footer__grid { grid-template-columns: 1fr; gap: 32px; } }
.lf-footer__col-title {
  font-size: 13px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 16px;
}
.lf-footer__logo {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  border: 3px solid var(--lf-blue);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.lf-footer__logo img { max-height: 36px; border: none; padding: 0; }
.lf-footer__contact { color: #bbb; line-height: 1.7; }
.lf-footer__nav {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.lf-footer__nav a { color: #bbb; transition: color 0.15s; }
.lf-footer__nav a:hover { color: var(--lf-green); }
.lf-footer__security {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.lf-footer__security-badge {
  background: #fff;
  padding: 6px 10px;
  border-radius: 3px;
  font-size: 11px;
  color: #666;
  display: flex; align-items: center; gap: 4px;
}
.lf-footer__copyright {
  max-width: 1240px;
  margin: 24px auto 0;
  text-align: center;
  color: #666;
  font-size: 12px;
  line-height: 1.8;
}
.lf-footer__copyright strong { color: #999; font-weight: 600; }

/* ================== CART EMPTY ================== */
.lf-cart-empty {
  text-align: center;
  padding: 80px 24px;
  max-width: 500px;
  margin: 0 auto;
}
.lf-cart-empty__ico { color: var(--lf-text-3); margin-bottom: 20px; }
.lf-cart-empty__title { font-size: 16px; font-weight: 700; color: var(--lf-black); margin-bottom: 12px; }
.lf-cart-empty__text { color: var(--lf-text-2); margin-bottom: 24px; line-height: 1.6; }
.lf-cart-empty__btn {
  display: inline-block;
  background: var(--lf-black);
  color: #fff;
  padding: 14px 32px;
  font-weight: 700;
  border-radius: 4px;
  font-size: 14px;
}

/* ================== PDP ================== */
.lf-pdp {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .lf-pdp { grid-template-columns: 1fr; gap: 24px; } }

.lf-pdp__gallery-main {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--lf-bg-soft);
  overflow: hidden;
}
.lf-pdp__gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.lf-pdp__gallery-thumbs {
  display: flex; gap: 8px; margin-top: 12px;
  overflow-x: auto;
}
.lf-pdp__thumb {
  flex: 0 0 80px;
  height: 80px;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  background: var(--lf-bg-soft);
}
.lf-pdp__thumb.is-active { border-color: var(--lf-green); }
.lf-pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }

.lf-pdp__title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--lf-black);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0;
}
.lf-pdp__divider { width: 30px; height: 3px; background: var(--lf-black); margin: 12px 0 16px; }
.lf-pdp__price-old { font-size: 15px; color: var(--lf-text-3); text-decoration: line-through; margin-bottom: 4px; }
.lf-pdp__price {
  display: flex; align-items: center; gap: 8px;
  font-size: 34px; font-weight: 700; color: var(--lf-green-dark);
  margin-bottom: 4px;
}
.lf-pdp__price-pix { width: 22px; height: 22px; color: var(--lf-blue); }
.lf-pdp__parcel { font-size: 14px; color: var(--lf-text-2); margin-bottom: 24px; }

.lf-pdp__variant-label { font-size: 13px; font-weight: 700; color: var(--lf-black); margin-bottom: 10px; text-transform: uppercase; }
.lf-pdp__sizes { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.lf-pdp__size {
  min-width: 46px; height: 42px;
  border: 1px solid var(--lf-border);
  background: #fff;
  font-weight: 700;
  color: var(--lf-black);
  padding: 0 14px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.lf-pdp__size:hover { border-color: var(--lf-black); }
.lf-pdp__size.is-active { background: var(--lf-black); color: #fff; border-color: var(--lf-black); }

.lf-pdp__buy-row { display: flex; gap: 12px; margin-bottom: 20px; }
.lf-pdp__qty {
  display: flex; align-items: center;
  border: 1px solid var(--lf-border);
  border-radius: 4px;
  height: 52px;
  overflow: hidden;
}
.lf-pdp__qty button {
  width: 40px; height: 100%;
  background: #fff;
  border: none;
  font-size: 20px;
  color: var(--lf-black);
  font-weight: 700;
}
.lf-pdp__qty input {
  width: 44px; height: 100%;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--lf-black);
  background: #fff;
}
.lf-pdp__buy {
  flex: 1; height: 52px;
  background: var(--lf-green);
  color: #fff;
  border: none;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.15s;
}
.lf-pdp__buy:hover { background: var(--lf-green-dark); }

.lf-pdp__payment-card {
  background: var(--lf-bg-soft);
  border-radius: 6px;
  padding: 14px 20px;
  margin-bottom: 16px;
}
.lf-pdp__payment-title {
  font-size: 12px; font-weight: 700;
  color: var(--lf-text-2);
  text-align: center;
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.lf-pdp__payment-flags {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
}
.lf-pdp__payment-flags img { height: 22px; }
.lf-pdp__payment-flags span {
  display: inline-block;
  min-width: 34px; height: 22px;
  background: #fff;
  color: #666;
  font-size: 10px; font-weight: 700;
  border-radius: 3px;
  padding: 0 6px;
  display: inline-flex; align-items: center; justify-content: center;
}

.lf-pdp__trust-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--lf-bg-soft);
  padding: 14px 20px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.lf-pdp__trust-ico { color: var(--lf-black); flex-shrink: 0; }
.lf-pdp__trust-title { font-weight: 700; font-size: 14px; margin: 0 0 4px; }
.lf-pdp__trust-text { font-size: 12px; color: var(--lf-text-2); line-height: 1.4; }

.lf-pdp__desc {
  max-width: 1240px;
  margin: 32px auto;
  padding: 0 24px;
  color: var(--lf-text);
  font-size: 14px;
  line-height: 1.7;
}
.lf-pdp__desc h2 { font-size: 20px; margin: 0 0 16px; color: var(--lf-black); }
.lf-pdp__desc ul { padding-left: 20px; }
.lf-pdp__desc li { margin-bottom: 6px; }

.lf-related-title {
  max-width: 1240px;
  margin: 32px auto 20px;
  padding: 0 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--lf-black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 900px) {
  .lf-hero__title { font-size: 40px; }
  .lf-header { padding: 12px 16px; gap: 12px; }
  .lf-hamburger { display: flex; }
  .lf-header__nav { display: none; }
  .lf-header__nav.is-open {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--lf-black);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .lf-header__cart span:not(.lf-header__cart-ico) { display: none; }
}
@media (max-width: 480px) {
  .lf-hero { padding: 24px 16px 16px; }
  .lf-hero__title { font-size: 32px; }
  .lf-hero__badge { font-size: 12px; }
  .lf-grid-wrap { padding: 24px 12px 32px; }
  .lf-header__logo { font-size: 20px; padding: 3px 8px; }
}

/* ================== LEGACY COMPAT ================== */
.pdp-menu:not(.is-open) { display: none !important; }
.cart-bottom-bar:not(.is-active) { display: none !important; }
.cart-bottom-bar { display: none !important; }

/* ============================================================
   GOLD FIT — Kit progressivo (Onda 96)
   ============================================================ */
.lf-card__title-link { display: block; color: inherit; text-decoration: none; }
.lf-card__title-link:hover .lf-card__title { color: var(--lf-green-dark); }
.lf-card__sizes { display: flex; gap: 6px; margin: 8px 0 10px; flex-wrap: wrap; }
.lf-card__size {
  min-width: 32px; height: 30px; padding: 0 10px;
  border: 1px solid var(--lf-border);
  background: #fff; font-size: 12px; font-weight: 700; color: var(--lf-black);
  border-radius: 3px; cursor: pointer; transition: all 0.12s;
}
.lf-card__size:hover { border-color: var(--lf-black); }
.lf-card__size.is-active { background: var(--lf-black); color: var(--lf-green); border-color: var(--lf-black); }
.lf-card__buy {
  width: 100%; padding: 10px 14px; margin-top: 4px;
  background: var(--lf-green); color: var(--lf-black);
  border: none; border-radius: 4px;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: 0.5px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background 0.15s;
}
.lf-card__buy:hover { background: var(--lf-green-dark); color: #fff; }
.lf-card__buy.is-pending-size { background: transparent; color: var(--lf-black); border: 1px dashed var(--lf-black); }

.lf-fly-clone {
  position: fixed; z-index: 999; border-radius: 6px; overflow: hidden; pointer-events: none;
  transition: transform 0.7s cubic-bezier(0.5, 0, 0.5, 1), opacity 0.5s ease 0.3s, width 0.7s ease, height 0.7s ease;
}
.lf-fly-clone img { width: 100%; height: 100%; object-fit: cover; display: block; }

.lf-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55); z-index: 998;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s, visibility 0s 0.25s;
}
.lf-drawer-overlay.is-open { opacity: 1; visibility: visible; transition: opacity 0.25s; }

.lf-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 100vw;
  background: #fff; z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  box-shadow: -6px 0 24px rgba(0, 0, 0, 0.16);
}
.lf-drawer.is-open { transform: translateX(0); }
.lf-drawer__header {
  background: var(--lf-black); color: #fff;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lf-drawer__title { font-size: 15px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.lf-drawer__close { background: none; border: none; color: #fff; padding: 4px; cursor: pointer; line-height: 1; }

.lf-drawer__progress { padding: 16px 20px; background: var(--lf-bg-soft); border-bottom: 1px solid var(--lf-border); }
.lf-progress__msg { font-size: 13px; color: var(--lf-black); font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
.lf-progress__msg strong { color: var(--lf-green-dark); }
.lf-progress__bar { height: 8px; background: #e5e5e5; border-radius: 99px; overflow: hidden; position: relative; }
.lf-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lf-green) 0%, var(--lf-green-dark) 100%);
  border-radius: 99px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.lf-progress__steps { display: flex; justify-content: space-between; margin-top: 6px; font-size: 11px; color: var(--lf-text-3); font-weight: 700; }
.lf-progress__step.is-active, .lf-progress__step.is-complete { color: var(--lf-green-dark); }

.lf-drawer__items { flex: 1; overflow-y: auto; padding: 12px 16px; }
.lf-drawer__item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--lf-border); }
.lf-drawer__item:last-child { border-bottom: none; }
.lf-drawer__item-img { width: 68px; height: 90px; flex-shrink: 0; background: var(--lf-bg-soft); border-radius: 4px; overflow: hidden; }
.lf-drawer__item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lf-drawer__item-info { flex: 1; min-width: 0; }
.lf-drawer__item-name {
  font-size: 13px; font-weight: 700; color: var(--lf-black);
  margin: 0 0 4px; text-transform: uppercase; line-height: 1.3;
  overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.lf-drawer__item-size { font-size: 11px; color: var(--lf-text-2); margin-bottom: 6px; font-weight: 600; }
.lf-drawer__item-price { font-size: 14px; font-weight: 800; color: var(--lf-green-dark); }
.lf-drawer__item-price-old { font-size: 11px; color: var(--lf-text-3); text-decoration: line-through; margin-right: 6px; font-weight: 600; }
.lf-drawer__item-remove { background: none; border: none; color: var(--lf-text-3); padding: 4px; cursor: pointer; align-self: flex-start; }
.lf-drawer__item-remove:hover { color: #dc2626; }
.lf-drawer__empty { text-align: center; padding: 40px 20px; color: var(--lf-text-2); }
.lf-drawer__empty-ico { color: var(--lf-text-3); margin-bottom: 12px; }

.lf-drawer__footer { padding: 16px 20px; background: #fff; border-top: 1px solid var(--lf-border); }
.lf-drawer__totals { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; font-size: 13px; color: var(--lf-text-2); }
.lf-drawer__save { font-size: 12px; color: var(--lf-green-dark); font-weight: 700; margin-bottom: 12px; }
.lf-drawer__total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 14px;
  font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 800; color: var(--lf-black);
}
.lf-drawer__total strong { color: var(--lf-green-dark); font-size: 22px; }
.lf-drawer__cta {
  display: block; width: 100%; padding: 14px;
  background: var(--lf-green); color: var(--lf-black);
  border: none; border-radius: 4px;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 14px;
  text-align: center; text-transform: uppercase; letter-spacing: 0.5px;
  cursor: pointer; text-decoration: none;
}
.lf-drawer__cta:hover { background: var(--lf-green-dark); color: #fff; }
.lf-drawer__cta:disabled { opacity: 0.5; cursor: not-allowed; }

.lf-confirm { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; }
.lf-confirm.is-open { display: flex; }
.lf-confirm__box { background: #fff; padding: 24px; border-radius: 8px; max-width: 360px; width: 100%; text-align: center; }
.lf-confirm__title { font-weight: 800; font-size: 16px; color: var(--lf-black); margin-bottom: 8px; }
.lf-confirm__text { font-size: 13px; color: var(--lf-text-2); margin-bottom: 20px; line-height: 1.5; }
.lf-confirm__text strong { color: #dc2626; }
.lf-confirm__actions { display: flex; gap: 8px; }
.lf-confirm__btn { flex: 1; padding: 12px; border: none; border-radius: 4px; font-weight: 700; font-size: 13px; cursor: pointer; text-transform: uppercase; letter-spacing: 0.3px; }
.lf-confirm__btn--cancel { background: var(--lf-bg-soft); color: var(--lf-black); }
.lf-confirm__btn--confirm { background: #dc2626; color: #fff; }

.lf-toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--lf-black); color: #fff;
  padding: 12px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 600;
  opacity: 0; transition: opacity 0.25s, transform 0.25s;
  z-index: 1001; pointer-events: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.lf-toast.is-open { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 480px) {
  /* Onda 98.6: drawer NAO cobre tela toda no mobile — deixa 15% da direita
     visivel pro lead ver o site atras e conseguir clicar pra continuar comprando.
     Overlay mais claro (0.30 vs 0.55) pra site atras destacar. Click no overlay
     ainda fecha drawer (comportamento padrao) — assim user clica fora e continua. */
  .lf-drawer { width: 85vw; max-width: 380px; border-radius: 12px 0 0 12px; }
  .lf-drawer-overlay { background: rgba(0, 0, 0, 0.30); }
  .lf-card__buy { font-size: 11px; padding: 9px 12px; }
  .lf-card__size { min-width: 28px; height: 28px; font-size: 11px; padding: 0 8px; }
}
