:root {
  --color-primary: #b20000;
  --color-primary-dark: #8f0000;
  --color-accent: #8224e3;
  --color-text: #b20000;
  --color-heading: #b20000;
  --color-body: #ffffff;
  --color-muted: #6d6d6d;
  --color-line: #ececec;
  --color-soft: #f2f2f2;
  --color-soft-2: #faf7f5;
  --color-black: #0a0a0a;
  --color-success: #36b376;
  --radius: 5px;
  --shadow-card: 0 10px 25px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.12);
  --container: 1480px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--color-soft); }
body {
  margin: 0;
  background: var(--color-body);
  color: var(--color-text);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }

/* ===== TOP BAR ===== */
.top-bar {
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
}
.top-bar__inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar__marquee {
  display: flex;
  animation: marquee 18s linear infinite;
  gap: 60px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.top-bar__copy {
  font-weight: 700;
  letter-spacing: .01em;
  font-size: 14px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.top-bar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.top-bar__actions a {
  font-size: 14px;
  opacity: .8;
  transition: opacity .2s;
}
.top-bar__actions a:hover { opacity: 1; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(6px);
}
.site-header__main {
  min-height: 100px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.site-logo { width: 169px; justify-self: center; }
.site-nav, .site-actions { display: flex; align-items: center; gap: 18px; }
.site-nav { justify-content: flex-start; }
.site-actions { justify-content: flex-end; }
.site-nav a, .site-actions a, .site-actions button {
  font-size: .94rem;
  font-weight: 600;
  color: #6f6f6f;
  text-transform: none;
}
.site-nav a:hover, .site-actions a:hover { color: var(--color-primary); }
.account-link {
  color: var(--color-black) !important;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.account-link__text {
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .01em;
  max-width: 110px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-actions__divider { width: 1px; height: 34px; background: rgba(0,0,0,.12); }
.cart-link {
  color: #0a0a0a !important;
  display: inline-flex;
  align-items: center;
  font-size: 10px !important;
  font-weight: 600;
}
.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 21px;
  min-height: 21px;
  margin-left: 8px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(10,10,10,.12);
  align-items: center;
  justify-content: center;
  font-size: 0;
}
.menu-toggle svg { width: 20px; height: 20px; }

/* ===== HEADER BOTTOM BAR ===== */
.site-header__bottom {
  background: #f1f1f1;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.site-header__bottom .container {
  min-height: 44px;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(260px, 1fr);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-search {
  max-width: 560px;
  display: grid;
  grid-template-columns: 1fr 90px;
  align-items: center;
  gap: 0;
}
.header-search input {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 5px 0 0 5px;
  background: #fff;
  color: #000;
  font-size: 16px;
}
.header-search button {
  height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 0 5px 5px 0;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
}
.header-note {
  justify-self: end;
  font-size: .88rem;
  font-weight: 600;
  color: #222;
}
.mobile-menu { display: none; }

/* ===== HERO ===== */
.hero { display: block; }
.hero__panel img { width: 100%; object-fit: cover; }

/* ===== SECTIONS ===== */
.section { padding: 30px 0; }
.section--tight { padding-top: 10px; padding-bottom: 10px; }
.section-heading {
  margin: 0 0 28px;
  padding-top: 6px;
  text-align: center;
  color: var(--color-heading);
  font-size: clamp(1.5rem, 2vw, 1.7rem);
  font-weight: 300;
  line-height: 0.75;
}
.section-heading--secondary {
  margin-top: 6px;
  padding-top: 22px;
  border-top: 1px solid rgba(178, 0, 0, 0.08);
  line-height: 1.3;
}

/* ===== CATEGORY PILLS ===== */
.category-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 18px;
}
.category-pill {
  border: 1px solid rgba(178,0,0,.16); border-radius: 999px; padding: 10px 16px; background: #fff;
  color: var(--color-primary); font-size: .92rem; font-weight: 600;
}
.category-pill.is-active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* ===== PRODUCT GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  position: relative;
  background: transparent;
  box-shadow: none;
  transition: none;
}
.product-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  min-width: 50px;
  padding: 6px 10px;
  border-radius: 5px;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  margin-right: 15px;
}
.product-card__image-wrap {
  position: relative;
  aspect-ratio: 247/296;
  overflow: hidden;
  background: #fff;
}
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.product-card:hover .product-card__image {
  transform: scale(1.04);
}
.product-card__body {
  padding: 8px 4px 6px;
  text-align: center;
}
.product-card__title {
  height: 50px !important;
  padding-top: 5px;
  margin: 0 0 8px;
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.28;
  color: #1d1d1d;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.price-row { display: grid; gap: 2px; margin-bottom: 6px; justify-items: center; }
.price-row__regular {
  color: var(--color-accent);
  font-size: .82rem;
  text-decoration: line-through;
}
.price-row__sale {
  color: var(--color-accent);
  font-size: .82rem;
  font-weight: 700;
}
.price-row__installment {
  font-size: .78rem;
  color: #000;
}
.product-card__actions { display: grid; gap: 0; margin-top: 4px; }

/* ===== BUTTONS ===== */
.button-primary, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 700;
  transition: opacity .2s;
}
.button-primary {
  background: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .01em;
  width: 100%;
}
.button-primary:hover { opacity: .9; }
.button-secondary {
  background: transparent;
  color: var(--color-black);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
}
.button-secondary--compact {
  width: auto;
  min-width: fit-content;
}
.button-secondary--full {
  width: 100%;
}

/* ===== CTA ===== */
.section-cta {
  display: flex;
  justify-content: center;
  padding-top: 8px;
  padding-bottom: 24px;
}
.section-cta .button-primary {
  width: auto;
  background: #ff0000;
  border-bottom: 4px solid #333;
  border-right: 4px solid #333;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 0;
}

/* ===== FEATURE STRIP ===== */
.feature-strip {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.05);
  margin-top: 8px;
  margin-bottom: 18px;
}
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.feature-card { display: grid; justify-items: center; gap: 8px; padding: 12px 10px; text-align: center; }
.feature-card img { width: 25px; height: 25px; object-fit: contain; }
.feature-card h3 {
  margin: 0;
  color: var(--color-heading);
  font-size: .86rem;
  line-height: 1.25;
  font-weight: 700;
}

/* ===== CATALOG TOOLBAR ===== */
.catalog-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px;
}
.catalog-count { color: var(--color-muted); font-size: .92rem; }
.catalog-lead {
  max-width: 760px;
  margin: -8px auto 22px;
  text-align: center;
  color: var(--color-muted);
}
.catalog-toolbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.catalog-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.sort-select {
  min-width: 220px; height: 42px; padding: 0 14px; border: 1px solid var(--color-line); border-radius: 6px; background: #fff;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs { padding: 18px 0 6px; color: var(--color-muted); font-size: .9rem; text-transform: none; }

/* ===== PRODUCT PAGE ===== */
.product-layout {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,520px); gap: 34px; padding: 8px 0 42px;
}
.product-gallery { display: grid; gap: 14px; }
.product-gallery__hero, .cart-list, .cart-summary {
  overflow: hidden; border: 1px solid rgba(0,0,0,.05); border-radius: 8px; background: #fff;
}
.product-gallery__hero img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.product-gallery__thumbs { display: grid; grid-template-columns: repeat(auto-fit, minmax(90px,1fr)); gap: 10px; }
.product-gallery__thumb {
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  background: #fff;
}
.product-gallery__thumb img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 10px; }
.product-summary h1 {
  margin: 0 0 12px; color: var(--color-heading); font-size: clamp(1.8rem, 3vw, 2.3rem); line-height: 1.15; font-weight: 300;
}
.product-summary__price { margin-bottom: 18px; }
.product-summary__price .price-row__sale { font-size: 19px; color: #000; }
.product-summary__price .price-row__regular { font-size: 14px; }
.benefit-list { display: grid; gap: 10px; margin: 18px 0 22px; }
.benefit-list__item {
  display: flex; gap: 12px; align-items: center; padding: 12px 14px; border-radius: 6px; background: var(--color-soft-2);
}
.benefit-list__dot { width: 10px; height: 10px; border-radius: 999px; background: var(--color-success); flex: 0 0 auto; }
.pix-pill {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; padding: 5px 12px; border-radius: 3px;
  background: var(--color-success); color: #fff; font-size: 12px; font-weight: 700;
  width: 150px; height: 25px; line-height: 15px;
}
.product-buy-box { display: grid; grid-template-columns: 100px 1fr; gap: 12px; margin-bottom: 18px; margin-top: 25px; }
.quantity-input {
  height: 60px; padding: 0 12px;
  border: 1px solid #ddd; border-radius: 5px;
  background: #f2f2f2; color: #222; font-weight: 600;
}
.buy-button--large { min-height: 60px; font-size: 18px !important; }
.product-inline-actions { margin-top: 12px; }
.product-meta-line {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: .92rem;
}
.product-description {
  margin-top: 16px; padding: 15px; border-bottom: 3px solid #222; border-radius: 5px; background: #f5f5f5; color: #222;
}
.product-description h3, .product-description h4 { color: var(--color-heading); }
.related-products { padding-top: 8px; }

/* ===== WOO CART PAGE DESIGN ===== */
.checkout-wrapper { max-width: 1080px; margin: 0 auto; padding: 20px 15px 60px; }
.checkout-nav {
  display: flex; align-items: center; justify-content: center; list-style: none; padding: 0; margin: 0 0 35px;
  border-bottom: 2px solid #ececec;
}
.checkout-nav li {
  padding: 10px 20px 15px; color: #ccc; font-size: 1.2rem; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; margin-bottom: -2px; border-bottom: 2px solid transparent; text-transform: none;
}
.checkout-nav li.active { color: var(--color-heading); border-bottom-color: var(--color-heading); }
.checkout-nav li.done { color: var(--color-heading); }
.checkout-nav li:not(:last-child)::after { content: ">"; margin-left: 14px; color: #ccc; font-weight: 300; }
.checkout-nav .step-num {
  display: inline-flex; justify-content: center; align-items: center; width: 20px; height: 20px; background: currentColor; color: #fff; border-radius: 50%; font-size: 12px;
}

.cart-layout-woo {
  display: flex; gap: 30px; flex-wrap: wrap; align-items: flex-start;
}
.cart-col-left { flex: 1 1 600px; }
.cart-col-right { flex: 0 0 340px; }

table.shop_table {
  width: 100%; border-collapse: collapse; border-spacing: 0; margin-bottom: 20px;
}
table.shop_table th {
  padding: 10px 0; border-bottom: 3px solid #ececec; text-align: left; font-size: .85rem; font-weight: 700; color: #333; letter-spacing: .05em; text-transform: uppercase;
}
table.shop_table td {
  padding: 15px 0; border-bottom: 1px solid #ececec; vertical-align: middle;
}
table.shop_table.cart tbody tr:last-child td { border-bottom: 0; }

.product-remove { width: 30px; text-align: center; }
.remove-link {
  width: 24px; height: 24px; border: 2px solid #ccc; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 18px; color: #ccc; background: transparent; padding: 0; line-height: 1; transition: all .2s;
}
.remove-link:hover { border-color: var(--color-heading); color: var(--color-heading); }

.product-thumbnail { width: 90px; }
.product-thumbnail img { width: 70px; height: auto; border: 1px solid #eee; border-radius: 4px; }

.product-name a { color: var(--color-heading); font-weight: 600; font-size: .95rem; }
.product-name a:hover { text-decoration: underline; }
.product-price, .product-subtotal { color: #555; font-size: .95rem; }
.product-subtotal strong { color: var(--color-heading); }

.product-quantity .cart-item__controls {
  display: inline-flex; border: 1px solid #ddd; border-radius: 3px; overflow: hidden; height: 36px;
}
.qty-button {
  width: 30px; border: 0; background: #f9f9f9; font-size: 16px; color: #666; cursor: pointer; transition: background .2s; margin: 0;
}
.qty-button:hover { background: #eee; color: #333; }
.qty-value-input {
  width: 40px; border: 0 !important; border-left: 1px solid #ddd !important; border-right: 1px solid #ddd !important; border-radius: 0 !important; text-align: center; font-weight: 600; font-size: 14px; color: #333; -moz-appearance: textfield; padding: 0; background: transparent !important;
}
.qty-value-input::-webkit-outer-spin-button, .qty-value-input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}

table.shop_table .actions { padding-top: 20px; }
.button-continue {
  display: inline-block; padding: 10px 20px; border: 2px solid var(--color-heading); color: var(--color-heading); font-weight: 700; font-size: .85rem; border-radius: 3px; text-transform: uppercase; float: left; transition: all .2s;
}
.button-continue:hover { background: var(--color-heading); color: #fff; }
.button-update {
  display: inline-block; padding: 12px 20px; background: #e6e6e6; color: #666; border: 0; font-weight: 700; font-size: .85rem; border-radius: 3px; text-transform: uppercase; float: right; cursor: not-allowed;
}

.cart-totals { border: 2px solid var(--color-heading); padding: 20px 30px 30px; margin-bottom: 20px; border-radius: 3px; }
.cart-totals h2 {
  font-size: 1rem; color: #333; margin: 0 0 15px; padding-bottom: 10px; border-bottom: 3px solid #ececec; text-transform: uppercase; font-weight: 700; letter-spacing: .02em; text-align: left;
}
.cart-totals table.shop_table { margin-bottom: 25px; }
.cart-totals table.shop_table th { border-bottom: 1px solid #ececec; padding: 12px 0; color: #666; font-size: .9rem; text-transform: none; }
.cart-totals table.shop_table td { border-bottom: 1px solid #ececec; text-align: right; padding: 12px 0; }
.cart-totals .order-total th, .cart-totals .order-total td { border-bottom: 0; }
.cart-totals .order-total td strong { font-size: 1.25rem; color: #333; }
.cart-totals .order-total td small { display: block; font-size: .8rem; color: #777; margin-top: 4px; }

.wc-proceed-to-checkout { margin-top: 20px; }
.checkout-button {
  width: 100%; display: block; background: var(--color-heading); color: #fff; border: 0; padding: 16px 20px; font-weight: 700; font-size: 1rem; text-transform: uppercase; border-radius: 3px; transition: background .3s; text-align: center; cursor: pointer;
}
.checkout-button:hover { background: var(--color-primary-dark); }

.cart-coupon {
  border: 1px solid #ddd; border-top: 2px solid #ddd; padding: 15px 20px; border-radius: 3px;
}
.cart-coupon h3 {
  margin: 0; font-size: .95rem; color: #555; font-weight: 600; cursor: pointer; display: flex; align-items: center; text-transform: none;
}
.cart-coupon .coupon-content {
  margin-top: 15px; border-top: 1px solid #f0f0f0; padding-top: 15px;
}
.cart-coupon input {
  width: 100%; border: 1px solid #ddd; border-radius: 3px; padding: 10px 15px; font-size: .95rem; margin-bottom: 10px; box-shadow: inset 0 1px 2px rgba(0,0,0,.05);
}
.coupon-button {
  width: 100%; background: transparent; border: 2px solid #ddd; color: #777; font-weight: 700; padding: 10px; text-transform: uppercase; border-radius: 3px; transition: all .2s; cursor: pointer;
}
.coupon-button:hover { border-color: #999; color: #333; }

.woo-cart-empty { text-align: center; padding: 60px 20px; }
.woo-empty-icon { color: #e6e6e6; margin-bottom: 20px; display: flex; justify-content: center; }
.woo-empty-icon svg { width: 100px; height: 100px; }
.cart-empty-text { font-size: 1.1rem; color: #666; margin-bottom: 30px; }
.return-to-shop a {
  display: inline-block; padding: 12px 25px; background: var(--color-heading); color: #fff; font-weight: 700; text-transform: uppercase; border-radius: 3px; transition: opacity .2s;
}
.return-to-shop a:hover { opacity: .9; }

/* ===== CHECKOUT FORM FLOW ===== */
.checkout-form-container {
  max-width: 800px; margin: 0 auto; background: #fff; border: 1px solid #ececec; border-top: 3px solid var(--color-heading); border-radius: 4px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,.05);
}
.button-back-cart {
  padding: 8px 16px; background: transparent; border: 1px solid #ddd; border-radius: 3px; color: #555; font-weight: 600; font-size: .85rem; margin-bottom: 25px; display: inline-block; cursor: pointer; transition: all .2s;
}
.button-back-cart:hover { border-color: #999; color: #222; }

.checkout-form { display: grid; gap: 20px; }
.checkout-form__intro { display: grid; gap: 6px; padding-bottom: 15px; border-bottom: 1px solid #ececec; }
.checkout-form__intro strong { font-size: 1.25rem; color: #333; font-weight: 600; }
.checkout-form__intro span, .checkout-help { color: #666; font-size: .95rem; line-height: 1.5; }

.checkout-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.checkout-field, .checkout-label { display: grid; gap: 8px; }
.checkout-field span, .checkout-label span { font-size: .9rem; font-weight: 600; color: #333; }
.checkout-field span abbr.required { color: var(--color-heading); text-decoration: none; border-bottom: 0; }
.checkout-field--full { grid-column: 1 / -1; }
.checkout-static-value { padding: 12px 14px; border: 1px solid #ddd; border-radius: 14px; background: #faf7ff; color: #6f3fd8; font-weight: 600; }

.checkout-form input, .checkout-form select, .checkout-form textarea {
  width: 100%; border: 1px solid #ddd; border-radius: 3px; padding: 12px 15px; background: #fdfdfd; color: #333; font-size: .95rem; box-shadow: inset 0 1px 2px rgba(0,0,0,.04); transition: border-color .2s; box-sizing: border-box; font-family: inherit;
}
.checkout-form input:focus, .checkout-form select:focus, .checkout-form textarea:focus {
  border-color: #999; outline: none; background: #fff;
}
.checkout-form textarea { resize: vertical; min-height: 120px; }
.checkout-help { margin: 0; padding-top: 15px; border-top: 1px solid #ececec; }

/* ===== ACCOUNT AREA ===== */
.account-page {
  padding-bottom: 48px;
  background: #f6f3f0;
}
.account-page__hero {
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(242,236,230,.94) 100%);
  border-top: 1px solid #ece3dc;
  border-bottom: 1px solid #ece3dc;
  text-align: center;
}
.account-page__hero .container { padding: 22px 0 18px; }
.account-page__eyebrow {
  margin: 0;
  color: rgba(178, 0, 0, .72);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.account-page__hero h1 {
  margin: 10px 0 0;
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.account-page__content { padding-top: 32px; }
.account-auth {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid #eadfd7;
  background: #fff;
  box-shadow: 0 24px 48px rgba(81, 34, 18, .06);
}
.account-auth__panel {
  padding: 34px 28px 36px;
}
.account-auth__panel + .account-auth__panel {
  border-left: 1px solid #eee4dc;
}
.account-auth__header { margin-bottom: 22px; }
.account-auth__note {
  margin: -8px 0 18px;
  color: #6b5750;
  line-height: 1.7;
}
.account-auth__header p,
.account-dashboard__eyebrow,
.account-orders header p,
.account-card header p {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.account-auth__header h2,
.account-dashboard__hero h2,
.account-orders header h3,
.account-card header h3 {
  margin: 0;
  color: #2a1a12;
  font-size: 1.65rem;
  font-weight: 500;
}
.account-auth__form {
  display: grid;
  gap: 20px;
}
.account-auth__form label {
  display: grid;
  gap: 8px;
}
.account-auth__form label span {
  color: #23150f;
  font-size: 1rem;
  font-weight: 700;
}
.account-auth__form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #ddd2ca;
  border-radius: 4px;
  background: #f8f6f4;
  color: #2a1a12;
  font: inherit;
}
.account-auth__form input:focus {
  outline: none;
  border-color: #d1a28f;
  box-shadow: 0 0 0 3px rgba(178, 0, 0, .08);
  background: #fff;
}
.account-auth__checkbox {
  grid-auto-flow: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.account-auth__checkbox input {
  width: 16px;
  min-height: 16px;
  padding: 0;
}
.account-auth__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.account-auth__link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #3f312c;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.account-auth__privacy {
  margin: -4px 0 2px;
  color: rgba(178, 0, 0, .76);
  line-height: 1.7;
}
.account-dashboard {
  display: grid;
  gap: 22px;
}
.account-dashboard__hero,
.account-card,
.account-orders {
  border: 1px solid #eadfd7;
  background: #fff;
  box-shadow: 0 18px 40px rgba(81, 34, 18, .06);
}
.account-dashboard__hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
}
.account-dashboard__hero span {
  color: #6b5750;
  font-weight: 600;
}
.account-dashboard__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.account-card,
.account-orders {
  padding: 26px 24px;
}
.account-card__meta {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
}
.account-card__meta div {
  display: grid;
  gap: 4px;
}
.account-card__meta dt {
  color: #8a746a;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.account-card__meta dd {
  margin: 0;
  color: #211510;
  font-size: 1rem;
  font-weight: 600;
}
.account-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.account-orders__list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.account-order-card {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid #efe5de;
  background: #fcfaf8;
}
.account-order-card div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.account-order-card strong {
  color: #251812;
  font-size: 1rem;
}
.account-order-card span,
.account-order-card p,
.account-orders__empty span {
  margin: 0;
  color: #6b5750;
}
.account-orders__empty {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px;
  border: 1px dashed #dfcfc3;
  background: #fcfaf7;
}

/* ===== ORDER SUCCESS ===== */
.order-success {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
  background: #d4edda;
  text-align: center;
}
.order-success__eyebrow {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #155724;
}
.order-success h2 { margin: 0; color: #155724; font-size: 2rem; }
.order-success p { margin: 0; color: #155724; font-size: .95rem; }
.order-success__meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 15px 0;
}
.order-success__meta span {
  padding: 8px 16px; border-radius: 3px; background: #fff; border: 1px solid #c3e6cb; font-size: .95rem; font-weight: 600; color: #155724;
}
.order-success__actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 15px;
}
.order-success__actions .button-primary,
.order-success__actions .button-secondary {
  width: auto; padding: 12px 25px; border-radius: 3px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; cursor: pointer; border: 2px solid transparent; align-items: center; justify-content: center; display: inline-flex;
}
.order-success__actions .button-primary { background: #155724; color: #fff; }
.order-success__actions .button-primary:hover { background: #0f3f1a; }
.order-success__actions .button-secondary { background: transparent; border-color: #155724; color: #155724; }
.order-success__actions .button-secondary:hover { background: rgba(21, 87, 36, 0.05); }
.order-success__gateway {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  background: #fff;
  color: #155724;
}
.order-success__gateway strong,
.order-success__gateway span {
  color: #155724;
}
.order-success__code {
  width: 100%;
  min-height: 120px;
  padding: 14px;
  border: 1px solid #c3e6cb;
  border-radius: 6px;
  background: #f8fff9;
  color: #155724;
  font-family: monospace;
  font-size: .88rem;
  line-height: 1.5;
  resize: vertical;
}

/* ===== FOOTER ===== */
.site-footer { margin-top: auto; background: var(--color-soft); }
.footer-widgets { padding: 36px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; }
.footer-column__title { margin: 0 0 10px; color: var(--color-heading); font-size: 1rem; font-weight: 600; }
.footer-divider { width: 30px; height: 3px; margin-bottom: 16px; background: var(--color-primary); }
.footer-links, .footer-copy { display: grid; gap: 10px; color: #000; font-size: .95rem; }
.footer-links a { color: #000; }
.footer-links a:hover { color: #000; text-decoration: underline; }
.footer-bottom {
  padding: 20px 0 26px; border-top: 1px solid rgba(0,0,0,.05); color: #000; text-align: center; font-size: .95rem;
}
#colecao-completa {
  padding-bottom: 64px;
}
.empty-state, .error-state { padding: 60px 16px; text-align: center; color: var(--color-muted); }

/* ===== DIVIDER ===== */
.is-divider {
  width: 100%;
  height: 3px;
  margin: 8px 0;
  background: var(--color-primary);
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: #000;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  animation: toastIn .3s ease, toastOut .3s ease 2.2s forwards;
  pointer-events: none;
}
@keyframes toastIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .site-header__main { grid-template-columns: auto 1fr auto; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav { display: none; }
  .site-logo { justify-self: center; }
  .mobile-menu { display: none; padding: 12px 0 16px; border-top: 1px solid rgba(0,0,0,.05); }
  .mobile-menu.is-open { display: block; }
  .mobile-menu__links { display: grid; gap: 12px; }
  .products-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .product-layout, .cart-layout { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .top-bar__inner { flex-direction: column; align-items: flex-start; padding: 8px 0; }
  .top-bar__actions { display: none; }
  .site-header__bottom .container { grid-template-columns: 1fr; }
  .header-search { width: 100%; max-width: none; }
  .header-note { justify-self: start; }
  .feature-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .products-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .catalog-toolbar { flex-direction: column; align-items: stretch; }
  .catalog-toolbar__actions { flex-direction: column; align-items: stretch; }
  .checkout-form__grid { grid-template-columns: 1fr; }
  .checkout-field--full { grid-column: auto; }
}

@media (max-width: 640px) {
  .hero { display: block; }
  .site-header__main { min-height: 81px; gap: 14px; }
  .site-logo { width: 132px; }
  .site-actions { gap: 10px; }
  .site-actions__divider { display: none; }
  .account-link { display: none; }
  .header-note { display: none; }
  .top-bar__copy { font-size: 12px; line-height: 1.3; }
  .feature-grid, .footer-grid, .products-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .account-auth,
  .account-dashboard__grid { grid-template-columns: 1fr; }
  .account-auth__panel + .account-auth__panel { border-left: 0; border-top: 1px solid #eee4dc; }
  .account-dashboard__hero { align-items: start; flex-direction: column; }
  .product-card__title { min-height: 60px; font-size: .85rem; }
  .product-buy-box { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 1fr; }
  .cart-item__price { justify-items: start; }
  
  .pagamento-layout { grid-template-columns: 1fr; }
}

/* ===== PAGAMENTO / CHECKOUT SAAS ===== */
.pagamento-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  align-items: start;
  margin-top: 20px;
}

.pagamento-form-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.funnel-step {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  border: 1px solid #eee;
}

.funnel-step__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
  padding-bottom: 12px;
  border-bottom: 2px solid #f5f5f5;
}

.step-circle {
  display: inline-flex;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: bold;
}

.pagamento-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 20px;
}

.order-summary-box {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #eee;
}

.order-summary-box h3 { margin-top: 0; font-size: 1.1rem; border-bottom: 1px solid #ddd; padding-bottom: 15px; margin-bottom: 15px; }

.order-summary-items {
  list-style: none; padding: 0; margin: 0 0 15px; display: flex; flex-direction: column; gap: 15px;
}

.order-summary-item {
  display: flex; gap: 15px; align-items: center;
}

.summary-item-image {
  position: relative; width: 64px; height: 64px; border-radius: 8px; border: 1px solid #ececec; background: #fff; display: flex; align-items: center; justify-content: center;
}

.summary-item-image img { width: 100%; border-radius: 8px; }

.summary-item-qty {
  position: absolute; top: -8px; right: -8px; background: rgba(114, 114, 114, 0.9); width: 20px; height: 20px; border-radius: 50%; color: #fff; font-size: 11px; display: flex; align-items: center; justify-content: center; font-weight: bold;
}

.summary-item-details { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.summary-item-name { font-size: .9rem; font-weight: 600; line-height: 1.2; color: #333; }
.summary-item-price { font-size: .9rem; color: #666; }

.order-summary-totals {
  border-top: 1px solid #ddd; padding-top: 15px; display: flex; flex-direction: column; gap: 10px; font-size: 1rem;
}

.summary-line { display: flex; justify-content: space-between; align-items: center; color: #555; }
.summary-line.summary-total { font-size: 1.2rem; font-weight: 700; color: #000; margin-top: 5px; }

.trust-badge {
  background: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 15px; text-align: center; font-size: .85rem; color: #666;
}

.trust-badge h4 { color: #b20000; margin-top: 0; margin-bottom: 5px; font-size: .95rem; }

.checkout-payment-methods {
  display: flex !important; flex-direction: column; gap: 10px;
}

.payment-method-radio {
  display: flex; align-items: stretch; gap: 10px; border: 1px solid #ddd; border-radius: 8px; padding: 12px 15px; cursor: pointer; transition: all 0.2s;
}

.payment-method-radio:hover { border-color: #bbb; background: #fdfdfd; }
.payment-method-radio input { margin-top: 4px; }
.payment-method-radio input:checked + .payment-method-box { opacity: 1; }
.payment-method-radio:has(input:checked) { border-color: var(--color-primary); background: rgba(178, 0, 0, 0.03); }

.payment-method-box { display: flex; flex-direction: column; gap: 5px; opacity: 0.8; }
.payment-method-box strong { color: #333; font-size: 1rem; }
.payment-method-box p { margin: 0; font-size: .85rem; color: #666; line-height: 1.3; }

.checkout-submit-block { text-align: center; margin-top: 25px; }
.checkout-button--large { width: 100%; font-size: 1.1rem; padding: 16px; border-radius: 5px; display: block; margin-bottom: 10px; }
.safe-checkout-label { margin: 0; font-size: .85rem; color: #555; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

/* ===== PAYMENT SITE ===== */
.pagamento-page {
  background: #fafafa;
}

.payment-site {
  min-height: 100vh;
  background: #fafafa;
  color: #111827;
  font-family: "Poppins", sans-serif;
}

.payment-site__header {
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}

.payment-site__header-inner {
  width: min(calc(100% - 32px), 1280px);
  min-height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.payment-site__logo {
  width: 130px;
  height: auto;
  object-fit: contain;
}

.payment-site__safe-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8657f0;
  font-size: .92rem;
  font-weight: 500;
}

.payment-site__safe-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #8657f0;
}

.payment-site__main {
  padding: 28px 0 48px;
}

.payment-site__container {
  width: min(calc(100% - 32px), 1280px);
  margin: 0 auto;
}

.payment-site__progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 24px;
}

.payment-site__progress-step {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: .92rem;
}

.payment-site__progress-step.is-current,
.payment-site__progress-step.is-complete {
  color: #a05cfa;
}

.payment-site__progress-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
}

.payment-site__progress-icon svg {
  width: 16px;
  height: 16px;
}

.payment-site__progress-step.is-current .payment-site__progress-icon,
.payment-site__progress-step.is-complete .payment-site__progress-icon {
  border-color: #a05cfa;
  color: #a05cfa;
}

.payment-site__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.payment-site__content {
  display: grid;
  gap: 24px;
}

.payment-site__form {
  display: grid;
  gap: 20px;
}

.payment-site__card,
.payment-site__summary,
.payment-site__testimonial,
.payment-site__guarantee {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
}

.payment-site__card {
  padding: 24px;
}

.payment-site__card--secondary {
  padding-top: 20px;
}

.payment-site__card-head {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.payment-site__card-head h2,
.payment-site__summary h2,
.payment-site__guarantee h3 {
  margin: 0;
  color: #111827;
  font-size: 1.05rem;
  font-weight: 500;
}

.payment-site__card-head p,
.payment-site__guarantee p {
  margin: 0;
  color: #6b7280;
  font-size: .88rem;
  line-height: 1.55;
}

.payment-site__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 16px;
}

.payment-site__field {
  display: grid;
  gap: 8px;
}

.payment-site__field--full {
  grid-column: 1 / -1;
}

.payment-site__field span {
  color: #111827;
  font-size: .95rem;
  font-weight: 500;
}

.payment-site__field input,
.payment-site__field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  color: #111827;
  padding: 0 18px;
  font-family: inherit;
  font-size: .9rem;
  outline: none;
}

.payment-site__field textarea {
  min-height: 110px;
  padding: 14px 18px;
  resize: vertical;
}

.payment-site__field input::placeholder,
.payment-site__field textarea::placeholder {
  color: #9ca3af;
}

.payment-site__field input:focus,
.payment-site__field textarea:focus {
  border-color: #c9b1f5;
  box-shadow: 0 0 0 3px rgba(160, 92, 250, 0.08);
}

.payment-site__phone-input {
  display: flex;
  align-items: stretch;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.payment-site__phone-input:focus-within {
  border-color: #c9b1f5;
  box-shadow: 0 0 0 3px rgba(160, 92, 250, 0.08);
}

.payment-site__phone-prefix {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-right: 1px solid #e5e7eb;
  color: #111827;
  font-size: .9rem;
  white-space: nowrap;
}

.payment-site__phone-prefix img {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  object-fit: cover;
}

.payment-site__phone-prefix strong {
  font-weight: 500;
}

.payment-site__phone-input input {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.payment-site__phone-input input:focus {
  border-color: transparent;
  box-shadow: none;
}

.payment-site__action-row {
  margin-top: 18px;
}

.payment-site__button-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.payment-site__button-group > * {
  flex: 1 1 0;
}

.payment-site__primary-button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: #a05cfa;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .2s ease, transform .15s ease, box-shadow .2s ease;
}

.payment-site__primary-button:hover {
  background: #8f4df0;
}

.payment-site__primary-button:active {
  transform: translateY(1px);
}

.payment-site__secondary-button {
  width: 100%;
  min-height: 52px;
  border: 1px solid #d8ccf8;
  border-radius: 999px;
  background: #fff;
  color: #7c3aed;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.payment-site__secondary-button:hover {
  border-color: #bda6f3;
  background: #faf7ff;
}

.payment-site__payment-methods {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.payment-site__payment-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
}

.payment-site__payment-option input {
  margin-top: 3px;
}

.payment-site__payment-option div {
  display: grid;
  gap: 4px;
}

.payment-site__payment-option strong {
  color: #111827;
  font-size: .96rem;
}

.payment-site__payment-option span {
  color: #6b7280;
  font-size: .86rem;
}

.payment-site__fields--address {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-site__subhead {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.payment-site__subhead strong,
.payment-site__faq h3,
.payment-site__rating h3 {
  color: #111827;
  font-size: .98rem;
  font-weight: 600;
}

.payment-site__subhead span,
.payment-site__faq-item p,
.payment-site__rating span,
.payment-site__footer-bottom span,
.payment-site__footer-bottom small {
  color: #6b7280;
  font-size: .82rem;
}

.payment-site__shipping-group {
  margin-top: 22px;
}

.payment-site__shipping-placeholder {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px dashed #d8ccf8;
  border-radius: 16px;
  background: #fcfaff;
}

.payment-site__shipping-placeholder strong {
  color: #111827;
  font-size: .94rem;
  font-weight: 600;
}

.payment-site__shipping-placeholder span {
  color: #6b7280;
  font-size: .8rem;
}

.payment-site__shipping-options,
.payment-site__bump-list,
.payment-site__faq-list {
  display: grid;
  gap: 12px;
}

.payment-site__shipping-option {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.payment-site__shipping-option input {
  margin: 0;
}

.payment-site__shipping-logo {
  width: 34px;
  height: 24px;
  object-fit: contain;
}

.payment-site__shipping-option.is-selected {
  border-color: #a05cfa;
  box-shadow: 0 0 0 2px rgba(160, 92, 250, 0.12);
}

.payment-site__shipping-copy {
  display: grid;
  gap: 4px;
}

.payment-site__shipping-copy strong,
.payment-site__shipping-price {
  color: #111827;
  font-size: .9rem;
  font-weight: 500;
}

.payment-site__shipping-copy span {
  color: #6b7280;
  font-size: .78rem;
}

.payment-site__payment-highlight {
  display: grid;
  gap: 12px;
}

.payment-site__payment-choice {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid #e9ddff;
  border-radius: 16px;
  background: #fcfaff;
}

.payment-site__payment-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-site__payment-choice-icon {
  color: #111827;
  font-size: 1rem;
}

.payment-site__payment-choice-copy {
  display: grid;
  gap: 2px;
}

.payment-site__payment-choice-copy strong {
  color: #a05cfa;
  font-size: .95rem;
  font-weight: 600;
}

.payment-site__payment-choice-copy span {
  color: #6b7280;
  font-size: .78rem;
}

.payment-site__payment-choice-check {
  width: 16px;
  height: 16px;
  border: 4px solid #a05cfa;
  border-radius: 999px;
  background: #fff;
}

.payment-site__bump-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1.5px dashed #b991ff;
  border-radius: 16px;
  background: #fff;
}

.payment-site__bump-card.is-selected {
  border-color: #ff9d63;
  background: #fffdfa;
}

.payment-site__bump-badge {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: #8f4df0;
  color: #fff;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.payment-site__bump-body {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.payment-site__bump-body img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  object-fit: cover;
}

.payment-site__bump-copy {
  display: grid;
  gap: 6px;
}

.payment-site__bump-copy strong {
  color: #111827;
  font-size: .98rem;
  font-weight: 600;
}

.payment-site__bump-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-site__bump-price span {
  color: #111827;
  font-size: 1.1rem;
  font-weight: 700;
}

.payment-site__bump-price del {
  color: #9ca3af;
  font-size: .75rem;
}

.payment-site__bump-price small {
  color: #22c55e;
  font-size: .62rem;
  font-weight: 700;
}

.payment-site__bump-copy p {
  margin: 0;
  color: #6b7280;
  font-size: .74rem;
  line-height: 1.4;
}

.payment-site__bump-button,
.payment-site__bump-status {
  width: 100%;
  min-height: 42px;
  border-radius: 999px;
  border: 0;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
}

.payment-site__bump-button {
  background: #f38138;
  color: #fff;
}

.payment-site__bump-status {
  display: grid;
  justify-items: start;
  gap: 2px;
  padding: 10px 14px;
  background: #ecfdf5;
  color: #10b981;
}

.payment-site__bump-status span {
  font-size: .72rem;
  font-weight: 400;
}

.payment-site__pix-box {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid #e9ddff;
  border-radius: 16px;
  background: #fff;
}

.payment-site__pix-box-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.payment-site__pix-box-head strong,
.payment-site__pix-price-row strong {
  color: #111827;
  font-size: .98rem;
  font-weight: 600;
}

.payment-site__pix-box-head span,
.payment-site__pix-price-row span {
  color: #6b7280;
  font-size: .85rem;
}

.payment-site__pix-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #ede9fe;
  border-radius: 12px;
  background: #fff;
}

.payment-site__pix-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.payment-site__pix-feature {
  display: grid;
  gap: 4px;
  padding: 14px 12px;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  background: #fff;
}

.payment-site__pix-feature strong {
  color: #111827;
  font-size: .8rem;
  font-weight: 600;
}

.payment-site__pix-feature span {
  color: #6b7280;
  font-size: .72rem;
  line-height: 1.4;
}

.payment-site__sidebar {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 16px;
  align-self: start;
}

.payment-site__summary {
  padding: 24px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.payment-site__summary-items {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.payment-site__summary-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.payment-site__summary-item img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
}

.payment-site__summary-info {
  display: grid;
  gap: 10px;
}

.payment-site__summary-title-group {
  display: grid;
  gap: 3px;
}

.payment-site__summary-title-group strong {
  color: #6b7280;
  font-size: .98rem;
  font-weight: 500;
}

.payment-site__summary-title-group span {
  color: #9ca3af;
  font-size: .78rem;
  line-height: 1.4;
}

.payment-site__summary-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.payment-site__summary-meta strong,
.payment-site__summary-totals span {
  color: #6b7280;
  font-weight: 500;
}

.payment-site__summary-price-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.payment-site__summary-bump-label {
  color: #6b7280;
  font-size: .78rem;
}

.payment-site__summary-remove {
  width: 18px;
  height: 18px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #fff;
  color: #9ca3af;
  font-size: .9rem;
  line-height: 1;
  cursor: pointer;
}

.payment-site__qty-pill {
  display: inline-grid;
  grid-template-columns: 28px 42px 28px;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.payment-site__qty-pill button,
.payment-site__qty-pill span {
  min-height: 28px;
  border: 0;
  background: #fff;
  color: #6b7280;
  font-family: inherit;
  font-size: .9rem;
  text-align: center;
}

.payment-site__qty-pill button {
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}

.payment-site__qty-pill button:hover {
  background: #f9fafb;
  color: #7c3aed;
}

.payment-site__qty-pill button:disabled {
  cursor: not-allowed;
  opacity: .7;
}

.payment-site__qty-pill span {
  border-left: 1px solid #d1d5db;
  border-right: 1px solid #d1d5db;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.payment-site__summary-totals {
  display: grid;
  gap: 16px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
}

.payment-site__summary-totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.payment-site__summary-total {
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.payment-site__summary-total span {
  color: #4b5563;
  font-size: 1.02rem;
  font-weight: 600;
}

.payment-site__guarantee {
  padding: 18px 20px;
}

.payment-site__testimonial {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
}

.payment-site__testimonial img {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
}

.payment-site__testimonial-body {
  display: grid;
  gap: 10px;
}

.payment-site__testimonial-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.payment-site__testimonial-head strong {
  color: #111827;
  font-size: 1rem;
}

.payment-site__testimonial-head span,
.payment-site__testimonial-body p {
  color: #6b7280;
}

.payment-site__stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 1rem;
}

.payment-site__testimonial-body p {
  margin: 0;
  line-height: 1.6;
  font-size: .96rem;
}

.payment-site__faq,
.payment-site__rating {
  display: grid;
  gap: 14px;
  padding: 18px 22px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
}

.payment-site__faq-item {
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 12px;
}

.payment-site__faq-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.payment-site__faq-item summary {
  cursor: pointer;
  color: #111827;
  font-size: .86rem;
  font-weight: 500;
  list-style: none;
}

.payment-site__faq-item summary::-webkit-details-marker {
  display: none;
}

.payment-site__faq-item p {
  margin: 10px 0 0;
}

.payment-site__counter {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 18px 20px 17px;
  border-radius: 0;
  background: #a05cfa;
  color: #fff;
  text-align: center;
}

.payment-site__counter-label {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
}

.payment-site__counter-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.payment-site__counter-icon {
  color: #b9f42e;
  font-size: .95rem;
  font-weight: 700;
  transform: translateY(-2px);
}

.payment-site__counter strong {
  color: #b9f42e;
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}

.payment-site__counter strong span {
  display: inline-block;
  min-width: 3.2ch;
  text-align: right;
}

.payment-site__counter strong span.is-bumping {
  animation: payment-counter-bump .45s ease;
}

.payment-site__counter small {
  color: rgba(255, 255, 255, 0.96);
  font-size: .66rem;
  font-weight: 500;
}

.payment-site__rating {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 30px 20px 34px;
  border: 0;
  border-top: 1px solid #ececec;
  border-radius: 0;
  background: #fff;
}

.payment-site__rating h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.payment-site__rating strong {
  color: #111827;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.payment-site__rating-stars {
  color: #f6a623;
  font-size: 2rem;
  letter-spacing: 5px;
  line-height: 1;
}

.payment-site__rating span {
  color: #4b5563;
  font-size: .95rem;
}

.payment-site__guarantee-hero {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 32px 20px 18px;
  text-align: center;
}

.payment-site__guarantee-hero h3 {
  margin: 0;
  color: #111827;
  font-size: 1.08rem;
  font-weight: 600;
}

.payment-site__guarantee-hero p {
  margin: 0;
  color: #6b7280;
  font-size: .84rem;
}

.payment-site__guarantee-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #60a5fa;
  border-radius: 999px;
  color: #60a5fa;
  font-size: 1rem;
}

.payment-site__footer {
  margin-top: 28px;
  background: linear-gradient(90deg, #8f4df0 0%, #b76cff 100%);
  color: #fff;
}

.payment-site__footer-top,
.payment-site__footer-bottom {
  width: min(calc(100% - 32px), 1280px);
  margin: 0 auto;
  text-align: center;
}

.payment-site__footer-top {
  padding: 16px 0 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: .78rem;
}

.payment-site__footer-bottom {
  display: grid;
  gap: 8px;
  padding: 10px 0 22px;
}

.payment-site__footer-bottom span,
.payment-site__footer-bottom small {
  color: rgba(255, 255, 255, 0.9);
}

.payment-site__footer-bottom small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.28);
}

@keyframes payment-counter-bump {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  40% {
    transform: translateY(-2px) scale(1.08);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .payment-site__grid {
    grid-template-columns: 1fr;
  }

  .payment-site__sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 720px) {
  .payment-site__header-inner,
  .payment-site__container {
    width: min(calc(100% - 20px), 1280px);
  }

  .payment-site__progress {
    gap: 10px;
  }

  .payment-site__progress-step {
    font-size: .76rem;
  }

  .payment-site__fields {
    grid-template-columns: 1fr;
  }

  .payment-site__fields--address,
  .payment-site__pix-features {
    grid-template-columns: 1fr;
  }

  .payment-site__shipping-option,
  .payment-site__payment-choice {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .payment-site__shipping-logo {
    width: 30px;
    height: 22px;
  }

  .payment-site__shipping-price,
  .payment-site__payment-choice-check {
    grid-column: 2;
    justify-self: end;
  }

  .payment-site__button-group {
    flex-direction: column-reverse;
  }

  .payment-site__card,
  .payment-site__summary,
  .payment-site__testimonial,
  .payment-site__guarantee {
    padding: 18px;
  }

  .payment-site__summary-item {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
  }

  .payment-site__bump-body {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .payment-site__bump-body img {
    width: 48px;
    height: 48px;
  }

  .payment-site__summary-item img {
    width: 56px;
    height: 56px;
  }

  .payment-site__testimonial {
    grid-template-columns: 1fr;
  }

  .payment-site__testimonial img {
    width: 48px;
    height: 48px;
  }
}
