/* ===== Header Pro ===== */
.header.header--pro{
	background: transparent;
	box-shadow: none;
	padding-top: 16px;
	padding-bottom: 0;
}

.header.header--pro .container{
	overflow: hidden;
	background: var(--card-bg, #fff);
	border-radius: var(--radius, 12px);
	box-shadow: var(--shadow, 0 2px 14px rgba(0,0,0,.06));
	padding-left: 20px;
	padding-right: 20px;
}


.header--pro .header__main{
  padding: 14px 0;
}

/* Brand */
.header--pro .header__brand__link{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
}
.header--pro .header__brand__logo{
  width: 60px;
  height: auto;
  display:block;
}
.header--pro .header__brand__name{
  font-weight: 800;
  font-size: 22px;
  color:#1c1c1c;
}

/* Menu centrado */
.header__menu ul li.activ > a{
  color: #1db190;
}
.header--pro .header__menu{
  padding: 0; /* pisa el padding 24px del template */
}
.header--pro .header__menu ul{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 100px;
  margin: 0;
}
.header--pro .header__menu ul li{
  margin: 0;
}
.header--pro .header__menu ul li a{
  letter-spacing: 2px;
}

/* Right
.header--pro .header__right{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap: 12px;
}
.header--pro .header__right__mail{
  gap: 8px;
  align-items:center;
  color:#1c1c1c;
  white-space: nowrap;
  font-size: 14px;
}
.header--pro .header__right__mail i{
  color:#1db190;
}*/ 

/* Pill verde */
.header--pro .header__right__pill{
  background:#1db190;
  border-radius: 12px;
  padding: 10px 10px;
  display:flex;
  align-items:center;
  gap: 8px;
}
.header--pro .header__pill__btn{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  color:#fff;
  text-decoration:none;
}
.header--pro .header__pill__btn i{
  font-size: 15px;
}
.header--pro .header__pill__btn:hover{
  background: rgba(255,255,255,.15);
}

/* Badge carrito */
.header--pro .header__pill__cart{
  position: relative;
}
.header--pro .header__pill__badge{
  position:absolute;
  top:-6px;
  right:-6px;
  background:#fff;
  color:#1db190;
  font-size: 11px;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 999px;
  text-align:center;
  font-weight: 800;
}
/* ===== Map Pro: mismo ancho + mismo border radius ===== */
.map.map--pro { padding: 16px 0; }

.map.map--pro .map-frame{
  border-radius: var(--radius, 12px);
  overflow: hidden;               /* clave: recorta el iframe */
  box-shadow: var(--shadow, 0 2px 14px rgba(0,0,0,.06));
  position: relative;
}

.map.map--pro iframe{
  width: 100%;
  height: 500px;
  display: block;                 /* evita gaps */
  border: 0;
}
/* Ajuste burger (mobile/tablet) */
@media (max-width: 991.98px){
  .header--pro .header__main{ padding: 12px 0; }
  .header.header--pro .humberger__open{
    top: 16px; /* pisa top:22 del template */
  }
}


/* Oculta el hero/breadcrumb en todas las páginas internas. La portada conserva su banner. */
.hero--internal-hidden {
  display: none !important;
}


/* Estilo editorial tipo boutique */
:root {
  --boutique-brown: #7b5519;
  --boutique-brown-dark: #3b2410;
  --boutique-gold: #a87935;
  --boutique-cream: #fbf5eb;
  --boutique-line: rgba(123, 85, 25, .28);
}

html.site-public-root.site-bg--boutique,
body.site-bg--boutique {
  background-color: #fff8ec;
  background-image:
    radial-gradient(circle at 6% 10%, rgba(255,255,255,.95), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(183,132,60,.13), transparent 24%),
    linear-gradient(135deg, #fffaf1 0%, #f8efe1 45%, #ead8bd 100%) !important;
}

html.site-public-root.site-bg--clean,
body.site-bg--clean {
  background-color: #f8fbff;
  background-image:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.95), transparent 20%),
    linear-gradient(135deg, #ffffff 0%, #f6f8fb 100%) !important;
}

html.site-public-root.site-bg--mint,
body.site-bg--mint {
  background-color: #eefcf5;
  background-image:
    radial-gradient(circle at 4% 12%, rgba(255,255,255,.94), transparent 24%),
    radial-gradient(circle at 88% 24%, rgba(34,163,90,.13), transparent 24%),
    linear-gradient(135deg, #eefcf5 0%, #f8fbff 48%, #dceeff 100%) !important;
}

html.site-public-root.site-bg--sky,
body.site-bg--sky {
  background-color: #f8fbff;
  background-image:
    radial-gradient(circle at 90% 8%, rgba(255,255,255,.95), transparent 24%),
    radial-gradient(circle at 8% 34%, rgba(185,207,255,.26), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #eef5ff 45%, #dbe8ff 100%) !important;
}

html.site-public-root.site-bg--texture,
body.site-bg--texture {
  background-color: #fbf4e7;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(56,154,133,.16), transparent 20%),
    radial-gradient(circle at 72% 14%, rgba(188,139,56,.16), transparent 18%),
    radial-gradient(circle at 80% 82%, rgba(255,255,255,.72), transparent 22%),
    linear-gradient(135deg, rgba(255,255,255,.76), rgba(232,218,191,.72)) !important;
}

html.site-public-root.site-bg,
body.site-bg {
  background-attachment: fixed;
  background-size: cover;
}

.header.header--pro {
  padding: 12px 14px 0;
  background: #f7f3ec;
}

.header.header--pro .container {
  max-width: none;
  width: 100%;
  padding: 0 24px;
  border-radius: 0;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(215, 198, 175, .70);
  box-shadow: 0 12px 35px rgba(71, 46, 20, .08);
}

.header--pro .header__main {
  min-height: 78px;
  padding: 0;
}

.header--pro .header__brand__link {
  gap: 14px;
}

.header--pro .header__brand__logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.header--pro .header__brand__name {
  color: var(--boutique-brown-dark);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.header--pro .header__menu ul {
  gap: 54px;
}

.header--pro .header__menu ul li a {
  position: relative;
  padding: 28px 0;
  color: #2d251d;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.header--pro .header__menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 0;
  height: 2px;
  background: var(--boutique-gold);
  transition: width .18s ease;
}

.header--pro .header__menu ul li.activ > a,
.header--pro .header__menu ul li a:hover {
  color: var(--boutique-brown) !important;
}

.header--pro .header__menu ul li.activ > a::after,
.header--pro .header__menu ul li a:hover::after {
  width: 100%;
}

.header--pro .header__right__pill {
  padding: 10px 13px;
  gap: 13px;
  border-radius: 12px;
  background: var(--boutique-brown-dark) !important;
  box-shadow: 0 12px 30px rgba(59, 36, 16, .18);
}

.header--pro .header__pill__btn {
  width: 28px;
  height: 28px;
  color: #fff;
}

.header--pro .header__pill__btn:hover {
  color: #fff !important;
  background: rgba(255,255,255,.12);
}

.header--pro .header__pill__badge {
  top: -8px;
  right: -8px;
  background: #fff;
  color: var(--boutique-brown);
}

.hero {
  padding: 16px 14px 0;
  background: #f7f3ec;
}

.hero > .container {
  max-width: none;
  width: 100%;
  padding: 0;
}

.hero .row {
  margin: 0;
}

.hero .col-lg-12,
.hero .col-lg-9,
.hero .col-lg-3 {
  padding: 0;
}

.hero__item {
  min-height: clamp(520px, 68vh, 760px);
  border-radius: 0;
  overflow: hidden;
  background-position: center right !important;
  background-size: cover !important;
  position: relative;
}

.hero__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,251,244,.98) 0%, rgba(255,251,244,.88) 32%, rgba(255,251,244,.20) 64%, rgba(255,251,244,.05) 100%),
    radial-gradient(circle at 18% 35%, rgba(255,255,255,.72), transparent 26%);
}

.hero__text--belee {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: clamp(70px, 9vw, 130px) 0 0 clamp(60px, 9vw, 150px);
}

.hero__text--belee span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--boutique-brown);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.hero__text--belee h2 {
  margin: 0 0 20px;
  color: var(--boutique-brown-dark);
  font-family: 'Playfair Display', serif;
  font-size: clamp(76px, 11vw, 170px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .82;
  text-shadow: 0 6px 0 rgba(123,85,25,.08);
  text-transform: uppercase;
}

.hero__text--belee h3 {
  margin: 0 0 8px;
  color: var(--boutique-brown-dark);
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
}

.hero__text--belee p {
  max-width: 520px;
  margin: 0 0 30px;
  color: #4f4031;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.08;
}

.hero__text--belee .primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 18px 44px;
  border: 2px solid rgba(255,255,255,.72) !important;
  outline: 2px solid var(--boutique-gold);
  background: linear-gradient(135deg, #b28143, #7b5519) !important;
  color: #fff !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-signatures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,250,242,.88);
  border-top: 1px solid rgba(123,85,25,.14);
}

.hero-signatures > div {
  min-height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--boutique-brown);
  border-right: 1px solid var(--boutique-line);
}

.hero-signatures > div:last-child {
  border-right: 0;
}

.hero-signatures i {
  font-size: 36px;
}

.hero-signatures span {
  color: var(--boutique-brown-dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: .25em;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (max-width: 1199.98px) {
  .header--pro .header__menu ul { gap: 28px; }
  .hero__text--belee { padding-left: 50px; }
}

@media (max-width: 991.98px) {
  .header.header--pro .container { padding: 0 16px; }
  .hero__item { min-height: 520px; }
  .hero__text--belee { padding: 64px 28px; }
  .hero-signatures { grid-template-columns: repeat(2, 1fr); }
  .hero-signatures > div:nth-child(2) { border-right: 0; }
}

@media (max-width: 575.98px) {
  .header--pro .header__brand__logo { width: 44px; height: 44px; }
  .header--pro .header__brand__name { font-size: 18px; }
  .hero__item { min-height: 470px; }
  .hero__text--belee h2 { font-size: 60px; }
  .hero__text--belee h3 { font-size: 38px; }
  .hero__text--belee span { letter-spacing: .22em; font-size: 15px; }
  .hero-signatures { grid-template-columns: 1fr; }
  .hero-signatures > div { border-right: 0; border-bottom: 1px solid var(--boutique-line); }
}

/* Override final: una sola geometría del topbar en todas las rutas */
.header.header--pro {
  position: relative !important;
  z-index: 20 !important;
  width: 100% !important;
  padding: 0 !important;
  background: #fbf7f0 !important;
}

.header.header--pro .container {
  width: 100% !important;
  max-width: none !important;
  padding: 0 clamp(28px, 10vw, 190px) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(168, 121, 53, .18) !important;
  border-radius: 0 !important;
  background: rgba(255, 252, 247, .92) !important;
  box-shadow: 0 8px 24px rgba(91, 60, 32, .05) !important;
}

.header--pro .header__main {
  min-height: 86px !important;
  padding: 0 !important;
}

.header--pro .header__main > .col-lg-3 {
  display: none !important;
}

.header--pro .header__main > .col-lg-6 {
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: none !important;
}

.header--pro .header__main > .col-lg-2 {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
}

.header--pro .header__menu ul {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: clamp(24px, 3.1vw, 66px) !important;
  margin: 0 !important;
}

.header--pro .header__menu ul li a {
  padding: 0 0 13px !important;
  color: #5d3a17 !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(16px, 1.28vw, 22px) !important;
  font-weight: 600 !important;
  letter-spacing: .16em !important;
}

.header--pro .header__top-search,
.header--pro .header__top-search-spacer {
  width: clamp(205px, 16vw, 300px) !important;
  flex: 0 0 clamp(205px, 16vw, 300px) !important;
  height: 40px !important;
  margin-right: 28px !important;
}

.header--pro .header__top-search-spacer {
  display: block !important;
}

.header--pro .header__right__pill {
  margin: 0 !important;
  padding: 0 0 0 28px !important;
  border-left: 1px solid rgba(123, 85, 25, .34) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  gap: 19px !important;
}

.header--pro .header__pill__btn {
  width: 28px !important;
  height: 30px !important;
  color: #8a5b22 !important;
}

.header--pro .header__pill__btn:hover {
  color: #5d3a17 !important;
  background: rgba(168, 121, 53, .12) !important;
}

.header--pro .header__pill__badge {
  top: -9px !important;
  right: -9px !important;
  background: #8a5b22 !important;
  color: #fff !important;
}

body.site-home .header.header--pro {
  position: absolute !important;
  background: transparent !important;
}

body.site-home .header.header--pro .container {
  background: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 1199.98px) {
  .header.header--pro .container {
    padding-left: 6vw !important;
    padding-right: 6vw !important;
  }

  .header--pro .header__menu ul {
    gap: 28px !important;
  }
}

@media (max-width: 991.98px) {
  .header.header--pro .container {
    padding: 0 16px !important;
  }

  .header--pro .header__main {
    min-height: 68px !important;
  }
}

/* Topbar único para Inicio y páginas internas */
.header.header--pro {
  position: relative;
  z-index: 20;
  width: 100%;
  padding: 0;
  background: #fbf7f0;
}

.header.header--pro .container {
  width: 100%;
  max-width: none;
  padding: 0 clamp(28px, 10vw, 190px);
  border: 0;
  border-bottom: 1px solid rgba(168, 121, 53, .18);
  border-radius: 0;
  background: rgba(255, 252, 247, .92);
  box-shadow: 0 8px 24px rgba(91, 60, 32, .05);
}

.header--pro .header__main {
  min-height: 86px;
  padding: 0;
}

.header--pro .header__main > .col-lg-3 {
  display: none;
}

.header--pro .header__main > .col-lg-6 {
  flex: 1 1 auto;
  width: auto;
  max-width: none;
}

.header--pro .header__main > .col-lg-2 {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.header--pro .header__menu ul {
  justify-content: flex-start;
  gap: clamp(24px, 3.1vw, 66px);
}

.header--pro .header__menu ul li a {
  padding: 0 0 13px;
  color: #5d3a17;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.28vw, 22px);
  font-weight: 600;
  letter-spacing: .16em;
}

.header--pro .header__menu ul li a::after {
  bottom: 0;
  height: 2px;
  background: #a87935;
}

.header--pro .header__menu ul li.activ > a,
.header--pro .header__menu ul li a:hover {
  color: #7b5519 !important;
}

.header--pro .header__top-search,
.header--pro .header__top-search-spacer {
  width: clamp(205px, 16vw, 300px);
  flex: 0 0 clamp(205px, 16vw, 300px);
  height: 40px;
  margin-right: 28px;
}

.header--pro .header__top-search {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(123, 85, 25, .38);
  border-radius: 3px;
  background: rgba(255, 252, 247, .88);
  box-shadow: none;
}

.header--pro .header__top-search-spacer {
  display: block;
}

.header--pro .header__right__pill {
  margin: 0;
  padding: 0 0 0 28px;
  border-left: 1px solid rgba(123, 85, 25, .34);
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  gap: 19px;
}

.header--pro .header__pill__btn {
  width: 28px;
  height: 30px;
  color: #8a5b22;
}

.header--pro .header__pill__btn:hover {
  color: #5d3a17 !important;
  background: rgba(168, 121, 53, .12);
}

.header--pro .header__pill__badge {
  top: -9px;
  right: -9px;
  background: #8a5b22;
  color: #fff;
}

/* En Inicio la misma barra se posa sobre el banner */
body.site-home .header.header--pro {
  position: absolute;
  background: transparent;
}

body.site-home .header.header--pro .container {
  background: transparent;
  box-shadow: none;
}

@media (max-width: 1199.98px) {
  .header.header--pro .container {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .header--pro .header__menu ul {
    gap: 28px;
  }

  .header--pro .header__top-search,
  .header--pro .header__top-search-spacer {
    width: 220px;
    flex-basis: 220px;
    margin-right: 18px;
  }
}

@media (max-width: 991.98px) {
  .header.header--pro .container {
    padding: 0 16px;
  }

  .header--pro .header__main {
    min-height: 68px;
  }
}

/* Barra pública común para todas las secciones */
.header.header--pro {
  position: relative;
  z-index: 20;
  width: 100%;
  padding: 12px 14px 0;
  background: #fbf7f0;
}

.header.header--pro .container {
  width: 100%;
  max-width: none;
  padding: 0 24px;
  border: 1px solid rgba(215, 198, 175, .70);
  border-radius: 14px;
  background: rgba(255, 252, 247, .90);
  box-shadow: 0 12px 35px rgba(71, 46, 20, .08);
}

.header--pro .header__main {
  min-height: 78px;
  padding: 0;
}

.header--pro .header__brand__link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.header--pro .header__brand__logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.header--pro .header__brand__name {
  color: #3b2410;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.header--pro .header__menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.2vw, 58px);
  margin: 0;
}

.header--pro .header__menu ul li {
  margin: 0;
}

.header--pro .header__menu ul li a {
  position: relative;
  padding: 28px 0 13px;
  color: #5d3a17;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 1.15vw, 20px);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.header--pro .header__menu ul li a::after {
  bottom: 0;
  width: 0;
  height: 2px;
  background: #a87935;
}

.header--pro .header__menu ul li.activ > a,
.header--pro .header__menu ul li a:hover {
  color: #7b5519 !important;
}

.header--pro .header__menu ul li.activ > a::after,
.header--pro .header__menu ul li a:hover::after {
  width: 100%;
}

.header--pro .header__right__pill {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 13px;
  border-radius: 12px;
  background: #7b5519 !important;
  box-shadow: 0 12px 30px rgba(59, 36, 16, .18);
}

.header--pro .header__pill__btn {
  position: relative;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
}

.header--pro .header__pill__btn:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, .14);
}

.header--pro .header__pill__badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  color: #7b5519;
  font-size: 11px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
}

@media (max-width: 1199.98px) {
  .header--pro .header__menu ul {
    gap: 24px;
  }
}

@media (max-width: 991.98px) {
  .header.header--pro {
    padding: 8px 8px 0;
  }

  .header.header--pro .container {
    padding: 0 16px;
  }

  .header--pro .header__main {
    min-height: 68px;
  }

  .header--pro .header__brand__logo {
    width: 46px;
    height: 46px;
  }
}

/* Portada editorial: el encabezado se integra visualmente con el banner */
body.site-home {
  background: #fbf7f0 !important;
}

body.site-home .header.header--pro {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  background: transparent;
}

body.site-home .header.header--pro .container {
  max-width: none;
  width: 100%;
  padding: 0 5vw;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.site-home .header--pro .header__main {
  min-height: 104px;
  align-items: center;
}

body.site-home .header--pro .header__main > .col-lg-3 {
  display: none;
}

body.site-home .header--pro .header__main > .col-lg-6 {
  flex: 1 1 auto;
  width: auto;
  max-width: none;
}

body.site-home .header--pro .header__main > .col-lg-2 {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

body.site-home .header--pro .header__menu ul {
  justify-content: flex-start;
  gap: clamp(24px, 3.5vw, 66px);
}

body.site-home .header--pro .header__menu ul li a {
  padding: 0 0 13px;
  color: #5d3a17;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.25vw, 21px);
  font-weight: 600;
  letter-spacing: .12em;
}

body.site-home .header--pro .header__menu ul li a::after {
  bottom: 0;
  height: 2px;
  background: #8f6025;
}

body.site-home .header--pro .header__right__pill {
  margin-left: 22px;
  padding: 8px 0 8px 24px;
  border-left: 1px solid rgba(123, 85, 25, .38);
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  gap: 16px;
}

.header__top-search {
  flex: 0 1 clamp(190px, 18vw, 320px);
  height: 40px;
  margin-right: 18px;
  overflow: hidden;
  border: 1px solid rgba(123, 85, 25, .28);
  border-radius: 3px;
  background: rgba(255, 252, 247, .76);
  box-shadow: 0 8px 20px rgba(91, 60, 32, .08);
}

.header__top-search input {
  min-width: 0;
  flex: 1 1 auto;
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0 12px;
  background: transparent;
  color: #4f3820;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
}

.header__top-search input::placeholder {
  color: rgba(79, 56, 32, .68);
}

.header__top-search button {
  flex: 0 0 40px;
  border: 0;
  background: #7b5519;
  color: #fff;
  font-size: 14px;
}

.header__top-search button:hover {
  background: #5d3a17;
}

body.site-home .header__top-search {
  border-color: rgba(123, 85, 25, .36);
  background: rgba(255, 252, 247, .72);
}

body.site-home .header__top-search button {
  background: rgba(123, 85, 25, .90);
}

body.site-home .header--pro .header__pill__btn {
  width: 30px;
  height: 30px;
  color: #8a5b22;
}

body.site-home .header--pro .header__pill__btn:hover {
  background: rgba(168, 121, 53, .12);
  color: #5d3a17 !important;
}

body.site-home .hero {
  position: relative;
  z-index: 1;
  padding: 0;
  background: #fbf7f0;
}

body.site-home .home-search {
  position: absolute;
  z-index: 8;
  top: 112px;
  left: clamp(28px, 8.5vw, 174px);
  display: flex;
  width: min(390px, calc(100% - 56px));
  height: 46px;
  overflow: hidden;
  border: 1px solid rgba(123, 85, 25, .28);
  border-radius: 3px;
  background: rgba(255, 252, 247, .74);
  box-shadow: 0 10px 26px rgba(91, 60, 32, .10);
  backdrop-filter: blur(8px);
}

body.site-home .home-search input {
  min-width: 0;
  flex: 1 1 auto;
  border: 0;
  outline: 0;
  padding: 0 15px;
  background: transparent;
  color: #4f3820;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
}

body.site-home .home-search input::placeholder {
  color: rgba(79, 56, 32, .68);
}

body.site-home .home-search button {
  flex: 0 0 auto;
  border: 0;
  padding: 0 18px;
  background: #7b5519;
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body.site-home .hero__item {
  min-height: clamp(650px, 48vw, 760px);
  height: clamp(650px, 48vw, 760px);
  background-position: center center !important;
}

body.site-home .hero__item::before {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, .74) 0%, rgba(255, 250, 242, .35) 36%, rgba(255, 250, 242, .04) 69%, rgba(255, 250, 242, 0) 100%),
    linear-gradient(180deg, rgba(255, 250, 242, .10), rgba(255, 250, 242, 0));
}

body.site-home .hero__text--belee {
  max-width: 770px;
  padding: clamp(150px, 10vw, 200px) 0 0 clamp(7vw, 8.5vw, 174px);
}

body.site-home .hero__brand-word {
  color: #2f1b0c;
  font-family: 'Playfair Display', serif;
  font-size: clamp(76px, 9vw, 168px);
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: .82;
  text-transform: uppercase;
}

body.site-home .hero__text--belee > span {
  display: block;
  width: fit-content;
  margin: 26px 0 42px;
  padding: 10px 27px 8px;
  border-top: 1px solid rgba(168, 121, 53, .72);
  border-bottom: 1px solid rgba(168, 121, 53, .72);
  color: #68471e;
  font-size: clamp(16px, 1.5vw, 25px);
  letter-spacing: .28em;
}

body.site-home .hero__text--belee h2 {
  max-width: 850px;
  margin-bottom: 8px;
  font-size: clamp(48px, 5.2vw, 92px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
  text-transform: none;
}

body.site-home .hero__text--belee h3 {
  margin-bottom: 18px;
  color: #94662d;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.2vw, 60px);
  font-style: italic;
  font-weight: 600;
}

body.site-home .hero__text--belee p {
  max-width: 570px;
  margin-bottom: 28px;
  font-size: clamp(20px, 1.7vw, 30px);
}

body.site-home .hero-signatures {
  min-height: 145px;
  background: rgba(255, 250, 242, .94);
}

body.site-home .hero-signatures > div {
  min-height: 145px;
  gap: 18px;
}

body.site-home .hero-signatures i {
  font-size: 40px;
}

body.site-home .hero-signatures span {
  font-size: clamp(15px, 1.2vw, 21px);
}

@media (max-width: 991.98px) {
  body.site-home .header--pro .header__menu ul {
    gap: 24px;
  }

  body.site-home .hero__text--belee {
    padding: 140px 28px 0;
  }
}

@media (max-width: 575.98px) {
  body.site-home .hero__item {
    min-height: 620px;
    height: 620px;
  }

  body.site-home .hero__brand-word {
    font-size: 66px;
  }

  body.site-home .hero__text--belee > span {
    margin: 20px 0 28px;
    padding-left: 14px;
    padding-right: 14px;
    letter-spacing: .15em;
  }

  body.site-home .home-search {
    top: 94px;
    left: 28px;
    width: calc(100% - 56px);
  }
}

/* Geometría final compartida del topbar */
body {
  padding-top: 0 !important;
}

html {
  scroll-padding-top: 0 !important;
}

.header.header--pro {
  position: relative !important;
  z-index: 20 !important;
  width: 100% !important;
  padding: 0 !important;
  background: #fbf7f0 !important;
}
.header.header--pro .container {
  width: 100% !important;
  max-width: none !important;
  padding: 0 clamp(28px, 10vw, 190px) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(168, 121, 53, .18) !important;
  border-radius: 0 !important;
  background: rgba(255, 252, 247, .92) !important;
  box-shadow: 0 8px 24px rgba(91, 60, 32, .05) !important;
}
.header--pro .header__main { min-height: 86px !important; padding: 0 !important; }
.header--pro .header__main > .col-lg-3 { display: none !important; }
.header--pro .header__main > .col-lg-6 { flex: 1 1 auto !important; width: auto !important; max-width: none !important; }
.header--pro .header__main > .col-lg-2 { flex: 0 0 auto !important; width: auto !important; max-width: none !important; }
.header--pro .header__menu ul { display: flex !important; align-items: center !important; justify-content: flex-start !important; gap: clamp(24px, 3.1vw, 66px) !important; margin: 0 !important; }
.header--pro .header__menu ul li a { padding: 0 0 13px !important; color: #5d3a17 !important; font-family: 'Cormorant Garamond', serif !important; font-size: clamp(16px, 1.28vw, 22px) !important; font-weight: 600 !important; letter-spacing: .16em !important; }
.header--pro .header__top-search, .header--pro .header__top-search-spacer { width: clamp(205px, 16vw, 300px) !important; flex: 0 0 clamp(205px, 16vw, 300px) !important; height: 40px !important; margin-right: 28px !important; }
.header--pro .header__top-search-spacer { display: block !important; }
.header--pro .header__search-cluster {
  position: relative;
  z-index: 30;
  width: clamp(205px, 16vw, 300px);
  flex: 0 0 clamp(205px, 16vw, 300px);
  height: 64px;
  margin-right: 28px;
}
.header--pro .header__search-cluster .header__top-search {
  width: 100% !important;
  flex: none !important;
  margin-right: 0 !important;
}
.header--pro .header__category-dropdown {
  position: static;
}
.header--pro .header__category-toggle {
  display: block;
  margin: 5px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #7b5519;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
}
.header--pro .header__category-toggle::after {
  margin-left: 5px;
  vertical-align: .12em;
}
.header--pro .header__category-toggle:hover,
.header--pro .header__category-toggle:focus {
  color: #5d3a17;
  outline: 0;
}
.header--pro .header__category-menu {
  min-width: 250px;
  max-height: 320px;
  overflow-y: auto;
  margin-top: 7px;
  padding: 7px;
  border: 1px solid rgba(168, 121, 53, .25);
  border-radius: 4px;
  background: #fffdf9;
  box-shadow: 0 18px 34px rgba(91, 60, 32, .16);
}
.header--pro .header__category-menu .dropdown-item {
  padding: 8px 11px;
  color: #5d3a17;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
}
.header--pro .header__category-menu .dropdown-item:hover {
  background: #f6ead8;
  color: #7b5519;
}
.header--pro .header__right__pill { margin: 0 !important; padding: 0 0 0 28px !important; border-left: 1px solid rgba(123, 85, 25, .34) !important; border-radius: 0 !important; background: transparent !important; box-shadow: none !important; gap: 19px !important; }
.header--pro .header__pill__btn { width: 28px !important; height: 30px !important; color: #8a5b22 !important; }
.header--pro .header__pill__badge { top: -9px !important; right: -9px !important; background: #8a5b22 !important; color: #fff !important; }
body.site-home .header.header--pro { position: absolute !important; background: transparent !important; }
body.site-home .header.header--pro .container { background: transparent !important; box-shadow: none !important; }
@media (max-width: 1199.98px) { .header.header--pro .container { padding-left: 6vw !important; padding-right: 6vw !important; } .header--pro .header__menu ul { gap: 28px !important; } }
@media (max-width: 991.98px) { .header.header--pro .container { padding: 0 16px !important; } .header--pro .header__main { min-height: 68px !important; } }

/* El fondo global se mantiene continuo entre header, contenido y footer */
body.site-public {
  background-color: var(--store-bg, #fff8ec) !important;
  background-attachment: fixed !important;
  background-size: cover !important;
}

html.site-public-root.site-bg {
  background-color: var(--store-bg, #fff8ec) !important;
  background-attachment: fixed !important;
  background-size: cover !important;
}

/* El layout público es una columna flex: cada sección conserva su altura real
   para que el footer no la comprima ni recorte su contenido. */
body.site-public > header.header--pro,
body.site-public > section,
body.site-public > footer.footer--pro {
  flex: 0 0 auto;
  width: 100%;
}

body.site-public .hero,
body.site-public .featured,
body.site-public .product,
body.site-public .shoping-cart,
body.site-public .nosotros-page,
body.site-public .profile-page,
body.site-public .order-page,
body.site-public .status-page {
  background: transparent !important;
}

body.site-public .footer.footer--pro {
  background: transparent !important;
}

/* Acciones de cada producto: favorito, WhatsApp y carrito comparten la misma barra */
.featured__item__pic__hover li .fav-toggle {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #ebebeb;
  border-radius: 50%;
  background: #fff;
  color: #1c1c1c;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  box-shadow: none;
  transition: all .3s ease;
}

.featured__item__pic__hover li:hover .fav-toggle,
.featured__item__pic__hover li .fav-toggle:focus-visible {
  background: var(--store-button, #8b602c);
  border-color: var(--store-button, #8b602c);
  color: var(--store-button-text, #fff);
  outline: none;
}

.featured__item__pic__hover li .fav-toggle.is-active {
  color: #e11d48;
}

.featured__item__pic__hover li:hover .fav-toggle.is-active,
.featured__item__pic__hover li .fav-toggle.is-active:focus-visible {
  color: #fff;
}

.featured__item:hover .featured__item__pic .featured__item__pic__hover,
.featured__item:focus-within .featured__item__pic .featured__item__pic__hover {
  bottom: 12px;
}

body.site-public .featured__controls ul li::after,
body.site-public .product__pagination a:hover,
body.site-public .product__pagination a.active {
  background: var(--store-button, #8b602c) !important;
  border-color: var(--store-button, #8b602c) !important;
  color: var(--store-button-text, #fff) !important;
}

body.site-public .featured__item__pic__hover li:hover a,
body.site-public .featured__item__pic__hover li a:focus-visible {
  background: var(--store-button, #8b602c) !important;
  border-color: var(--store-button, #8b602c) !important;
}

body.site-public .featured__item__pic__hover li:hover a i,
body.site-public .featured__item__pic__hover li a:focus-visible i {
  color: var(--store-button-text, #fff) !important;
}

body.site-public .fcard-add:hover {
  color: var(--store-button-text, #fff) !important;
}
