/* =====================================================
   ORGANIO — Página Pública v2
   Design: editorial / barber premium
   ===================================================== */

/* ── Reset & Base ─────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --accent: #f5f0e8;
  --cream: var(--accent);
  --cream-dark: #e8e0d0;
  --dark: #1a1208;
  --dark-2: #231a10;
  --rust: #c4622d;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #d1c9bc;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, .10);
  --transition: 0.28s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Page Loader ──────────────────────────────────── */
#v2-loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
  gap: 16px;
}

#v2-loader .spin {
  width: 32px;
  height: 32px;
  border: 3px solid var(--cream-dark);
  border-top-color: var(--rust);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Sticky Header ────────────────────────────────── */
.v2-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 56px;
  background: rgba(245, 240, 232, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  transition: background var(--transition);
}

.v2-header.scrolled {
  background: rgba(245, 240, 232, .98);
}

.v2-header-menu {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background var(--transition);
}

.v2-header-menu:hover {
  background: rgba(0, 0, 0, .06);
}

.v2-header-menu svg {
  width: 22px;
  height: 22px;
}

.v2-header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.v2-header-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.v2-header-logo .logo-letter {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.v2-header-cart {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  position: relative;
  transition: background var(--transition);
}

.v2-header-cart:hover {
  background: rgba(0, 0, 0, .06);
}

.v2-header-cart svg {
  width: 22px;
  height: 22px;
}

.v2-cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--rust);
  color: white;
  font-size: .6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.v2-cart-badge.visible {
  display: flex;
}

/* Desktop nav (hidden on mobile) */
.v2-desktop-nav {
  display: none;
}

/* Hero columns — mobile: stacked layout */
.v2-hero-left {
  display: flex;
  flex-direction: column;
}

.v2-hero-right {
  display: block;
  padding: 0 20px 32px;
}

.v2-hero-stats-bar {
  display: flex;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, .1);
  margin-top: 28px;
  justify-content: space-around;
}

.v2-hero-stat {
  text-align: center;
}

/* ── Hero ─────────────────────────────────────────── */
.v2-hero {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.v2-hero-bg {
  display: none;
}

.v2-hero-overlay {
  display: none;
}

.v2-hero-content {
  color: var(--dark);
  max-width: none;
  padding: 100px 28px 0;
}

.v2-hero-img-card {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
}

.v2-hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-hero-overline {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
}

.v2-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 18px;
}

.v2-hero-heading em {
  font-style: italic;
  color: var(--rust);
}

.v2-hero-desc {
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(26, 18, 8, .65);
  margin-bottom: 32px;
  max-width: 400px;
}

.v2-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.v2-btn-primary {
  padding: 14px 28px;
  border-radius: 40px;
  background: var(--dark);
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.v2-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

.v2-btn-outline {
  padding: 14px 28px;
  border-radius: 40px;
  background: transparent;
  color: var(--dark);
  font-size: .9rem;
  font-weight: 600;
  border: 1.5px solid rgba(26, 18, 8, .35);
  transition: border-color var(--transition), background var(--transition);
}

.v2-btn-outline:hover {
  border-color: var(--dark);
  background: rgba(0, 0, 0, .05);
}

/* ── Stats ────────────────────────────────────────── */
.v2-stats {
  display: flex;
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.v2-stat {
  flex: 1;
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, .08);
}

.v2-stat:last-child {
  border-right: none;
}

.v2-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
}

.v2-stat-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

/* ── Gallery strip ────────────────────────────────── */
.v2-gallery {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.v2-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.v2-gallery:hover img {
  transform: scale(1.03);
}

/* ── Section commons ──────────────────────────────── */
.v2-section {
  padding: 50px 15px;
}

.v2-section-dark {
  background: var(--dark);
  color: var(--white);
}

.v2-section-overline {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 12px;
}

.v2-section-dark .v2-section-overline {
  color: var(--rust);
}

.v2-section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}

.v2-section-sub {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}

.v2-section-dark .v2-section-sub {
  color: rgba(255, 255, 255, .6);
}

/* ── Brand section ────────────────────────────────── */
.v2-brand-logo-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.v2-brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.v2-brand-logo-wrap .brand-letter {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
}

.v2-brand-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  text-align: center;
}

.v2-brand-heading em {
  font-style: italic;
  color: var(--rust);
}

.v2-brand-text {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .7);
  text-align: center;
  max-width: 440px;
  margin: 0 auto 28px;
}

.v2-brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.v2-brand-tag {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .25);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  cursor: default;
}

/* ── Services ─────────────────────────────────────── */
.v2-services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.v2-service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.v2-service-card:hover {
  transform: translateY(-3px);
}

.v2-service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--cream-dark);
}

.v2-service-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.v2-service-body {
  padding: 20px;
}

.v2-service-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.v2-service-desc {
  font-size: .82rem;
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.5;
}

.v2-service-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .8rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.v2-service-meta svg {
  width: 14px;
  height: 14px;
}

.v2-service-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.v2-service-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  transition: background var(--transition);
}

.v2-service-btn:hover {
  background: var(--dark-2);
}

.v2-service-btn svg {
  width: 16px;
  height: 16px;
}

/* ── Products ─────────────────────────────────────── */
.v2-cat-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.v2-cat-pill {
  padding: 6px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--dark);
  background: transparent;
  color: var(--dark);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.v2-cat-pill:hover,
.v2-cat-pill.active {
  background: var(--dark);
  color: var(--white);
}

.v2-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.v2-product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.v2-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

.v2-product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-dark);
}

.v2-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.v2-product-card:hover .v2-product-img-wrap img {
  transform: scale(1.06);
}

.v2-product-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.v2-product-featured {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--rust);
  color: var(--white);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v2-product-category {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .92);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
}

.v2-product-body {
  padding: 14px 14px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v2-product-name {
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.3;
}

.v2-product-desc {
  font-size: .74rem;
  color: var(--gray);
  line-height: 1.4;
  flex: 1;
}

.v2-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
}

.v2-product-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  white-space: nowrap;
}

.v2-product-add-btn {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: var(--radius);
  background: var(--dark);
  color: var(--white);
  border: none;
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.v2-product-add-btn:hover {
  background: var(--rust);
  transform: scale(1.04);
}

.v2-product-add-btn.added {
  background: #16a34a;
}

/* ── About ────────────────────────────────────────── */
.v2-about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.v2-about-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.v2-about-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.v2-about-text {
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .75);
}

.v2-about-text p+p {
  margin-top: 12px;
}

/* ── Testimonials ─────────────────────────────────── */
.v2-testi-wrap {
  position: relative;
  text-align: center;
}

.v2-testi-stars {
  font-size: 1.2rem;
  color: var(--rust);
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.v2-testi-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-style: italic;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 24px;
  quotes: '“' '”';
}

.v2-testi-quote::before {
  content: open-quote;
}

.v2-testi-quote::after {
  content: close-quote;
}

.v2-testi-author {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 32px;
}

.v2-testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.v2-testi-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  background: none;
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}

.v2-testi-btn:hover {
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .1);
}

.v2-testi-dots {
  display: flex;
  gap: 8px;
}

.v2-testi-dot {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition);
}

.v2-testi-dot.active {
  background: var(--rust);
}

/* ── FAQ ──────────────────────────────────────────── */
.v2-faq-list {
  margin-top: 32px;
}

.v2-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding: 0;
}

.v2-faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  text-align: left;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: color var(--transition);
}

.v2-faq-q:hover {
  color: var(--rust);
}

.v2-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, .2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 300;
  line-height: 1;
  transition: transform var(--transition), border-color var(--transition);
}

.v2-faq-item.open .v2-faq-icon {
  transform: rotate(45deg);
  border-color: var(--rust);
  color: var(--rust);
}

.v2-faq-a {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}

.v2-faq-item.open .v2-faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ── Contact ──────────────────────────────────────── */
.v2-contact-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 40px;
  background: var(--dark);
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  border: none;
  margin-bottom: 40px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.v2-contact-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.v2-contact-wa svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.v2-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v2-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.v2-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-contact-icon svg {
  width: 16px;
  height: 16px;
}

.v2-contact-detail {
  padding-top: 4px;
}

.v2-contact-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2px;
}

.v2-contact-value {
  font-size: .85rem;
  color: var(--dark);
  line-height: 1.5;
}

/* ── Footer ───────────────────────────────────────── */
.v2-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .5);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .75rem;
  gap: 12px;
  flex-wrap: wrap;
}

.v2-footer a {
  color: rgba(255, 255, 255, .5);
}

.v2-footer a:hover {
  color: rgba(255, 255, 255, .8);
}

/* ── Side Menu Drawer ─────────────────────────────── */
.v2-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.v2-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.v2-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 85vw);
  z-index: 910;
  background: var(--dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
}

.v2-menu-drawer.open {
  transform: translateX(0);
}

.v2-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.v2-menu-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.v2-menu-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-menu-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-menu-logo .letter {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
}

.v2-menu-company-name {
  font-size: .95rem;
  font-weight: 700;
  font-family: var(--font-serif);
}

.v2-menu-company-sub {
  font-size: .65rem;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v2-menu-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .5);
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.v2-menu-close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.v2-menu-nav-label {
  padding: 20px 24px 8px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
}

.v2-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: color var(--transition), background var(--transition);
}

.v2-menu-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .05);
}

.v2-menu-nav a svg {
  width: 14px;
  height: 14px;
  opacity: .4;
}

.v2-menu-social {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.v2-menu-social-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 12px;
}

.v2-menu-social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 8px;
}

.v2-menu-social-item svg {
  width: 14px;
  height: 14px;
}

.v2-menu-status {
  margin: 0 24px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
}

.v2-menu-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.v2-menu-wa {
  margin: 0 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 40px;
  background: var(--rust);
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  border: none;
  transition: background var(--transition);
}

.v2-menu-wa:hover {
  background: #b35528;
}

.v2-menu-wa svg {
  width: 18px;
  height: 18px;
}

/* ── Cart Panel ───────────────────────────────────── */
.v2-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.v2-cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.v2-cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 100vw);
  z-index: 910;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, .15);
}

.v2-cart-panel.open {
  transform: translateX(0);
}

.v2-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.v2-cart-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.v2-cart-title svg {
  width: 20px;
  height: 20px;
}

.v2-cart-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--gray);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background var(--transition);
}

.v2-cart-close:hover {
  background: var(--cream);
}

.v2-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.v2-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: var(--gray);
  text-align: center;
  gap: 12px;
}

.v2-cart-empty svg {
  width: 40px;
  height: 40px;
  opacity: .3;
}

.v2-cart-empty p {
  font-size: .85rem;
}

.v2-cart-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.v2-cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--cream);
  flex-shrink: 0;
}

.v2-cart-item-info {
  flex: 1;
  min-width: 0;
}

.v2-cart-item-name {
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}

.v2-cart-item-price {
  font-size: .8rem;
  color: var(--gray);
  margin-bottom: 8px;
}

.v2-cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.v2-cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .15);
  background: none;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.v2-cart-qty-btn:hover {
  background: var(--cream);
}

.v2-cart-qty {
  font-size: .85rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.v2-cart-item-remove {
  background: none;
  border: none;
  color: var(--gray);
  font-size: .8rem;
  padding: 4px;
  border-radius: 4px;
  transition: color var(--transition);
}

.v2-cart-item-remove:hover {
  color: #dc2626;
}

.v2-cart-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.v2-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  margin-bottom: 16px;
}

.v2-cart-subtotal span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rust);
}

.v2-cart-checkout {
  width: 100%;
  padding: 15px;
  border-radius: 40px;
  background: var(--dark);
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  border: none;
  margin-bottom: 10px;
  transition: background var(--transition), transform var(--transition);
}

.v2-cart-checkout:hover {
  background: var(--dark-2);
  transform: translateY(-1px);
}

.v2-cart-clear {
  display: block;
  width: 100%;
  text-align: center;
  font-size: .8rem;
  color: var(--gray);
  background: none;
  border: none;
  padding: 4px;
  transition: color var(--transition);
}

.v2-cart-clear:hover {
  color: #dc2626;
}

/* ── Booking modal ────────────────────────────────── */
/* ── Booking Modal ─────────────────────────────────────── */
#bookingModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 16px;
}

#bookingModal.open {
  display: flex;
}

.bk-inner {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 440px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .28);
  position: relative;
  scrollbar-width: none;
}
.bk-inner::-webkit-scrollbar { display: none; }

.bk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 0;
}

.bk-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -.02em;
}

.bk-close {
  background: #f4f4f4;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: .85rem;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.bk-close:hover { background: #e8e8e8; color: #333; }

.bk-svc-info {
  margin: 14px 20px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--cream, #fdf6ec) 0%, var(--cream-dark, #f5ede0) 100%);
  border-radius: 14px;
  border-left: 3px solid var(--primary, #d4922a);
}

.bk-svc-name {
  font-weight: 800;
  font-size: .98rem;
  color: #111;
  letter-spacing: -.01em;
}

.bk-body {
  padding: 0 20px 24px;
}

/* ── Calendar ───────────────────────────────────────────── */
.bk-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 0 2px;
}

.bk-cal-nav button {
  background: #f5f5f5;
  border: none;
  border-radius: 10px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.bk-cal-nav button:hover { background: #eaeaea; }

.bk-cal-label {
  font-size: .95rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -.01em;
}

.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 6px;
}

.bk-cal-header {
  text-align: center;
  font-size: .63rem;
  font-weight: 700;
  color: #bbb;
  padding: 6px 0;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.bk-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: .83rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .18s;
  color: #222;
  position: relative;
}

.bk-cal-day:hover:not(.bk-past):not(.bk-off) {
  background: var(--cream-dark, #f5ede0);
  color: var(--primary, #d4922a);
  font-weight: 700;
}

.bk-cal-day.bk-today::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary, #d4922a);
}

.bk-cal-day.bk-past,
.bk-cal-day.bk-off {
  opacity: .28;
  cursor: default;
}

.bk-cal-day.bk-sel {
  background: var(--primary, #d4922a);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(212, 146, 42, .35);
}
.bk-cal-day.bk-sel::after { display: none; }

/* ── Time slots ─────────────────────────────────────────── */
.bk-times-section-label {
  font-size: .68rem;
  font-weight: 800;
  color: #bbb;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 18px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bk-times-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #f0f0f0;
}

.bk-times-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.bk-time-slot {
  padding: 10px 6px;
  border: 1.5px solid #ececec;
  border-radius: 12px;
  background: #fafafa;
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s;
  color: #333;
  text-align: center;
  letter-spacing: -.01em;
}

.bk-time-slot:hover {
  border-color: var(--primary, #d4922a);
  background: var(--cream, #fdf6ec);
  color: var(--primary, #d4922a);
}

.bk-time-sel {
  background: var(--primary, #d4922a) !important;
  color: #fff !important;
  border-color: var(--primary, #d4922a) !important;
  box-shadow: 0 4px 12px rgba(212, 146, 42, .3) !important;
}

.bk-confirm-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--primary, #d4922a);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: .95rem;
  font-weight: 800;
  cursor: pointer;
  margin-top: 16px;
  font-family: var(--font-body);
  transition: opacity .2s, transform .15s;
  letter-spacing: -.01em;
}
.bk-confirm-btn:hover {
  opacity: .9;
  transform: translateY(-1px);
}
.bk-confirm-btn:active { transform: translateY(0); }

.bk-loading,
.bk-no-slots {
  text-align: center;
  padding: 24px;
  color: #aaa;
  font-size: .85rem;
}

.bk-step-success {
  text-align: center;
  padding: 24px 0;
}

.bk-step-success .check-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

/* ── Responsive ───────────────────────────────────── */
@media (min-width: 640px) {
  .v2-section {
    padding: 80px 48px;
  }

  .v2-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .v2-services-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
  }

  .v2-service-card {
    margin-bottom: 0;
  }
}

/* ── Desktop: 900px+ ──────────────────────────────── */
@media (min-width: 900px) {

  /* Header */
  .v2-header {
    height: 68px;
    padding: 0 40px;
  }

  .v2-header-menu {
    display: none;
  }

  .v2-header-logo {
    position: static;
    transform: none;
    gap: 12px;
  }

  .v2-header-logo .logo-name {
    display: block;
  }

  /* Desktop nav */
  .v2-desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
  }

  .v2-desktop-nav a {
    font-size: .82rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: color var(--transition);
    white-space: nowrap;
  }

  .v2-desktop-nav a:hover {
    color: var(--rust);
  }

  /* Hero: two-column */
  .v2-hero {
    min-height: 100svh;
    padding: 0;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .v2-hero-bg,
  .v2-hero-overlay {
    display: none;
  }

  .v2-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 60px 60px;
    color: var(--dark);
  }

  .v2-hero-content {
    max-width: none;
    color: var(--dark);
  }

  .v2-hero-heading {
    color: var(--dark);
  }

  .v2-hero-desc {
    color: rgba(26, 18, 8, .65);
  }

  .v2-btn-primary {
    background: var(--dark);
    color: var(--white);
  }

  .v2-btn-outline {
    border-color: rgba(26, 18, 8, .35);
    color: var(--dark);
  }

  .v2-btn-outline:hover {
    background: rgba(0, 0, 0, .05);
    border-color: var(--dark);
  }

  /* Hero stats inside hero on desktop */
  .v2-hero-stats-bar {
    display: flex;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, .1);
    margin-top: 40px;
    justify-content: space-around;
  }

  .v2-hero-stat {
    text-align: left;
  }

  /* Hero right image column */
  .v2-hero-right {
    padding: 24px 40px 24px 0;
    display: flex;
    align-items: center;
  }

  .v2-hero-img-card {
    position: relative;
    width: 100%;
    height: calc(100svh - 68px - 48px);
    border-radius: 24px;
    overflow: hidden;
  }

  .v2-hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .v2-hero-hours-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(245, 240, 232, .9);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 12px 18px;
    font-family: var(--font-serif);
  }

  .v2-hero-hours-open {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 4px;
  }

  .v2-hero-hours-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
  }

  /* Hide standalone stats section on desktop (merged into hero) */
  .v2-section-stats-standalone {
    display: none;
  }

  /* Hide gallery strip (replaced by grid) */
  .v2-gallery-strip {
    display: none;
  }

  /* Gallery wrapper — auto height on desktop when grid */
  .v2-gallery {
    height: auto;
    overflow: visible;
    padding: 0 80px;
  }

  /* Gallery grid */
  .v2-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: 520px;
  }

  .v2-gallery-main {
    grid-row: span 2;
    border-radius: var(--radius);
    overflow: hidden;
    height: 520px;
  }

  .v2-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .v2-gallery-small {
    border-radius: var(--radius);
    overflow: hidden;
    height: 254px;
  }

  .v2-gallery-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Gallery section header */
  .v2-gallery-section .v2-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    align-items: start;
  }

  /* Products: title+sub two-column */
  .v2-products-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
  }

  .v2-products-header .v2-section-sub {
    margin-bottom: 0;
  }

  .v2-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Brand: two-column */
  .v2-brand-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 64px;
    align-items: center;
    text-align: left;
  }

  .v2-brand-logo-wrap {
    margin: 0;
    flex-shrink: 0;
  }

  .v2-brand-heading {
    text-align: left;
  }

  .v2-brand-text {
    text-align: left;
    margin: 0 0 28px;
  }

  .v2-brand-tags {
    justify-content: flex-start;
  }

  /* Section */
  .v2-section {
    padding: 50px 100px;
  }

  /* About */
  .v2-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .v2-about-img-wrap {
    margin-bottom: 0;
  }

  .v2-about-img {
    height: 480px;
  }

  /* Contact: two-column */
  .v2-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .v2-contact-wa {
    margin-bottom: 0;
  }

  .v2-contact-info {
    margin-top: 0;
            width: 600px;
  }
section#v2-section-contact {
    display: flex;
    justify-content: space-between;
}
  .v2-contact-item {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
  }

  .v2-contact-item:last-child {
    border-bottom: none;
  }

  /* Footer: two-column */
  .v2-footer {
    padding: 28px 80px;
  }

  .v2-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
}

/* ── Checkout modal ──────────────────────────────── */
#checkoutModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#checkoutModal.open {
  display: flex;
}

.ck-inner {
  max-width: 480px;
}

.ck-summary {
  margin: 0 24px;
  padding: 10px 0 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.ck-items {
  padding: 2px 0 0;
}

.ck-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: .84rem;
}

.ck-qty {
  font-size: .75rem;
  color: var(--gray);
  margin-left: 4px;
}

.ck-item-price {
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  margin-left: 8px;
}

.ck-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0 2px;
  font-size: .9rem;
  font-weight: 600;
}

.ck-total-row strong {
  font-size: 1.1rem;
  color: var(--rust);
}

/* Steps progress */
.ck-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 14px 24px 2px;
}

.ck-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--gray);
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s;
  flex-shrink: 0;
}

.ck-step-dot.active {
  background: var(--dark);
  color: var(--white);
}

.ck-step-dot.done {
  background: var(--rust);
  color: var(--white);
}

.ck-step-line {
  flex: 1;
  height: 2px;
  background: var(--cream-dark);
  max-width: 60px;
}

/* CEP field */
.ck-cep-wrap {
  position: relative;
}

.ck-cep-status {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .75rem;
  font-weight: 600;
  white-space: nowrap;
}

.ck-cep-status.ok {
  color: #22c55e;
}

.ck-cep-status.error {
  color: #ef4444;
}

.ck-cep-status.loading {
  color: var(--gray);
}

/* Two-column row */
.ck-row {
  display: flex;
  gap: 10px;
}

.ck-row .bk-form-group {
  flex: 1;
}

/* Highlighted payment option (MercadoPago) */
.ck-pay-highlight {
  border-color: var(--rust) !important;
  background: rgba(196, 98, 45, .06) !important;
}

.ck-pay-highlight .bk-pay-label {
  color: var(--rust);
}

/* ── Booking step 2–4 ────────────────────────────── */
.bk-back-btn {
  background: none;
  border: none;
  color: var(--rust);
  font-size: .82rem;
  font-weight: 600;
  padding: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.bk-back-btn:hover {
  opacity: .75;
}

.bk-datetime-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--cream);
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 18px;
}

.bk-form-group {
  margin-bottom: 14px;
}

.bk-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: #666;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.bk-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
  background: #fff;
}

.bk-input:focus {
  border-color: var(--dark);
}

.bk-textarea {
  resize: none;
}

.bk-payment-label {
  font-size: .75rem;
  font-weight: 700;
  color: #777;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
  display: block;
}

.bk-pay-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.bk-pay-option:hover {
  border-color: #c0c0c0;
  background: var(--cream);
}

.bk-pay-option.selected {
  border-color: var(--dark);
  background: var(--cream);
}

.bk-pay-option:not(.selected) {
  border-color: #e8e8e8 !important;
  background: transparent !important;
}

.bk-pay-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.bk-pay-label {
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark);
}

.bk-pay-desc {
  font-size: .75rem;
  color: #888;
}

.bk-pay-check {
  margin-left: auto;
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
  flex-shrink: 0;
}

.bk-success-details {
  background: var(--cream);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 16px 0;
}

.bk-success-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  font-size: .86rem;
}

.bk-success-row:last-child {
  border-bottom: none;
}

.bk-success-row span {
  color: #888;
}

.bk-no-pay {
  font-size: .88rem;
  color: #888;
  text-align: center;
  padding: 16px 0;
}

.bk-step-success p {
  color: #888;
  font-size: .85rem;
  margin-bottom: 20px;
}

/* ── Toast notification ───────────────────────────── */
.v2-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 40px;
  font-size: .83rem;
  font-weight: 600;
  z-index: 999;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  white-space: nowrap;
  pointer-events: none;
}

.v2-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── MercadoPago embedded card form ──────────────────── */
.mp-iframe-field {
  min-height: 42px;
  padding: 0 !important;
  overflow: hidden;
}

.mp-iframe-field iframe {
  width: 100% !important;
  height: 42px !important;
  border: none !important;
}

.mp-pay-error {
  background: #fff0f0;
  border: 1px solid #e57373;
  border-radius: 8px;
  color: #c62828;
  font-size: .82rem;
  padding: 10px 14px;
  margin-top: 12px;
}

/* ── Pix QR embedded ─────────────────────────────────── */
.mp-pix-box {
  background: #f8f8f4;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  margin-top: 12px;
}

.mp-pix-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.mp-pix-qr {
  width: 180px;
  height: 180px;
  border-radius: 8px;
  border: 2px solid #e5e5e0;
  display: block;
  margin: 0 auto 14px;
}

.mp-pix-copy-label {
  font-size: .8rem;
  color: #888;
  margin-bottom: 6px;
}

.mp-pix-copy-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}

.mp-pix-copy-btn {
  flex-shrink: 0;
  padding: 8px 14px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
}

.mp-pix-wait {
  font-size: .85rem;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 4px;
}

/* ── Checkout summary frete ──────────────────────────── */
.ck-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.ck-total-row strong {
  font-size: 1rem;
  font-weight: 700;
}

@media (max-width: 840px) {
.v2-product-footer{
  flex-direction: column;
}

.v2-product-add-btn{
      flex-shrink: 0;
    padding: 10px 30px;
    border-radius: 8px;
  }

  .v2-hero-stats-bar,
  .v2-hero-img-card{
    display: none;
  }
}