/* Juliana Alencar Lingerie — tema do logo: rosa empoeirado, branco, serif elegante */
:root {
  --brand-rose: #c9a4ac;
  --brand-rose-mid: #b88992;
  --brand-rose-deep: #8e5f6a;
  --brand-rose-dark: #6b454e;
  --bg: #fdf8f9;
  --bg-elevated: #fffefe;
  --ink: #3a2e32;
  --ink-soft: #6b5c61;
  --accent: var(--brand-rose-deep);
  --accent-deep: var(--brand-rose-dark);
  --gold: #c9a962;
  --line: rgba(58, 46, 50, 0.1);
  --shadow: 0 20px 50px rgba(110, 79, 88, 0.12);
  --radius: 14px;
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: var(--brand-rose-deep);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: var(--brand-rose-dark);
}

.muted {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 254, 253, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header--brand {
  border-bottom-color: rgba(201, 164, 172, 0.45);
  box-shadow: 0 8px 32px rgba(142, 95, 106, 0.08);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

.header-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: rgba(201, 164, 172, 0.2);
  color: var(--brand-rose-dark);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.header-cart-btn:hover {
  background: rgba(201, 164, 172, 0.35);
}
.header-cart-btn:active {
  transform: scale(0.96);
}
.header-cart-icon {
  display: block;
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: var(--brand-rose-dark);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.15rem;
  text-align: center;
  font-family: var(--font-body);
}
.nav-cart .cart-badge {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.2rem;
  margin-left: 0.35rem;
  vertical-align: middle;
  font-size: 0.7rem;
  line-height: 1.2rem;
  height: 1.2rem;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
}
.logo-img {
  height: clamp(48px, 10vw, 62px);
  width: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(110, 79, 88, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}

.nav-cart {
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
}
.nav-cart:hover {
  color: var(--brand-rose-deep);
}

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav a:hover {
  color: var(--brand-rose-deep);
}

.nav-ig {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #f58529, #dd2a7b, #8134af);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.82rem !important;
}
.nav-ig:hover {
  filter: brightness(1.08);
}

.nav-wa {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.85rem !important;
  font-weight: 600;
}
.nav-wa:hover {
  filter: brightness(1.06);
  text-decoration: none !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--brand-rose-dark);
  transition: transform 0.2s;
}
.nav-toggle::before {
  top: 16px;
}
.nav-toggle::after {
  top: 26px;
}
body.nav-open .nav-toggle::before {
  transform: translateY(5px) rotate(45deg);
}
body.nav-open .nav-toggle::after {
  transform: translateY(-5px) rotate(-45deg);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem 1.5rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  body.nav-open .nav {
    display: flex;
  }
  body.nav-open {
    overflow: hidden;
  }
  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }
  .nav-cart {
    text-align: left;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  padding: 4rem 1.5rem 5rem;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr min(42vw, 440px);
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-photo {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }
}

.hero-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(201, 164, 172, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 45% at 5% 90%, rgba(201, 164, 172, 0.2), transparent 50%),
    linear-gradient(168deg, #fffefe 0%, #fdf3f5 45%, #f8ecef 100%);
  z-index: 0;
}

/* Flor de lótus sutil (eco do ícone do logo) */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Cpath stroke='%23c9a4ac' stroke-opacity='0.22' stroke-width='0.8' d='M60 28c8 12 8 28 0 40M60 28c-8 12-8 28 0 40M38 42c14-4 30-4 44 0M38 78c14 4 30 4 44 0M42 38c-4 14-4 30 0 44M78 38c4 14 4 30 0 44'/%3E%3C/svg%3E");
  background-size: 140px;
  opacity: 0.9;
  pointer-events: none;
}

.hero-content {
  position: relative;
  min-width: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
  color: var(--brand-rose-deep);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.hero-lead {
  max-width: 420px;
  color: var(--ink-soft);
  margin: 0 0 2rem;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-rose-deep), var(--brand-rose-dark));
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(107, 69, 78, 0.28);
}
.btn-primary:hover {
  text-decoration: none;
  filter: brightness(1.06);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  border: 1px solid rgba(201, 164, 172, 0.45);
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--brand-rose-deep);
  background: #fff;
  text-decoration: none;
}

.btn-wa {
  background: #25d366;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}
.btn-wa:hover {
  text-decoration: none !important;
  filter: brightness(1.05);
}

.btn-small {
  display: inline-flex;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  margin-top: 0.75rem;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  text-decoration: none !important;
  border-radius: 999px;
  font-weight: 500;
}
.btn-small:hover {
  border-color: var(--brand-rose-deep);
  color: var(--brand-rose-dark);
  text-decoration: none !important;
}

/* Trust — faixa rosa do logo (texto branco) */
.trust {
  border-block: none;
  background: linear-gradient(90deg, var(--brand-rose-mid), var(--brand-rose));
  color: #fff;
}
.trust article strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: #fff;
}
.trust article span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
}

.trust-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 720px) {
  .trust-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Sections */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.product-card:hover {
  transform: translateY(-4px);
}

.product-visual {
  height: 220px;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: #f0e8e6;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.catalog-cta {
  text-align: center;
  margin: 2.5rem 0 0;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
  font-weight: 600;
}
.product-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.price {
  display: block;
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  align-items: center;
}
.product-actions .btn-small {
  margin-top: 0;
}
.btn-buy {
  background: var(--brand-rose-dark) !important;
  border-color: var(--brand-rose-dark) !important;
  color: #fff !important;
}
.btn-buy:hover {
  filter: brightness(1.06);
}
.btn-buy-lg {
  font-size: 1.05rem;
  padding: 0.85rem 1.25rem;
}
.buy-highlight {
  outline: 2px solid var(--brand-rose);
  outline-offset: 6px;
  border-radius: var(--radius);
  transition: outline-color 0.3s;
}

.btn-cart {
  background: var(--brand-rose-deep) !important;
  color: #fff !important;
  border-color: transparent !important;
}
.btn-cart:hover {
  filter: brightness(1.06);
  text-decoration: none !important;
}

.btn-catalog.btn-ghost {
  background: transparent;
}

/* Carrinho (drawer) */
.cart-root {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.cart-root.is-open {
  pointer-events: auto;
  visibility: visible;
}
.cart-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(58, 46, 50, 0.45);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.cart-root.is-open .cart-backdrop {
  opacity: 1;
}
.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 420px);
  height: 100%;
  max-height: 100dvh;
  background: var(--bg-elevated);
  box-shadow: -12px 0 40px rgba(58, 46, 50, 0.18);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}
.cart-root.is-open .cart-drawer {
  transform: translateX(0);
}
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.cart-drawer-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}
.cart-close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: rgba(201, 164, 172, 0.2);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.cart-close:hover {
  background: rgba(201, 164, 172, 0.35);
}
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}
.cart-empty {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}
.cart-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.cart-line:first-child {
  padding-top: 0;
}
.cart-line-name {
  font-weight: 600;
  margin: 0;
  font-size: 0.95rem;
}
.cart-line-meta {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.cart-line-controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  grid-column: 1 / -1;
}
.cart-qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  color: var(--ink);
}
.cart-qty-btn:hover {
  border-color: var(--brand-rose-mid);
}
.cart-qty-val {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 600;
}
.cart-line-remove {
  grid-column: 2;
  grid-row: 1;
  border: none;
  background: none;
  color: var(--brand-rose-deep);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  align-self: start;
}
.cart-drawer-foot {
  flex-shrink: 0;
  padding: 1.25rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-elevated), #fff);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 0 0.35rem;
  font-size: 1rem;
}
.cart-subtotal strong {
  font-size: 1.15rem;
  color: var(--brand-rose-dark);
}
.cart-foot-note {
  margin: 0 0 1rem;
  font-size: 0.82rem;
}
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.checkout-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.checkout-form .field span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.checkout-form input,
.checkout-form textarea {
  font: inherit;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}
.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: 2px solid rgba(142, 95, 106, 0.35);
  outline-offset: 1px;
}
.btn-block {
  width: 100%;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}
.cart-legal {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

body.cart-open {
  overflow: hidden;
}
.sizes {
  background: linear-gradient(145deg, var(--brand-rose-dark) 0%, #4a3338 100%);
  color: #fffefc;
  max-width: none;
  padding-inline: 0;
}
.sizes-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 800px) {
  .sizes-inner {
    grid-template-columns: 1fr;
  }
}
.sizes-copy h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  margin: 0 0 1rem;
  font-weight: 500;
}
.sizes-copy p {
  margin: 0;
  opacity: 0.9;
  font-weight: 300;
}
.sizes-copy strong {
  color: #fdeef1;
}

.size-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}
@media (max-width: 800px) {
  .size-chips {
    justify-content: flex-start;
  }
}
.size-chips li {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

/* Pagamento */
.payment-list {
  max-width: 640px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.payment-list li {
  padding: 0.85rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}
.payment-list strong {
  color: var(--brand-rose-deep);
}
.pay-note {
  max-width: 640px;
  margin: 1.25rem auto 0;
  text-align: center;
}

/* Entrega */
.shipping {
  background: var(--bg-elevated);
  border-block: 1px solid var(--line);
}
.shipping-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  text-align: center;
}
.shipping-note {
  margin: 1rem 0 0;
  font-size: 0.92rem;
}

.footer-policies p {
  margin: 0.35rem 0;
  font-size: 0.82rem;
  line-height: 1.45;
}
.footer-privacy {
  opacity: 0.85;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-visual {
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  margin: 0 0 1rem;
}

/* Instagram CTA */
.insta-cta {
  max-width: none;
  background: linear-gradient(120deg, #fff7f8, #f5e4e8);
  border-block: 1px solid rgba(201, 164, 172, 0.25);
}
.insta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 1.5rem;
}
.insta-inner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 0.75rem;
}
.insta-inner p {
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}

.insta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* Contact */
.contact-inner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 1rem;
}
.contact-inner p {
  margin: 0.35rem 0;
}

/* Footer — mesma linguagem do logo */
.site-footer {
  border-top: none;
  padding: 2.25rem 1.5rem;
  background: linear-gradient(180deg, var(--brand-rose) 0%, var(--brand-rose-mid) 100%);
  color: #fff;
}

.site-footer a {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
  opacity: 0.95;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.footer-tag {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.92;
  letter-spacing: 0.04em;
}

/* ——— Loja virtual (estilo catálogo) ——— */
.top-bar {
  background: var(--brand-rose-dark);
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  padding: 0.45rem 1rem;
  letter-spacing: 0.03em;
}

.category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.65rem 1.5rem 0.85rem;
  border-top: 1px solid var(--line);
  max-width: 1120px;
  margin: 0 auto;
}

.cat-pill {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--ink-soft);
}
.cat-pill.is-active,
.cat-pill:hover {
  background: var(--brand-rose);
  border-color: var(--brand-rose);
  color: #fff;
}

.store-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.store-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.15s;
}
.store-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.store-card .product-visual {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #f3ecee;
}
.store-card .product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-cat {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.store-card .product-body {
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-code {
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.product-sizes {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0.25rem 0 0.5rem;
}
.store-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.store-card h3 a {
  color: inherit;
  text-decoration: none;
}
.store-card h3 a:hover {
  color: var(--brand-rose-deep);
}

.pay-strip {
  background: #fff;
  border-block: 1px solid var(--line);
  padding: 1.5rem;
}
.pay-strip-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.pay-strip-title {
  text-align: center;
  font-weight: 600;
  margin: 0 0 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.pay-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}
.pay-icons li {
  text-align: center;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.82rem;
}
.pay-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.25rem;
  border-radius: 50%;
  background: rgba(201, 164, 172, 0.25);
  font-size: 0.65rem;
  font-weight: 700;
}

.store-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.admin-link {
  font-size: 0.78rem !important;
  opacity: 0.7;
}

/* Página do produto */
.page-product .product-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--brand-rose-deep);
}
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.product-detail-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f3ecee;
}
.product-detail-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.product-detail-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0.35rem 0;
}
.price--lg {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-rose-dark);
}
.size-picker {
  margin: 1.25rem 0;
}
.size-picker-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.size-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.size-btn {
  min-width: 2.75rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font: inherit;
  cursor: pointer;
}
.size-btn.is-active {
  background: var(--brand-rose-dark);
  border-color: var(--brand-rose-dark);
  color: #fff;
}
.color-picker {
  margin: 1rem 0 0.25rem;
}
.color-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.color-btn {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}
.color-btn.is-active {
  background: var(--brand-rose);
  border-color: var(--brand-rose);
  color: #fff;
}
.stock-status {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
}
.product-colors {
  font-size: 0.82rem;
  color: var(--ink-muted, #6b5c61);
  margin: 0.25rem 0 0;
}
.product-detail-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.product-desc h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.related-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Checkout / Pagamento ——— */
.checkout-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.checkout-wrap h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0.5rem 0 1.25rem;
}
.checkout-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  font-size: 0.88rem;
}
.checkout-steps li {
  color: var(--ink-soft);
}
.checkout-steps .is-done {
  color: var(--brand-rose-dark);
  font-weight: 600;
}
.checkout-steps .is-active {
  color: var(--brand-rose-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.checkout-summary,
.checkout-pay {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.checkout-summary h2,
.checkout-pay h2 {
  font-size: 1.1rem;
  margin: 0 0 1rem;
}
.checkout-lines {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.checkout-lines li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.checkout-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  margin: 0.5rem 0 0;
}
.checkout-note {
  font-size: 0.85rem;
  margin: 0.75rem 0 0;
}
.pay-options {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.pay-option {
  cursor: pointer;
}
.pay-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pay-option-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.15rem 0.75rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.pay-option.is-selected .pay-option-card {
  border-color: var(--brand-rose);
  box-shadow: 0 0 0 1px var(--brand-rose);
}
.pay-option-icon {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.pay-option-card strong {
  font-size: 0.95rem;
}
.pay-option-card span:last-child {
  grid-column: 2;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.pay-detail {
  background: #fdf8f9;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
}
.pay-detail p {
  margin: 0;
}
.checkout-customer h3 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
}
.checkout-customer .field {
  margin-bottom: 0.85rem;
}
.checkout-customer .field span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.checkout-customer input,
.checkout-customer textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}
.btn-checkout-confirm {
  margin-top: 0.5rem;
}
.checkout-wa-note {
  font-size: 0.82rem;
  text-align: center;
  margin: 0.75rem 0 0;
}
.checkout-error {
  color: #b33;
  font-size: 0.9rem;
  margin: 0.75rem 0 0;
  padding: 0.65rem 0.85rem;
  background: #fff5f5;
  border: 1px solid #f0c8c8;
  border-radius: 8px;
}
.checkout-empty {
  text-align: center;
  padding: 3rem 1rem;
}
.checkout-empty h1 {
  font-family: var(--font-display);
}
.checkout-provider-badge {
  display: inline-block;
  background: #f3ecee;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  margin: 0 0 1rem;
}
.thankyou-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  text-align: center;
}
.thankyou-wrap h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 1rem;
}
.thankyou-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 2rem;
  line-height: 4rem;
  font-weight: 700;
}
.thankyou-wrap .btn {
  margin-top: 1.25rem;
}

/* ========== Versão telefone (mobile) ========== */
.mobile-bottom-nav {
  display: none;
}

.mobile-buy-bar {
  display: none;
}

@media (max-width: 860px) {
  body.has-mobile-nav {
    padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
  }

  input,
  textarea,
  select,
  .checkout-form input,
  .checkout-customer input {
    font-size: 16px;
  }

  body.page-product.has-mobile-nav {
    padding-bottom: calc(7.75rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    background: rgba(255, 254, 253, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    padding: 0.3rem 0.35rem calc(0.3rem + env(safe-area-inset-bottom, 0px));
    justify-content: space-around;
    align-items: stretch;
    box-shadow: 0 -4px 24px rgba(58, 46, 50, 0.1);
  }

  .mbn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.12rem;
    padding: 0.35rem 0.2rem;
    border: none;
    background: none;
    color: var(--ink-soft);
    font: inherit;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    min-height: 3.1rem;
    min-width: 3rem;
    position: relative;
    -webkit-tap-highlight-color: transparent;
  }

  .mbn-item:hover,
  .mbn-item.is-active {
    color: var(--brand-rose-dark);
  }

  .mbn-icon {
    width: 1.4rem;
    height: 1.4rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mbn-item .cart-badge {
    position: absolute;
    top: 0.1rem;
    right: calc(50% - 1.35rem);
    min-width: 1rem;
    height: 1rem;
    line-height: 1rem;
    font-size: 0.58rem;
  }

  .mobile-buy-bar {
    display: flex;
    position: fixed;
    bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
    left: 0;
    right: 0;
    z-index: 140;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    background: rgba(255, 254, 253, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 20px rgba(58, 46, 50, 0.08);
  }

  .mobile-buy-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-rose-dark);
    flex-shrink: 0;
    min-width: 5.5rem;
  }

  .mobile-buy-bar .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    min-height: 48px;
  }

  body.cart-open .mobile-buy-bar,
  body.nav-open .mobile-bottom-nav {
    visibility: hidden;
    pointer-events: none;
  }

  .section {
    padding: 2.75rem 1rem;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .category-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 0.45rem;
    padding: 0.55rem 1rem 0.75rem;
    scrollbar-width: none;
    max-width: none;
  }

  .category-bar::-webkit-scrollbar {
    display: none;
  }

  .cat-pill {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .store-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .store-card .product-body {
    padding: 0.7rem 0.75rem 0.85rem;
  }

  .store-card h3 {
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .store-card .product-code,
  .store-card .product-sizes,
  .store-card .product-colors {
    font-size: 0.72rem;
  }

  .store-card .price {
    font-size: 0.88rem;
    margin-top: 0.4rem;
  }

  .product-actions {
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.5rem;
  }

  .product-actions .btn-small {
    width: 100%;
    justify-content: center;
    min-height: 40px;
    font-size: 0.78rem;
  }

  .cart-drawer {
    width: 100%;
    max-width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 2rem 1rem 2.5rem;
  }

  .hero-lead {
    max-width: none;
    margin-bottom: 1.5rem;
  }

  .hero-cta .btn {
    min-height: 48px;
  }

  .trust-inner {
    padding: 1.5rem 1rem;
    gap: 1.25rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .store-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: left;
  }

  .nav a,
  .nav-cart {
    padding: 0.55rem 0;
    font-size: 0.92rem;
  }

  .nav-wa,
  .nav-ig {
    text-align: center;
    margin-top: 0.25rem;
  }

  .product-page {
    padding: 1.25rem 1rem 2rem;
  }

  .breadcrumb {
    font-size: 0.78rem;
    margin-bottom: 1rem;
  }

  .product-detail-actions .btn {
    min-height: 48px;
  }

  .checkout-page {
    padding: 1.25rem 1rem 2rem;
  }

  .checkout-wrap h1 {
    font-size: 1.65rem;
  }

  .checkout-summary,
  .checkout-pay {
    padding: 1.15rem;
  }

  .btn-checkout-confirm {
    min-height: 48px;
  }

  .thankyou-page {
    padding: 2rem 1rem 2.5rem;
  }

  .pay-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  body {
    font-size: 1rem;
  }

  .top-bar {
    font-size: 0.72rem;
    padding: 0.38rem 0.65rem;
    line-height: 1.35;
  }

  .header-inner {
    padding: 0.65rem 1rem;
  }

  .logo-img {
    height: 40px;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .section-head h2 {
    font-size: 1.65rem;
  }

  .sizes-inner {
    padding: 2.5rem 1rem;
  }

  .sizes-copy h2 {
    font-size: 1.75rem;
  }

  .about-copy h2 {
    font-size: 1.75rem;
  }

  .store-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .store-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
}
