/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black:    #101214;
  --header:   #1a1a1a;
  --blue:     #00355d;
  --blue2:    #004a82;
  --white:    #ffffff;
  --gray1:    #f5f5f5;
  --gray2:    #e0e0e0;
  --gray3:    #9e9e9e;
  --gray4:    #606060;
  --dark-txt: #303030;
  --green:    #73a501;
  --red:      #e53935;
  --font:     'Montserrat', sans-serif;
}
body { font-family: var(--font); background: var(--white); color: var(--dark-txt); font-size: 14px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font); }
input { font-family: var(--font); outline: none; border: none; }

/* ===== CONTAINER ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--black);
  padding: 7px 0;
  font-size: 12px;
  color: #ccc;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left { font-size: 12px; }
.top-bar-center {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}
.top-bar-center svg { flex-shrink: 0; }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-bar-right a {
  color: #ccc;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background .2s;
  font-size: 13px;
}
.top-bar-right a:hover { background: rgba(255,255,255,0.25); }

/* ===== HEADER ===== */
header {
  background: var(--black);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo { flex-shrink: 0; }
.logo img { height: 90px; }
.logo-text {
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
  font-style: italic;
}

/* Search */
.search-wrap {
  flex: 1;
  max-width: 640px;
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  background: #2a2d30;
  border: 1px solid #444;
}
.search-wrap input {
  flex: 1;
  padding: 13px 22px;
  font-size: 14px;
  color: #fff;
  background: transparent;
}
.search-wrap input::placeholder { color: rgba(255,255,255,.45); }
.search-wrap button {
  background: transparent;
  color: #fff;
  padding: 0 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.search-wrap button:hover { background: rgba(255,255,255,.08); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.h-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
  transition: opacity .2s;
  position: relative;
  white-space: nowrap;
}
.h-action:hover { opacity: .8; }
.h-action svg { width: 28px; height: 28px; fill: #fff; }
.h-action .label { font-size: 10px; color: #fff; font-weight: 700; letter-spacing: .4px; }
.cart-badge {
  position: absolute;
  top: -4px; right: -6px;
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

/* ===== NAVIGATION ===== */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray2);
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
nav .container { display: flex; }
.nav-list { display: flex; width: 100%; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  color: var(--dark-txt);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  transition: color .2s, border-color .2s;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.nav-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}
.nav-link:hover,
.nav-item:hover > .nav-link {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.vintex-link       { color: #73a501 !important; }
.vintex-link:hover { color: #73a501 !important; border-bottom-color: #73a501 !important; }
.razux-link        { color: #e53935 !important; }
.razux-link:hover  { color: #e53935 !important; border-bottom-color: #e53935 !important; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray2);
  border-top: 2px solid var(--blue);
  min-width: 230px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.nav-item:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--gray4);
  border-bottom: 1px solid var(--gray2);
  transition: background .15s, color .15s, padding .15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
  background: var(--blue);
  color: var(--white);
  padding-left: 24px;
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: #000;
  /* aspect ratio 1920:810 */
  width: 100%;
}
.hero-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.hero-slide {
  min-width: 100%;
  position: relative;
  line-height: 0;
}
.hero-slide a {
  display: block;
  width: 100%;
}
.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Slider controls */
.hero-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,.45);
  border: 2px solid rgba(255,255,255,.25);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
  line-height: 1;
}
.hero-btn:hover { background: var(--blue); border-color: var(--blue); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-dots {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,.4);
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer;
  transition: background .3s, width .3s;
}
.dot.active { background: var(--white); width: 28px; border-color: var(--white); }

/* ===== PROMO STRIP ===== */
.promo-strip {
  background: var(--black);
  padding: 11px 0;
  border-bottom: 1px solid #2a2a2a;
}
.promo-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.promo-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: #ccc;
  padding: 0 24px;
  border-right: 1px solid #333;
}
.promo-item:last-child { border-right: none; }
.promo-item svg { width: 18px; height: 18px; fill: none; stroke: var(--green); stroke-width: 2; flex-shrink: 0; }

/* ===== SECTION HEADER ===== */
.sec-head {
  text-align: center;
  margin-bottom: 36px;
}
.sec-head h2 {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark-txt);
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
}
.sec-head h2::after {
  content:'';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
}
.sec-head p { color: var(--gray3); margin-top: 8px; font-size: 14px; }

/* ===== CATEGORIES ===== */
.categories { padding: 52px 0 36px; background: var(--gray1); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--gray2);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 6px 20px rgba(0,53,93,.12);
}
.cat-icon-wrap {
  height: 90px;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  background: linear-gradient(160deg, #f0f4ff 0%, #dce8ff 100%);
}
.cat-name {
  padding: 9px 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--dark-txt);
}

/* ===== BANNER GRID ===== */
.banners { padding: 32px 0; background: var(--white); }
.banner-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr;
  gap: 16px;
}
.b-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: stretch;
}
.b-card:hover .b-inner { transform: scale(1.03); }
.b-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  gap: 10px;
  text-align: center;
  transition: transform .3s;
  min-height: 230px;
}
.b-inner.short { min-height: 107px; }
.b-eyebrow {
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 3px;
}
.b-title { font-size: 20px; font-weight: 900; color: #fff; text-transform: uppercase; line-height: 1.2; }
.b-sub { font-size: 12px; color: rgba(255,255,255,.75); }
.btn-b {
  background: var(--white);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 4px;
  margin-top: 4px;
  transition: background .2s;
  display: inline-block;
}
.btn-b:hover { background: var(--gray2); }
.b-side { display: flex; flex-direction: column; gap: 16px; }

/* ===== CATEGORY BANNERS GRID ===== */
.cat-banners {
  padding: 32px 0;
  background: var(--white);
}
.catb-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}
.catb-card {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  line-height: 0;
  position: relative;
}
.catb-card:hover .catb-img { transform: scale(1.03); }
.catb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
/* Large left card spans both rows */
.catb-large {
  grid-row: 1 / 3;
}
.catb-large .catb-img {
  aspect-ratio: unset;
  height: 100%;
  min-height: 100%;
}
/* Small cards */
.catb-card:not(.catb-large) .catb-img {
  aspect-ratio: 16 / 9;
}

/* ===== MAIS VENDIDOS CAROUSEL ===== */
.mv-section {
  background: #fff;
  padding: 56px 0 60px;
}
.mv-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Title with side lines */
.mv-title-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}
.mv-line {
  flex: 1;
  height: 2px;
  background: var(--gray2);
  border-radius: 1px;
}
.mv-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark-txt);
  letter-spacing: 2px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mv-title::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 26px;
  background: var(--green);
  border-radius: 3px;
  flex-shrink: 0;
}
/* Section CTA */
.sec-cta { text-align: center; margin-top: 36px; }
.btn-sec-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--dark-txt);
  color: var(--dark-txt);
  background: transparent;
  padding: 10px 30px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .2s;
  font-family: var(--font);
  cursor: pointer;
  text-decoration: none;
}
.btn-sec-cta:hover { background: var(--dark-txt); color: #fff; }

/* Carousel outer: clips overflow, positions arrow */
.mv-carousel-outer {
  position: relative;
}

/* Scrollable track */
.mv-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
  /* right padding so last card doesn't go under arrow */
  padding-right: 60px;
}
.mv-track::-webkit-scrollbar { display: none; }

/* Next arrow */
.mv-arrow {
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray2);
  box-shadow: 0 4px 16px rgba(0,0,0,.14);
  font-size: 26px;
  color: var(--dark-txt);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s, color .2s, box-shadow .2s, transform .2s;
  line-height: 1;
}
.mv-arrow:hover {
  background: var(--dark-txt);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  transform: translateY(-50%) scale(1.08);
}

/* Product card */
.mv-card {
  flex: 0 0 calc(25% - 12px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray2);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
}
.mv-card:hover {
  box-shadow: 0 6px 22px rgba(0,0,0,.1);
  transform: translateY(-3px);
}

/* Image area */
.mv-img-wrap {
  position: relative;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  height: 200px;
  overflow: hidden;
}
.mv-img-wrap img {
  max-height: 160px;
  max-width: 100%;
  object-fit: contain;
  transition: transform .3s;
}
.mv-card:hover .mv-img-wrap img { transform: scale(1.05); }

/* VER PRODUTO overlay */
.mv-img-wrap::after {
  content: 'VER PRODUTO';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
  font-family: var(--font);
}
.mv-card:hover .mv-img-wrap::after { opacity: 1; }

/* Badges */
.mv-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 3px 9px;
  border-radius: 3px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
  z-index: 2;
}
.badge-dest { background: #101214; }
.badge-lanc { background: var(--blue); }

/* Info area */
.mv-info {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.mv-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-txt);
  line-height: 1.4;
}
.mv-stars {
  display: flex;
  gap: 1px;
}
.star {
  font-size: 13px;
  color: #f5b800;
  line-height: 1;
}
.mv-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark-txt);
  line-height: 1.1;
}
.mv-price.esgotado {
  color: var(--red);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .5px;
}
.mv-installment {
  font-size: 11px;
  color: var(--gray3);
  line-height: 1.5;
}

/* ===== PRODUCTS ===== */
.products { padding: 52px 0; background: var(--gray1); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.p-card {
  background: var(--white);
  border: 1px solid var(--gray2);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.p-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,.1);
  border-color: #bbd0e8;
}
.p-img-wrap {
  position: relative;
  background: var(--gray1);
  height: 196px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 16px;
}
.p-img-wrap img {
  max-height: 165px;
  max-width: 100%;
  object-fit: contain;
  transition: transform .3s;
}
.p-card:hover .p-img-wrap img { transform: scale(1.06); }
.p-placeholder {
  font-size: 72px;
  opacity: .6;
}
.p-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 9px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 9px;
  border-radius: 3px;
  color: #fff;
}
.bd-blue { background: var(--blue); }
.bd-green { background: var(--green); }
.bd-gray { background: #888; }
.p-info { padding: 14px 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
.p-name {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-txt);
  line-height: 1.3;
}
.p-old { font-size: 12px; color: #bbb; text-decoration: line-through; }
.p-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.p-price small { font-size: 13px; font-weight: 700; }
.p-installment { font-size: 11px; color: var(--gray3); }
.p-installment b { color: var(--dark-txt); }
.p-select {
  width: 100%;
  background: var(--gray1);
  border: 1px solid var(--gray2);
  color: var(--dark-txt);
  padding: 7px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-family: var(--font);
  margin-top: 2px;
}
.btn-comprar {
  margin-top: auto;
  width: 100%;
  background: var(--blue);
  color: #fff;
  padding: 11px;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background .2s;
}
.btn-comprar:hover { background: var(--blue2); }
.btn-comprar.off { background: #ccc; color: #999; cursor: not-allowed; }

.btn-all {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
  padding: 12px 36px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: all .2s;
  margin-top: 36px;
}
.btn-all:hover { background: var(--blue); color: #fff; }
.center { text-align: center; }

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 70px 0;
  background: linear-gradient(135deg, #00355d 0%, #001f3d 60%, #0a1220 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(115,165,1,.15) 0%, transparent 65%);
  pointer-events: none;
}
.newsletter .container { position: relative; z-index: 1; }
.newsletter h2 {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.newsletter p { color: rgba(255,255,255,.8); font-size: 14px; margin-bottom: 20px; }
.coupon-code {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 2px dashed rgba(255,255,255,.5);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 4px;
  padding: 8px 28px;
  border-radius: 6px;
  margin-bottom: 22px;
}
.nl-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.3);
}
.nl-form input {
  flex: 1;
  background: rgba(0,0,0,.25);
  color: #fff;
  padding: 13px 16px;
  font-size: 14px;
}
.nl-form input::placeholder { color: rgba(255,255,255,.5); }
.nl-form button {
  background: var(--green);
  color: #fff;
  padding: 13px 22px;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background .2s;
  white-space: nowrap;
}
.nl-form button:hover { background: #5c8401; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.5);
  z-index: 9999;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.12); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: #aaa;
  padding: 52px 0 0;
  border-top: 3px solid var(--blue);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 44px;
  margin-bottom: 44px;
}
.f-logo { height: 38px; margin-bottom: 14px; }
.f-logo-text {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  font-style: italic;
  margin-bottom: 14px;
  display: block;
}
.f-about { font-size: 13px; line-height: 1.75; color: #888; margin-bottom: 18px; }
.f-social { display: flex; gap: 10px; }
.f-soc {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: #bbb;
  font-size: 14px;
  transition: background .2s, color .2s;
}
.f-soc:hover { background: var(--blue); color: #fff; }
.f-col h4 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}
.f-col ul { display: flex; flex-direction: column; gap: 9px; }
.f-col ul a {
  font-size: 13px;
  color: #888;
  transition: color .2s, padding .15s;
}
.f-col ul a:hover { color: #fff; padding-left: 4px; }
.f-contact { display: flex; flex-direction: column; gap: 12px; }
.f-ci {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #888;
}
.f-ci svg { width: 16px; height: 16px; fill: none; stroke: var(--green); stroke-width: 2; flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p { font-size: 12px; color: #666; }
.pay-icons { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.pay-icon {
  background: #fff;
  border-radius: 4px;
  height: 24px;
  padding: 3px 7px;
  font-size: 10px;
  font-weight: 700;
  color: #111;
  display: flex; align-items: center;
}
.pay-pix { background: #32bcad; color: #fff; }
.pay-bol { background: #555; color: #fff; }

/* ===== HAMBURGER BUTTON (hidden on desktop) ===== */
.hamburger-btn {
  display: none;
  background: rgba(255,255,255,.1);
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}
.hamburger-btn:hover { background: rgba(255,255,255,.22); }

/* ===== MOBILE DRAWER MENU ===== */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9996;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.mob-overlay.open { display: block; }

.mob-menu {
  position: fixed;
  top: 0; left: -105%;
  width: 300px; max-width: 86vw;
  height: 100%;
  background: #1a1a1a;
  z-index: 9997;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: left .32s cubic-bezier(.4,0,.2,1);
}
.mob-menu.open { left: 0; }

.mob-hdr {
  background: #101214;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 1;
}
.mob-brand {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 3px;
  font-style: italic;
}
.mob-close {
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.mob-close:hover { background: rgba(255,255,255,.25); }

.mob-list { list-style: none; padding: 6px 0 44px; }

.mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: #ccc;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 1px solid #252525;
  transition: background .15s, color .15s;
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: none;
  text-decoration: none;
  font-family: var(--font);
}
.mob-link:hover, .mob-link:active { background: #242424; color: #fff; }

.mob-arr {
  font-size: 18px;
  font-weight: 400;
  color: #555;
  line-height: 1;
  transition: color .2s, transform .2s;
  display: inline-block;
}
.mob-has-sub.expanded .mob-arr { color: var(--green); }
.mob-link-vintex { color: #73a501 !important; }
.mob-link-razux  { color: #e53935 !important; }

.mob-sub { display: none; background: #111; list-style: none; }
.mob-has-sub.expanded .mob-sub { display: block; }
.mob-sub li a {
  display: block;
  padding: 12px 20px 12px 38px;
  color: #888;
  font-size: 13px;
  border-bottom: 1px solid #1a1a1a;
  transition: color .15s, background .15s;
  text-decoration: none;
}
.mob-sub li a:hover { color: #fff; background: #1a1a1a; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ── TABLET + MOBILE ── */
@media (max-width: 860px) {

  /* TOP BAR */
  .top-bar-center { display: none; }
  .top-bar-right  { display: none; }
  .top-bar-left   { font-size: 11px; }

  /* HEADER */
  header { padding: 10px 0; }
  header .container { flex-wrap: wrap; gap: 10px; }
  .logo             { order: 1; }
  .logo img         { height: 52px; }
  .header-actions   { order: 2; margin-left: auto; gap: 8px; }
  .h-action .label  { display: none; }
  .h-action svg     { width: 24px; height: 24px; }
  .search-wrap      { order: 3; flex: 1 1 100%; max-width: 100%; }
  .search-wrap input { padding: 11px 18px; font-size: 13px; }

  /* Hamburger: show on mobile */
  .hamburger-btn { display: flex; }

  /* NAV: hidden on mobile — hamburger menu used instead */
  nav { display: none; }

  /* HERO */
  .hero-btn       { width: 34px; height: 34px; font-size: 20px; }
  .hero-prev      { left: 6px; }
  .hero-next      { right: 6px; }
  .hero-dots      { bottom: 10px; gap: 6px; }
  .banner-img     { height: auto; }

  /* PROMO STRIP: horizontal scroll on small screens */
  .promo-strip .container {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 8px;
  }
  .promo-strip .container::-webkit-scrollbar { display: none; }
  .promo-item { flex-shrink: 0; padding: 0 16px; }

  /* CATEGORY GRID */
  .cat-grid  { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .cat-icon-wrap { height: 70px; font-size: 28px; }

  /* BANNER GRID */
  .banner-grid { grid-template-columns: 1fr; }
  .catb-grid   { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .catb-large  { grid-row: auto; }
  .catb-card:not(.catb-large) .catb-img { aspect-ratio: 4/3; }

  /* MAIS VENDIDOS / EM DESTAQUE */
  .mv-section  { padding: 36px 0 40px; }
  .ed-section  { padding: 36px 0 40px; }
  .mv-card     { flex: 0 0 calc(50% - 8px); min-width: 155px; }
  .mv-img-wrap { height: 160px; padding: 14px; }
  .mv-img-wrap img { max-height: 130px; }
  .mv-track    { padding-right: 6px; gap: 12px; }
  .mv-arrow    { display: none; }
  .mv-title    { font-size: 17px; letter-spacing: 1.5px; }
  .mv-title-wrap { margin-bottom: 24px; }
  .mv-price    { font-size: 18px; }
  .mv-installment { display: none; }
  .sec-cta     { margin-top: 24px; }

  /* PRODUCTS */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* NEWSLETTER */
  .newsletter  { padding: 44px 0; }
  .newsletter h2 { font-size: 22px; letter-spacing: 1px; }

  /* FOOTER */
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  footer         { padding-top: 36px; }
}

/* ===== ANNOUNCE BAR ===== */
.announce-bar {
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: .4px;
}
.announce-track {
  display: inline-block;
  animation: ticker 35s linear infinite;
}
.announce-track:hover { animation-play-state: paused; }
.announce-bar strong { color: #ffd700; font-weight: 800; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== EM DESTAQUE SECTION ===== */
.ed-section {
  background: #f9f9f9;
  padding: 50px 0 60px;
}

/* ===== NOSSO CANAL (YouTube) ===== */
.yt-section {
  background: var(--black);
  padding: 56px 0 64px;
}
.yt-section .mv-title { color: #fff; }
.yt-section .mv-title::before { background: var(--green); }
.yt-section .mv-line  { background: #333; }
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 4px;
}
.yt-embed {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
}
.yt-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── SMALL MOBILE ── */
@media (max-width: 480px) {
  .container   { padding: 0 12px; }
  .logo img    { height: 40px; }
  .header-actions { gap: 6px; }
  .h-action svg { width: 22px; height: 22px; }
  .cart-badge  { font-size: 9px; min-width: 16px; height: 16px; }
  .search-wrap input { padding: 10px 14px; font-size: 12px; }

  .cat-grid    { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .cat-icon-wrap { height: 60px; font-size: 24px; }
  .cat-name    { font-size: 9px; }

  .mv-card     { flex: 0 0 calc(50% - 6px); min-width: 140px; }
  .mv-img-wrap { height: 140px; }
  .mv-name     { font-size: 11px; }
  .mv-price    { font-size: 16px; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  .newsletter  { padding: 36px 0; }
  .newsletter h2 { font-size: 18px; letter-spacing: 0; }
  .newsletter p  { font-size: 13px; }
  .nl-form     { flex-direction: column; border-radius: 8px; }
  .nl-form input  { border-radius: 6px 6px 0 0; padding: 13px 14px; }
  .nl-form button { border-radius: 0 0 6px 6px; padding: 13px; }
  .coupon-code { font-size: 18px; letter-spacing: 2px; padding: 6px 18px; }

  .b-title   { font-size: 16px; }
  .promo-item { font-size: 11px; padding: 0 12px; }

  .footer-grid { gap: 22px; }
  .f-about { font-size: 12px; }
}

/* ===== SEARCH DROPDOWN ===== */
.srch-dropdown {
  display: none;
  position: absolute;
  z-index: 9500;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  max-height: 500px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.srch-dropdown.open { display: block; }

.srch-section {
  padding: 12px 18px 6px;
  font-size: 11px;
  font-weight: 800;
  color: #303030;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid #f0f0f0;
}

/* Suggestions */
.srch-sugg { list-style: none; padding: 4px 0; }
.srch-sugg li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
}
.srch-sugg-icon { font-size: 14px; color: #999; flex-shrink: 0; }
.srch-sugg-link {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: #404040;
  text-decoration: none;
  width: 100%;
  border-bottom: 1px solid #f5f5f5;
  transition: color .15s;
}
.srch-sugg li:last-child .srch-sugg-link { border-bottom: none; }
.srch-sugg-link:hover { color: var(--blue); }

/* Products */
.srch-prods { list-style: none; padding: 4px 0 8px; }
.srch-prod-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 18px;
  text-decoration: none;
  color: #303030;
  border-bottom: 1px solid #f5f5f5;
  transition: background .15s;
}
.srch-prods li:last-child .srch-prod-link { border-bottom: none; }
.srch-prod-link:hover { background: #f8f8f8; }
.srch-prod-link img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  background: #f5f5f5;
  border-radius: 4px;
  padding: 4px;
}
.srch-prod-link span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.35;
}
.srch-dropdown mark {
  background: transparent;
  color: var(--blue);
  font-weight: 800;
}

/* ===== CART DRAWER ===== */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 10000;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.cart-overlay.open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0; right: -110%;
  width: 400px; max-width: 100vw;
  height: 100%;
  background: #fff;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  transition: right .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.18);
}
.cart-drawer.open { right: 0; }

/* Header */
.cart-header {
  background: var(--black);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  border-bottom: 3px solid var(--blue);
}
.cart-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cart-back {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}
.cart-back:hover { background: rgba(255,255,255,.15); }

/* Body */
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Empty state */
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 20px;
  text-align: center;
}
.cart-empty-icon { font-size: 56px; }
.cart-empty p { color: var(--gray3); font-size: 14px; }
.cart-empty-link {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 8px;
  text-decoration: none;
  transition: background .2s;
}
.cart-empty-link:hover { background: var(--blue2); }

/* Cart item */
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--gray2);
  border-radius: 8px;
  background: #fafafa;
  position: relative;
}
.cart-item-img {
  flex-shrink: 0;
  width: 72px; height: 72px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--gray2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 4px;
}
.cart-item-img img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.cart-item-placeholder { font-size: 32px; }
.cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.cart-item-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-txt);
  line-height: 1.35;
  padding-right: 24px;
}
.cart-item-price {
  font-size: 16px;
  font-weight: 900;
  color: var(--blue);
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 6px;
  border: 1px solid var(--gray2);
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
  font-family: var(--font);
}
.qty-btn:hover { background: var(--gray2); }
.qty-val {
  font-size: 14px;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
  color: var(--dark-txt);
}
.cart-item-remove {
  position: absolute;
  top: 10px; right: 10px;
  background: none;
  border: none;
  color: var(--gray3);
  font-size: 13px;
  cursor: pointer;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
  font-family: var(--font);
}
.cart-item-remove:hover { background: #fee; color: var(--red); }

/* Footer */
.cart-footer {
  border-top: 1px solid var(--gray2);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  background: #fff;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--dark-txt);
}
.cart-installment {
  font-size: 11px;
  color: var(--gray3);
  text-align: right;
}
.btn-checkout {
  display: block;
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-decoration: none;
  transition: background .2s;
}
.btn-checkout:hover { background: #5c8401; }
.btn-clear {
  background: none;
  border: 1px solid var(--gray2);
  color: var(--gray3);
  font-size: 12px;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font);
  transition: all .15s;
}
.btn-clear:hover { border-color: var(--red); color: var(--red); }

@media (max-width: 480px) {
  .cart-drawer { width: 100vw; }
}

/* ===== CHECKOUT DRAWER ===== */
.ck-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 10002;
}
.ck-overlay.open { display: block; }

.ck-drawer {
  position: fixed;
  top: 0; right: -110%;
  width: 480px; max-width: 100vw;
  height: 100%;
  background: #fff;
  z-index: 10003;
  display: flex;
  flex-direction: column;
  transition: right .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,.12);
}
.ck-drawer.open { right: 0; }

/* Header */
.ck-header {
  background: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-bottom: 1px solid #e8e8e8;
}
.ck-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  flex: 1;
}
.ck-back {
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
  flex-shrink: 0;
}
.ck-back:hover { background: #f0f0f0; }
.ck-secure {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  color: #4caf50;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  line-height: 1.3;
  text-align: right;
}
.ck-secure svg { flex-shrink: 0; }

/* Body */
.ck-body {
  flex: 1;
  overflow-y: auto;
  background: #f5f5f5;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Order summary card */
.ck-sum-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
.ck-sum-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid #f0f0f0;
}
.ck-sum-head:hover { background: #fafafa; }
.ck-sum-toggle { font-size: 10px; color: #888; transition: transform .2s; }
.ck-sum-toggle.open { transform: rotate(180deg); }
.ck-sum-items {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid #f0f0f0;
}
.ck-sum-items.hidden { display: none; }
.ck-sum-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ck-sum-img-wrap {
  position: relative;
  flex-shrink: 0;
}
.ck-sum-img-wrap img {
  width: 52px; height: 52px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  object-fit: cover;
  display: block;
}
.ck-sum-img-ph {
  width: 52px; height: 52px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  background: #f5f5f5;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.ck-sum-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: #4caf50;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid #fff;
}
.ck-sum-item-info { flex: 1; min-width: 0; }
.ck-sum-item-name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ck-sum-item-sub  { font-size: 11px; color: #888; margin-top: 1px; }
.ck-sum-item-price { font-size: 13px; font-weight: 700; color: #333; white-space: nowrap; flex-shrink: 0; }
.ck-sum-totals {
  padding: 10px 16px;
}
.ck-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #555;
  padding: 3px 0;
}
.ck-sum-row-total {
  font-size: 15px;
  font-weight: 700;
  color: #00355d;
  padding-top: 6px;
  margin-top: 4px;
  border-top: 1px solid #f0f0f0;
}
.ck-sum-row-total span:last-child { font-size: 17px; }
.ck-green { color: #4caf50; font-weight: 700; }
.ck-sum-install { font-size: 10px; color: #888; text-align: right; margin-top: 2px; }

/* Step cards */
.ck-sc {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  transition: border-left-color .2s;
}
.ck-sc--active {
  border-left: 3px solid #4caf50;
}
.ck-sc--done { border-left: 3px solid #e0e0e0; }
.ck-sc--locked { opacity: .7; }
.ck-sc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
}
.ck-sc-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid #ccc;
  color: #aaa;
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, color .2s;
}
.ck-sc-num--active { border-color: #4caf50; background: #4caf50; color: #fff; }
.ck-sc-num--done   { border-color: #4caf50; background: #4caf50; color: #fff; }
.ck-sc-title {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: #333;
}
.ck-sc--locked .ck-sc-title { color: #aaa; }
.ck-sc-edit {
  background: none;
  border: none;
  color: #2196f3;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  padding: 4px 8px;
  border-radius: 3px;
  transition: background .15s;
  flex-shrink: 0;
}
.ck-sc-edit:hover { background: #e3f2fd; }
.ck-sc-body { padding: 0 16px 16px; }
.ck-sc-done { padding: 2px 16px 14px; font-size: 12px; color: #555; line-height: 1.7; }
.ck-sc-locked {
  padding: 2px 16px 13px;
  font-size: 12px;
  color: #aaa;
}

/* Underline fields */
.ck-f { margin-bottom: 14px; }
.ck-f-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 7px;
  transition: border-color .15s;
}
.ck-f-wrap:focus-within { border-bottom-color: #4caf50; }
.ck-f-wrap.err { border-bottom-color: #e53935; }
.ck-f-icon { color: #b0b0b0; display: flex; flex-shrink: 0; }
.ck-f-input {
  flex: 1;
  border: none;
  background: none;
  font-size: 14px;
  color: #333;
  outline: none;
  font-family: var(--font);
  padding: 3px 0;
  min-width: 0;
}
.ck-f-input::placeholder { color: #aaa; }
.ck-f-select {
  flex: 1;
  border: none;
  background: none;
  font-size: 14px;
  color: #333;
  outline: none;
  font-family: var(--font);
  padding: 3px 0;
  cursor: pointer;
}
.ck-f-row { display: flex; gap: 20px; }
.ck-f-row .ck-f { flex: 1; }
.ck-f-row .ck-f--sm { flex: 0 0 80px; }
.ck-cep-st { font-size: 11px; color: #888; min-height: 14px; margin: -10px 0 6px; }
.ck-cep-link { font-size: 11px; color: #2196f3; text-decoration: underline; cursor: pointer; margin-left: auto; flex-shrink: 0; }

/* Shipping option */
.ck-ship-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px 14px;
  background: #fff;
  cursor: pointer;
  margin-bottom: 14px;
  transition: border-color .15s;
}
.ck-ship-opt:has(input:checked) { border-color: #4caf50; background: #f9fdf9; }
.ck-ship-opt input[type="radio"] { accent-color: #4caf50; flex-shrink: 0; cursor: pointer; }
.ck-ship-info { flex: 1; }
.ck-ship-name { font-size: 13px; font-weight: 700; color: #333; }
.ck-ship-days { font-size: 11px; color: #888; margin-top: 1px; }
.ck-ship-price { font-size: 13px; font-weight: 700; color: #4caf50; }

/* Payment options */
.ck-pay-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px 14px;
  background: #fff;
  cursor: pointer;
  margin-bottom: 8px;
  transition: border-color .15s, background .15s;
}
.ck-pay-opt:has(input:checked) { border-color: #4caf50; background: #f9fdf9; }
.ck-pay-opt input[type="radio"] { accent-color: #4caf50; width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }
.ck-pay-icon { font-size: 20px; flex-shrink: 0; }
.ck-pay-name { font-size: 13px; font-weight: 700; color: #333; }
.ck-pay-sub  { font-size: 11px; color: #888; margin-top: 1px; }
.ck-pix-tag  {
  display: inline-block;
  background: #4caf50;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 4px;
}

/* PIX detail */
.ck-pix-detail {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 4px;
  padding: 14px;
  margin: 10px 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.ck-pix-qr {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  width: 88px; height: 88px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 30px;
  gap: 2px;
}
.ck-pix-qr small { font-size: 9px; color: #888; }
.ck-pix-code {
  font-size: 9px;
  color: #777;
  word-break: break-all;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 8px;
  width: 100%;
  text-align: left;
  font-family: monospace;
  line-height: 1.5;
}
.ck-pix-copy {
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: background .15s;
  width: 100%;
}
.ck-pix-copy:hover { background: #43a047; }

/* Card detail */
.ck-card-detail {
  margin: 10px 0 12px;
}
.ck-card-brands { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.ck-cbrand {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  padding: 3px 7px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .3px;
}
.ck-cbrand.visa   { color: #1a1f71; }
.ck-cbrand.master { color: #eb001b; }
.ck-cbrand.amex   { color: #006fcf; }
.ck-cbrand.elo    { background: #1a1a1a; color: #f5c518; }
.ck-cbrand.hiper  { color: #c4161c; }

/* Boleto detail */
.ck-boleto-detail {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 4px;
  padding: 12px 14px;
  margin: 10px 0 12px;
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}
.ck-boleto-warn { color: #b45309; font-weight: 700; font-size: 12px; margin-top: 6px; }

/* Green button */
.ck-btn {
  width: 100%;
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 13px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background .15s;
  margin-top: 6px;
  letter-spacing: .2px;
}
.ck-btn:hover { background: #43a047; }
.ck-btn:disabled { background: #a5d6a7; cursor: not-allowed; }

/* Success */
.ck-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 40px 24px;
}
.ck-success-icon { font-size: 58px; }
.ck-success h2 { font-size: 22px; font-weight: 800; color: #333; }
.ck-success p  { font-size: 14px; color: #666; line-height: 1.6; }
.ck-success-total { font-size: 24px; font-weight: 900; color: #4caf50; }

@media (max-width: 480px) {
  .ck-drawer { width: 100vw; }
}
