/*
Theme Name: Sexoconsentidonet
Theme URI: https://sexoconsentido.net
Author: Tu nombre o tu marca
Author URI: https://sexoconsentido.net
Description: Theme personalizado compatible con HivePress para sexoconsentido.net
Version: 1.0.0
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: sexoconsentidonet
*/

:root {
  /* Brand Colors */
  --theme-primary: #e91e8c;
  /* Updated to match pink top bar */
  --theme-accent: #ff4db8;
  /* Lighter pink for accents */
  --theme-navbar: #e91e8c;

  /* Status / Utility Colors */
  --theme-success: #00b7ff;
  --theme-warning: #ffc107;
  --theme-danger: #b00020;

  /* Neutral / Grayscale */
  --theme-white: #ffffff;
  --theme-black-light: #333333;
  --theme-gray: #666666;
  --theme-light-bg: #fff9fe;
  --theme-soft-bg: #f1e5ef;

  /* RGBA Variations (Opacities) */
  --theme-primary-alpha-14: rgba(233, 30, 140, 0.14);
  /* e91e8c is rgb(233, 30, 140) */
  --theme-accent-alpha-10: rgba(255, 77, 184, 0.10);
  /* ff4db8 is rgb(255, 77, 184) */
  --theme-border-light: rgba(7, 36, 86, 0.075);
  --theme-shadow: 0 12px 26px rgba(20, 12, 28, 0.08);

  /* Blue — category links */
  --theme-blue: rgb(119, 156, 237);
  --theme-blue-alpha-18: rgba(119, 156, 237, 0.18);
  --theme-blue-alpha-80: rgba(119, 156, 237, 0.8);
}


/*--------------------------------------------------------------
Normalize
--------------------------------------------------------------*/
.wp-caption,
.wp-caption-text,
.sticky,
.screen-reader-text,
.gallery-caption,
.bypostauthor,
.alignright,
.alignleft,
.aligncenter {
  display: block;
}

/*--------------------------------------------------------------
Typography
--------------------------------------------------------------*/
p.has-background {
  border-radius: 3px;
}

pre {
  border-radius: 3px;
}

a {
  color: var(--theme-accent);
}

a:hover {
  color: var(--theme-primary);
}



/*--------------------------------------------------------------
Media
--------------------------------------------------------------*/
.gallery-icon img {
  border-radius: 3px;
}

.wp-caption>img,
.wp-caption>a>img {
  border-radius: 3px;
}

.mejs-audio .mejs-controls,
.mejs-audio.mejs-container {
  border-radius: 3px;
}

/*--------------------------------------------------------------
Forms
--------------------------------------------------------------*/
input[type='color'],
input[type='date'],
input[type='datetime'],
input[type='datetime-local'],
input[type='email'],
input[type='month'],
input[type='number'],
input[type='password'],
input[type='range'],
input[type='min'],
input[type='max'],
input[type='value'],
input[type='step'],
input[type='search'],
input[type='tel'],
input[type='text'],
input[type='time'],
input[type='url'],
select,
textarea {
  border-radius: 3px;
}

.select2-container--default .select2-dropdown,
.select2-container--default .select2-search .select2-search__field,
.select2-container--default .select2-selection {
  border-radius: 3px;
}

.select2-container--default .select2-selection--inline .select2-selection__rendered {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
  line-height: 1;
}

.pac-container {
  border-radius: 3px;
}

/*--------------------------------------------------------------
Buttons
--------------------------------------------------------------*/
.button {
  border-radius: 3px;
}

.button--primary,
.button--secondary {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
}

button[type=submit],
input[type=submit] {
  border-radius: 3px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
}

/* === Botón BUSCAR: gris neutro por defecto, rosa en hover ===
   Opción A (activa): gris medio + rosa en hover
   Opción B: descomenta las líneas "B" y comenta las "A"
   Opción C: descomenta las líneas "C" y comenta las "A"
*/
.button--primary,
button[type=submit],
input[type=submit] {
  /* Opción A — gris medio cálido */
  background-color: var(--theme-gray) !important;
  color: var(--theme-white) !important;
  background-image: none !important;
}

.button--primary:hover,
.button--primary:focus,
button[type=submit]:hover,
button[type=submit]:focus,
input[type=submit]:hover,
input[type=submit]:focus {
  background-color: var(--theme-primary) !important;
  background-image: none !important;
  color: var(--theme-white) !important;
}

/*--------------------------------------------------------------
Header
--------------------------------------------------------------*/
.header-navbar {
  background-color: var(--theme-navbar);
  padding: 0.5rem 0;
}

.header-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-navbar__start {
  display: flex;
  align-items: center;
}

.header-navbar__end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.header-navbar .header-logo__name,
.header-navbar .header-logo__description,
.header-navbar .header-logo a {
  color: var(--theme-white);
}

.header-navbar__menu>ul>li>a,
.header-navbar__menu>ul>li.menu-item-has-children::after {
  color: var(--theme-white);
  font-weight: 600;
  font-size: 1.05rem;
}

.header-navbar__menu>ul>li a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.header-navbar__menu>ul>li.current-menu-item::before {
  background-color: var(--theme-white);
}

.header-navbar__burger>a,
.header-navbar__burger>a:hover {
  color: var(--theme-white);
}

.header-navbar__actions,
.header-navbar__actions a,
.header-navbar__actions .hp-link,
.header-navbar__end .hp-menu__item--user-account,
.header-navbar__end .hp-menu__item--user-login,
.header-navbar__end .hp-menu__item--user-account span,
.header-navbar__end .hp-menu__item--user-login span {
  color: var(--theme-white) !important;
  font-weight: 600 !important;
}

@media only screen and (max-width: 768px) {

  .header-navbar__burger .hp-menu__item--user-account,
  .header-navbar__burger .hp-menu__item--user-login,
  .header-navbar__burger .hp-menu__item--user-account span,
  .header-navbar__burger .hp-menu__item--user-login span,
  .header-navbar__burger .hp-menu__item--user-account a,
  .header-navbar__burger .hp-menu__item--user-login a,
  .header-navbar__burger .hp-menu__item--user-register a,
  .header-navbar__actions--mobile a,
  .header-navbar__actions a,
  .header-navbar__burger i,
  .header-navbar__burger .hp-icon,
  .hp-menu--mobile i,
  .hp-menu--mobile .hp-icon,
  .hp-menu--mobile .hp-menu__item--user-account a,
  .hp-menu--mobile .hp-menu__item--user-login a {
    color: var(--theme-black-light) !important;
  }
}

.site-header i,
.site-header .hp-icon {
  color: var(--theme-white) !important;
}

#menu-header-1 li a i,
#menu-header li a i {
  color: var(--theme-white) !important;
}

@media only screen and (max-width: 768px) {

  #menu-header-1 li a i,
  #menu-header li a i {
    color: var(--theme-gray) !important;
  }
}



.header-navbar:last-child {
  border-bottom: none;
}

.header-navbar__menu ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  min-width: 230px;
  background-color: var(--theme-navbar);
  padding: 0;
  margin: 0;
  list-style: none;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  overflow: hidden;
}

.header-navbar__menu ul li:hover>ul {
  opacity: 1;
  visibility: visible;
}

.header-navbar__menu ul li ul li {
  width: 100%;
  padding: 0;
  margin: 0;
}

.header-navbar__menu ul li ul li a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--theme-white) !important;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.header-navbar__menu ul li ul li a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--theme-white) !important;
}

.header-navbar__menu ul li ul li ul.left {
  border-top-left-radius: 3px;
}

.header-navbar__menu ul li ul li ul.right {
  border-top-right-radius: 3px;
}

.header-navbar__menu>ul>li.current-menu-item::before {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
}

.header-navbar__burger>ul>li.current-menu-item::before {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
}

.header-navbar__burger>ul>li>a {
  color: rgba(15, 23, 39, 0.85);
  font-weight: 600;
}

.header-hero {
  display: none;
}

@media only screen and (min-width: 75em) {
  .header-hero--small {
    padding: 4rem 0;
  }
}

@media only screen and (min-width: 48em) {
  .header-hero--medium {
    padding: 4rem 0;
  }
}

@media only screen and (min-width: 75em) {
  .header-hero--medium {
    padding: 6rem 0;
  }
}

.header-hero--cover {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: var(--theme-white);
}

.header-hero--cover a,
.header-hero--cover h1,
.header-hero--cover h2,
.header-hero--cover h3,
.header-hero--cover h4,
.header-hero--cover h5,
.header-hero--cover h6 {
  color: inherit;
}

.header-hero--cover::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.35);
}

/*--------------------------------------------------------------
Content
--------------------------------------------------------------*/
.title,
.content-title {
  padding-top: 1rem;
  position: relative;
}

.title::before,
.content-title::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 45px;
  display: block;
  content: '';
  background-color: var(--theme-warning);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
}

.title:not(:last-child),
.content-title:not(:last-child) {
  margin-bottom: 1.5rem;
}

.title--center,
.content-title--center,
.title.has-text-align-center,
.content-title.has-text-align-center {
  text-align: center;
}

.title--center::before,
.content-title--center::before,
.title.has-text-align-center::before,
.content-title.has-text-align-center::before {
  left: 50%;
  margin-left: -22px;
}

/*--------------------------------------------------------------
Modal
--------------------------------------------------------------*/
.fancybox-content {
  border-radius: 3px;
}

/*--------------------------------------------------------------
Widgets
--------------------------------------------------------------*/
.widget--sidebar,
.widget.hp-menu {
  padding: 2rem;
  border: 1px solid var(--theme-border-light);
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 var(--theme-border-light);
  background-color: var(--theme-white);
}

.widget--sidebar:not(:last-child),
.widget.hp-menu:not(:last-child) {
  margin-bottom: 2rem;
}

.widget--footer .widget__title {
  padding-top: 1rem;
  position: relative;
}

.widget--footer .widget__title::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 45px;
  display: block;
  content: '';
  background-color: var(--theme-primary);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
}

.widget--footer .widget__title::before {
  width: 30px;
  height: 3px;
}

.widget_product_search,
.widget_search {
  padding: 0;
  box-shadow: none;
  border: none;
}

.widget_calendar caption {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

.widget_rss ul li .rss-date {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
}

/*--------------------------------------------------------------
Blocks
--------------------------------------------------------------*/
.wp-block-pullquote.is-style-solid-color {
  border-radius: 3px;
}

.wp-block-pullquote blockquote cite,
.wp-block-pullquote.is-style-solid-color blockquote cite,
.wp-block-quote cite {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wp-block-file .wp-block-file__button {
  border-radius: 3px;
}

.wp-block-button__link {
  border-radius: 3px;
}

.wp-block-code {
  border-radius: 3px;
}

.wp-block-gallery .blocks-gallery-item figcaption,
.wp-block-gallery .blocks-gallery-item img {
  border-radius: 3px;
}

/*--------------------------------------------------------------
Pages
--------------------------------------------------------------*/
.page__title {
  text-align: center;
}

/*--------------------------------------------------------------
Posts
--------------------------------------------------------------*/
.post--archive {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--theme-border-light);
}

.post--archive .post__header--cover {
  color: var(--theme-white);
  position: relative;
}

.post--archive .post__header--cover a,
.post--archive .post__header--cover h1,
.post--archive .post__header--cover h2,
.post--archive .post__header--cover h3,
.post--archive .post__header--cover h4,
.post--archive .post__header--cover h5,
.post--archive .post__header--cover h6 {
  color: inherit;
}

.post--archive .post__header--cover:not(:last-child) {
  margin-bottom: 1.5rem;
}

.post--archive .post__image {
  position: relative;
}

.post--archive .post__image img {
  border-radius: 3px;
}

.post--archive .post__image a::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 3px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.5));
}

.post--archive .post__text:not(:last-child) {
  margin-bottom: 1.5rem;
}

.post--archive .post__header--cover .post__categories,
.post--archive .post__header--cover .post__title {
  position: absolute;
  z-index: 1;
  left: 0;
  padding: 0 2rem;
}

.post--archive .post__header--cover .post__title {
  bottom: 0;
  padding-bottom: 2rem;
}

.post__header--cover .post__categories a {
  background-color: rgba(255, 255, 255, 0.2);
  color: inherit;
}

.post__header--cover .post__categories a:hover {
  background-color: var(--theme-white);
  color: rgba(15, 23, 39, 0.85);
}

.post--archive .post__header--cover .post__categories {
  top: 0;
  padding-top: 2rem;
}

.post__categories a {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
  background-color: rgba(7, 36, 86, 0.085);
  color: rgba(15, 23, 39, 0.45);
  transition: color 0.25s, background-color 0.25s;
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
}

.post__categories a:hover {
  background-color: var(--theme-accent);
  color: var(--theme-white);
}

@media only screen and (max-width: 47.99em) {
  .post--archive .post__title {
    font-size: 1.5625rem;
  }
}

.post--single .post__title {
  text-align: center;
}

.post--single .post__title:not(:last-child) {
  margin-bottom: 1.25rem;
}

.post--single .post__categories,
.post--single .post__details {
  justify-content: center;
}

.post__details>* {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
}

.post__details>*:not(:last-child) {
  margin-right: 0.5rem;
}

.post__details>*:not(:last-child)::after {
  content: '';
  display: block;
  background-color: rgba(7, 36, 86, 0.25);
  border-radius: 50%;
  width: 4px;
  height: 4px;
  margin-left: 0.5rem;
}

.post__header--cover .post__details>* {
  color: inherit;
}

.post__header--cover .post__details>*:not(:last-child)::after {
  background-color: rgba(255, 255, 255, 0.8);
}

/*--------------------------------------------------------------
Categories
--------------------------------------------------------------*/
.category--single .category__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category--single .category__description,
.category--single .category__name {
  text-align: center;
}

.category--single .category__name {
  margin-top: 0;
}

.category--single .category__count {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
  background-color: rgba(7, 36, 86, 0.085);
  color: rgba(15, 23, 39, 0.45);
  transition: color 0.25s, background-color 0.25s;
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: inherit;
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
Tags
--------------------------------------------------------------*/
.tagcloud a,
.wp-block-tag-cloud a {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
  border: 1px solid var(--theme-border-light);
  border-radius: 3px;
  padding: 0.25rem 0.5rem;
  color: inherit;
  transition: color 0.25s, border-color 0.25s;
  font-size: 0.6875rem !important;
}

.tagcloud a:hover,
.wp-block-tag-cloud a:hover {
  border-color: var(--theme-warning);
  color: var(--theme-warning);
}

/*--------------------------------------------------------------
Comments
--------------------------------------------------------------*/
.comments>ul>li {
  border: 1px solid var(--theme-border-light);
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 var(--theme-border-light);
  background-color: var(--theme-white);
}

.comments>ul>li>ul {
  padding-top: 2rem;
  padding-left: 2rem;
  border-top: 1px solid var(--theme-border-light);
}

.comments>ul>li ul {
  margin-top: 0;
}

.comment {
  padding: 0 2rem 2rem 0;
}

.comments>ul>li>.comment {
  padding-top: 2rem;
  padding-left: 2rem;
}

.comments>ul>li>.comment ul {
  padding-left: 2rem;
}

.comment__details>* {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
}

#comments>.comment-respond,
.comments>ul>.comment-respond {
  border: 1px solid var(--theme-border-light);
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 var(--theme-border-light);
  background-color: var(--theme-white);
  padding: 2rem;
}

.comments ul li .comment-respond {
  padding: 0 2rem 2rem 5.5rem;
}

@media only screen and (max-width: 47.99em) {
  .comments ul li .comment-respond {
    padding-left: 0;
  }
}

.comment-respond [class^='comment-form-']>label:first-child {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
}

/*--------------------------------------------------------------
Pagination
--------------------------------------------------------------*/
.pagination {
  justify-content: center;
  padding-top: 32px;
}

.pagination>span,
.pagination .nav-links>a,
.pagination .nav-links>span,
.pagination>a,
.pagination ul li a,
.pagination ul li span.current,
.pagination ul li span.dots {
  border: 2px solid transparent;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
}

.pagination .nav-links>span:not(.dots),
.pagination>span:not(.dots),
.pagination ul li span.current:not(.dots) {
  border-color: var(--theme-border-light);
}

/*--------------------------------------------------------------
HivePress
--------------------------------------------------------------*/

.hp-status span {
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
}

.hp-map {
  border-radius: 3px;
}

.hp-menu--tabbed .hp-menu__item--current::before {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
}

.hp-meta,
.hp-result-count {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
}

.hp-page__title,
.hp-section__title {
  padding-top: 1rem;
  position: relative;
}

.hp-page__title::before,
.hp-section__title::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 45px;
  display: block;
  content: '';
  background-color: var(--theme-primary);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
}

.hp-form__messages {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.hp-form--listing-search,
.hp-form--vendor-search {
  border: 1px solid var(--theme-border-light);
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 var(--theme-border-light);
  background-color: var(--theme-white);
  padding: 0.625rem;
  align-items: center;
}

@media only screen and (max-width: 47.99em) {

  .hp-form--listing-search,
  .hp-form--vendor-search {
    align-items: stretch;
  }
}

.hp-form--listing-search .hp-form__field:not(:last-child),
.hp-form--listing-search .hp-form__fields:not(:last-child),
.hp-form--vendor-search .hp-form__field:not(:last-child),
.hp-form--vendor-search .hp-form__fields:not(:last-child) {
  margin-right: 0.625rem;
}

@media only screen and (max-width: 47.99em) {

  .hp-form--listing-search .hp-form__field:not(:last-child),
  .hp-form--listing-search .hp-form__fields:not(:last-child),
  .hp-form--vendor-search .hp-form__field:not(:last-child),
  .hp-form--vendor-search .hp-form__fields:not(:last-child) {
    margin: 0;
  }
}

@media only screen and (max-width: 47.99em) {

  .hp-form--listing-search .hp-form__fields:not(:last-child),
  .hp-form--vendor-search .hp-form__fields:not(:last-child) {
    margin-bottom: 0.625rem;
  }
}

.hp-form--listing-search .hp-form__field:not(:last-child),
.hp-form--vendor-search .hp-form__field:not(:last-child) {
  border-right: 1px solid var(--theme-border-light);
}

@media only screen and (max-width: 47.99em) {

  .hp-form--listing-search .hp-form__field:not(:last-child),
  .hp-form--vendor-search .hp-form__field:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--theme-border-light);
  }
}

.hp-form--listing-search .hp-form__field input[type='color'],
.hp-form--listing-search .hp-form__field input[type='date'],
.hp-form--listing-search .hp-form__field input[type='datetime'],
.hp-form--listing-search .hp-form__field input[type='datetime-local'],
.hp-form--listing-search .hp-form__field input[type='email'],
.hp-form--listing-search .hp-form__field input[type='month'],
.hp-form--listing-search .hp-form__field input[type='number'],
.hp-form--listing-search .hp-form__field input[type='password'],
.hp-form--listing-search .hp-form__field input[type='range'],
.hp-form--listing-search .hp-form__field input[type='min'],
.hp-form--listing-search .hp-form__field input[type='max'],
.hp-form--listing-search .hp-form__field input[type='value'],
.hp-form--listing-search .hp-form__field input[type='step'],
.hp-form--listing-search .hp-form__field input[type='search'],
.hp-form--listing-search .hp-form__field input[type='tel'],
.hp-form--listing-search .hp-form__field input[type='text'],
.hp-form--listing-search .hp-form__field input[type='time'],
.hp-form--listing-search .hp-form__field input[type='url'],
.hp-form--listing-search .hp-form__field select,
.hp-form--listing-search .hp-form__field textarea,
.hp-form--vendor-search .hp-form__field input[type='color'],
.hp-form--vendor-search .hp-form__field input[type='date'],
.hp-form--vendor-search .hp-form__field input[type='datetime'],
.hp-form--vendor-search .hp-form__field input[type='datetime-local'],
.hp-form--vendor-search .hp-form__field input[type='email'],
.hp-form--vendor-search .hp-form__field input[type='month'],
.hp-form--vendor-search .hp-form__field input[type='number'],
.hp-form--vendor-search .hp-form__field input[type='password'],
.hp-form--vendor-search .hp-form__field input[type='range'],
.hp-form--vendor-search .hp-form__field input[type='min'],
.hp-form--vendor-search .hp-form__field input[type='max'],
.hp-form--vendor-search .hp-form__field input[type='value'],
.hp-form--vendor-search .hp-form__field input[type='step'],
.hp-form--vendor-search .hp-form__field input[type='search'],
.hp-form--vendor-search .hp-form__field input[type='tel'],
.hp-form--vendor-search .hp-form__field input[type='text'],
.hp-form--vendor-search .hp-form__field input[type='time'],
.hp-form--vendor-search .hp-form__field input[type='url'],
.hp-form--vendor-search .hp-form__field select,
.hp-form--vendor-search .hp-form__field textarea {
  padding-top: 0;
  padding-bottom: 0;
  border: none;
  font-size: 1.125rem;
  line-height: 3rem;
  height: 3rem;
}

.hp-form--primary .select2-container--default .select2-selection {
  border: none;
}

.hp-form--primary .select2-container--default .select2-selection__rendered {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.125rem;
  line-height: 3rem;
  height: 3rem;
}

.hp-form--primary .select2-container--default .select2-selection__arrow {
  top: 0.75rem;
}

.hp-form--listing-search .hp-form__button,
.hp-form--vendor-search .hp-form__button {
  height: 3.125rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 1.125rem;
}

.hp-form--listing-sort select,
.hp-form--vendor-sort select {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
}

.hp-field--attachment-upload>div:first-child>div img {
  border-radius: 3px;
}

.hp-field__label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
}

.hp-listing--view-block {
  border: none !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06) !important;
  background-color: var(--theme-white);
  transition: box-shadow 0.3s ease, transform 0.3s ease !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hp-listing--view-block:hover {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1) !important;
}

.hp-listing--view-block.hp-listing--featured {
  border-top: 5px solid var(--theme-navbar) !important;
  background-color: #ffffff !important;
}

.hp-listing--view-block .hp-listing__featured-badge {
  left: 0;
  top: 1.5rem;
  border-radius: 0 3px 3px 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--theme-warning);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
}

.hp-listing--view-block .hp-listing__featured-badge i {
  font-size: 12px;
}

.hp-listing--view-block .hp-listing__content:not(:last-child),
.hp-listing--view-block .hp-listing__footer:not(:last-child),
.hp-listing--view-block .hp-listing__header:not(:last-child) {
  margin-bottom: 0;
}

.hp-listing--view-block .hp-listing__content {
  padding: 1.5rem;
}

.hp-listing--view-block .hp-listing__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--theme-border-light);
}

.hp-listing__images-slider {
  border-radius: 3px;
}

.hp-listing__images-carousel .slick-slide img {
  border: 1px solid transparent;
  border-radius: 4px;
  opacity: 0.6;
  transition: border-color 0.25s, opacity 0.25s;
}

.hp-listing__images-carousel .slick-current img {
  border-color: var(--theme-warning);
  opacity: 1;
}

.hp-listing__images>img {
  border-radius: 3px;
}

.hp-listing--view-block .hp-listing__created-date,
.hp-listing--view-page .hp-listing__created-date {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
}

.hp-listing__details .hp-listing__categories {
  display: none !important;
}

.hp-listing--view-block .hp-listing__categories:not(:last-child),
.hp-listing--view-page .hp-listing__categories:not(:last-child) {
  margin-bottom: 0;
}

.hp-listing--view-block .hp-listing__categories a,
.hp-listing--view-page .hp-listing__categories a {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
  background-color: rgba(7, 36, 86, 0.085);
  color: rgba(15, 23, 39, 0.45);
  transition: color 0.25s, background-color 0.25s;
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
}

.hp-listing--view-block .hp-listing__categories a {
  margin-top: 8px;
  margin-right: 4px;
}

.hp-listing--view-block .hp-listing__categories a:hover,
.hp-listing--view-page .hp-listing__categories a:hover {
  background-color: var(--theme-accent);
  color: var(--theme-white);
  font-weight: 900;
}

.hp-listing--view-page .hp-listing__attributes--primary {
  border: 1px solid var(--theme-border-light);
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 var(--theme-border-light);
  background-color: var(--theme-white);
  padding: 1rem 1.5rem;
}

.hp-listing--view-page .hp-listing__attributes--primary .hp-listing__attribute {
  background-color: transparent;
  padding: 0;
}

.hp-listing--view-page .hp-listing__attributes--primary .hp-listing__attribute:not(:last-child) {
  border-bottom: 1px solid var(--theme-border-light);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
}

.hp-listing-category--submit-block,
.hp-listing-category--view-block {
  border-radius: 3px;
  transition: transform 0.25s;
  color: var(--theme-white);
  position: relative;
}

.hp-listing-category--submit-block:hover,
.hp-listing-category--view-block:hover {
  transform: translateY(-7px);
}

.hp-listing-category--submit-block .hp-listing-category__content:not(:last-child),
.hp-listing-category--submit-block .hp-listing-category__header:not(:last-child),
.hp-listing-category--view-block .hp-listing-category__content:not(:last-child),
.hp-listing-category--view-block .hp-listing-category__header:not(:last-child) {
  margin-bottom: 0;
}

.hp-listing-category--view-page .hp-listing-category__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hp-listing-category--submit-block .hp-listing-category__content,
.hp-listing-category--view-block .hp-listing-category__content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 2rem;
}

.hp-listing-category--submit-block .hp-listing-category__content a,
.hp-listing-category--submit-block .hp-listing-category__content h1,
.hp-listing-category--submit-block .hp-listing-category__content h2,
.hp-listing-category--submit-block .hp-listing-category__content h3,
.hp-listing-category--submit-block .hp-listing-category__content h4,
.hp-listing-category--submit-block .hp-listing-category__content h5,
.hp-listing-category--submit-block .hp-listing-category__content h6,
.hp-listing-category--view-block .hp-listing-category__content a,
.hp-listing-category--view-block .hp-listing-category__content h1,
.hp-listing-category--view-block .hp-listing-category__content h2,
.hp-listing-category--view-block .hp-listing-category__content h3,
.hp-listing-category--view-block .hp-listing-category__content h4,
.hp-listing-category--view-block .hp-listing-category__content h5,
.hp-listing-category--view-block .hp-listing-category__content h6 {
  color: inherit;
}

.hp-listing-category--submit-block .hp-listing-category__image a::after,
.hp-listing-category--view-block .hp-listing-category__image a::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 3px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.5));
}

.hp-listing-category--submit-block .hp-listing-category__image img,
.hp-listing-category--view-block .hp-listing-category__image img {
  border-radius: 3px;
}

.hp-listing-category--view-block .hp-listing-category__description,
.hp-listing-category--view-block .hp-listing-category__name {
  text-align: left;
}

.hp-listing-category--view-page .hp-listing-category__description,
.hp-listing-category--view-page .hp-listing-category__name {
  text-align: center;
}

.hp-listing-category__item-count {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
  background-color: rgba(7, 36, 86, 0.085);
  color: rgba(15, 23, 39, 0.45);
  transition: color 0.25s, background-color 0.25s;
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: inherit;
}

.hp-listing-category--view-block .hp-listing-category__item-count {
  position: absolute;
  left: 2rem;
  top: 2rem;
  z-index: 1;
}

.hp-listing-category--view-block .hp-listing-category__content .hp-listing-category__item-count {
  display: none !important;
}

.hp-listing-package--view-block {
  border: 1px solid var(--theme-border-light);
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 var(--theme-border-light);
  background-color: var(--theme-white);
  transition: box-shadow 0.25s;
}

.hp-listing-package--view-block:hover {
  box-shadow: 0 0 12px rgba(7, 36, 86, 0.125);
}

.hp-listing-package--view-block .hp-listing-package__content:not(:last-child),
.hp-listing-package--view-block .hp-listing-package__footer:not(:last-child),
.hp-listing-package--view-block .hp-listing-package__header:not(:last-child) {
  margin-bottom: 0;
}

.hp-listing-package--view-block .hp-listing-package__footer,
.hp-listing-package--view-block .hp-listing-package__header {
  padding: 1rem 1.5rem;
}

.hp-listing-package--view-block .hp-listing-package__header {
  border-bottom: 1px solid var(--theme-border-light);
}

.hp-listing-package--view-block .hp-listing-package__content {
  padding: 1.5rem;
}

.hp-listing-package--view-block .hp-listing-package__footer {
  border-top: 1px solid var(--theme-border-light);
}

.hp-vendor--view-block {
  border: 1px solid var(--theme-border-light);
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 var(--theme-border-light);
  background-color: var(--theme-white);
  transition: box-shadow 0.25s;
}

.hp-vendor--view-block:hover {
  box-shadow: 0 0 12px rgba(7, 36, 86, 0.125);
}

.hp-vendor--view-block .hp-vendor__header {
  padding: 3rem 2rem 0;
}

.hp-vendor--view-block .hp-vendor__content {
  padding: 0 2rem 3rem;
}

.hp-vendor--view-block .hp-vendor__content:not(:last-child) {
  margin-bottom: 0;
}

.hp-vendor--view-block .hp-vendor__footer {
  border-top: 1px solid var(--theme-border-light);
  padding: 1rem 1.5rem;
}

.hp-vendor--view-block .hp-vendor__registered-date,
.hp-vendor--view-page .hp-vendor__registered-date {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
}

.hp-vendor--view-page .hp-vendor__attributes--primary {
  border: 1px solid var(--theme-border-light);
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 var(--theme-border-light);
  background-color: var(--theme-white);
  padding: 1rem 1.5rem;
}

.hp-vendor--view-page .hp-vendor__attributes--primary .hp-vendor__attribute {
  background-color: transparent;
  padding: 0;
}

.hp-vendor--view-page .hp-vendor__attributes--primary .hp-vendor__attribute:not(:last-child) {
  border-bottom: 1px solid var(--theme-border-light);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
}

.hp-vendor__actions--secondary {
  border: 1px solid var(--theme-border-light);
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 var(--theme-border-light);
  background-color: var(--theme-white);
  padding: 1.5rem 2rem;
}

.hp-vendor__actions--secondary .hp-vendor__balance strong {
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  font-size: 0.6875rem;
}

.hp-review--view-block {
  border: 1px solid var(--theme-border-light);
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 var(--theme-border-light);
  background-color: var(--theme-white);
  padding: 2rem;
}

.hp-review__created-date {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
}

.hp-message--view-block {
  border-radius: 3px;
}

.hp-message--view-block .hp-message__sent-date {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
}

.hp-membership-plan--view-block {
  border: 1px solid var(--theme-border-light);
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 var(--theme-border-light);
  background-color: var(--theme-white);
  transition: box-shadow 0.25s;
}

.hp-membership-plan--view-block:hover {
  box-shadow: 0 0 12px rgba(7, 36, 86, 0.125);
}

.hp-membership-plan--view-block .hp-membership-plan__content:not(:last-child),
.hp-membership-plan--view-block .hp-membership-plan__footer:not(:last-child),
.hp-membership-plan--view-block .hp-membership-plan__header:not(:last-child) {
  margin-bottom: 0;
}

.hp-membership-plan--view-block .hp-membership-plan__footer,
.hp-membership-plan--view-block .hp-membership-plan__header {
  padding: 1rem 1.5rem;
}

.hp-membership-plan--view-block .hp-membership-plan__header {
  border-bottom: 1px solid var(--theme-border-light);
}

.hp-membership-plan--view-block .hp-membership-plan__content {
  padding: 1.5rem;
}

.hp-membership-plan--view-block .hp-membership-plan__footer {
  border-top: 1px solid var(--theme-border-light);
}

.hp-membership--view-block {
  border: 1px solid var(--theme-border-light);
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 var(--theme-border-light);
  background-color: var(--theme-white);
  padding: 1.5rem;
}

.hp-membership--view-block .hp-membership__expired-date {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
}

/*--------------------------------------------------------------
WooCommerce
--------------------------------------------------------------*/
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.woocommerce .woocommerce-result-count {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
}

.woocommerce .woocommerce-ordering select {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
}

.woocommerce span.onsale {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
  background-color: rgba(7, 36, 86, 0.085);
  color: rgba(15, 23, 39, 0.45);
  transition: color 0.25s, background-color 0.25s;
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
  color: var(--theme-white);
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: 1px solid var(--theme-border-light);
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 var(--theme-border-light);
  background-color: var(--theme-white);
  padding: 1.5rem;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border-radius: 3px;
}

.woocommerce .widget_price_filter .price_label {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.woocommerce ul.product_list_widget li img {
  border-radius: 3px;
}

.woocommerce ul.cart_list li .reviewer,
.woocommerce ul.product_list_widget li .reviewer {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6875rem;
}

.woocommerce div.product div.images img {
  border-radius: 3px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border: 1px solid var(--theme-border-light);
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 var(--theme-border-light);
  background-color: var(--theme-white);
  padding: 1.5rem;
  transition: box-shadow 0.25s;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  box-shadow: 0 0 12px rgba(7, 36, 86, 0.125);
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  border-radius: 3px;
}

.woocommerce #add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
  border-radius: 3px;
}

.woocommerce #add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  border-radius: 3px;
}

.woocommerce #add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  border-radius: 3px;
}

.woocommerce-MyAccount-navigation {
  border: 1px solid var(--theme-border-light);
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 var(--theme-border-light);
  background-color: var(--theme-white);
  padding: 2rem;
}

.woocommerce-MyAccount-navigation:not(:last-child) {
  margin-bottom: 2rem;
}

.woocommerce .woocommerce-customer-details address {
  border: 1px solid var(--theme-border-light);
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 var(--theme-border-light);
  background-color: var(--theme-white);
  padding: 1.5rem;
}

.woocommerce nav.woocommerce-pagination {
  justify-content: center;
}

.woocommerce nav.woocommerce-pagination>span,
.woocommerce nav.woocommerce-pagination .nav-links>a,
.woocommerce nav.woocommerce-pagination .nav-links>span,
.woocommerce nav.woocommerce-pagination>a,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li span.dots {
  border: 2px solid transparent;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
}

.woocommerce nav.woocommerce-pagination .nav-links>span:not(.dots),
.woocommerce nav.woocommerce-pagination>span:not(.dots),
.woocommerce nav.woocommerce-pagination ul li span.current:not(.dots) {
  border-color: var(--theme-border-light);
}

/*!
 * Font Awesome Free 5.11.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

/* =========================================================
   UTILIDADES / FIXES GENERALES
   ========================================================= */

.hp-form__field--spacer {
  display: block;
  height: 60px;
  /* Ajusta según el alto del desplegable de categoría */
}

canvas.hp-chart {
  background-color: var(--theme-white) !important;
}

/* WooCommerce: oculta selector de cantidad */
.wc-block-components-quantity-selector {
  display: none !important;
}

.wp-block-woocommerce-checkout-order-summary-block {
  background-color: var(--theme-white);
}

.wc-block-components-address-card {
  background-color: rgba(255, 255, 255, 0.6);
}

#content.site-content {
  background-color: var(--theme-soft-bg);
  height: 100%;
  padding: 96px 0px 48px;
}


/* Inputs globales */
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="text"],
input[type="email"],
input[type="url"] {
  background-color: var(--theme-white) !important;
}

input[type="checkbox"]:checked {
  background-color: #25d366;
  /* verde WhatsApp */
}

/* =========================================================
   HEADER / LOGO / HERO
   ========================================================= */

.site-header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
}

/* Admin bar visible: bajar el header para no solaparse */
.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media screen and (max-width: 600px) {

  /* admin-bar.min.css pone position:absolute y frontend.min.css pone top:-46px */
  #wpadminbar {
    position: fixed !important;
    top: 0 !important;
  }

  html.admin-bar {
    margin-top: 46px !important;
  }
}

.site-content {
  padding-top: 72px;
}

.site-header img.custom-logo,
.header img.custom-logo,
.custom-logo {
  max-width: 250px;
  width: auto;
}

.header-hero--large {
  height: 220px !important;
  padding: 20px 0px 50px 0px !important;
}

.header-hero__content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay gradiente del hero */
.header-hero {
  position: relative;
  overflow: hidden;
}

.header-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(170, 7, 107, 0.75), rgba(97, 4, 95, 0.75));
  z-index: 1;
  pointer-events: none;
}

/* =========================================================
   ICONOS / ACCIONES
   ========================================================= */

.hp-icon.fas.fa-heart {
  font-size: 24px;
}

.fas.fa-location-arrow {
  margin-right: 6px;
}

.fab.fa-telegram-plane {
  color: #0088cc;
  font-size: 24px;
  margin-left: 6px;
}

.fab.fa-whatsapp {
  color: #2daf88;
  font-size: 24px;
  margin-left: 8px;
  display: none;
}

.fab.fa-whatsapp.visible {
  display: inline-block !important;
}

.fas.fa-phone-square-alt {
  color: var(--theme-accent);
  font-size: 24px;
}

/* Autorenew: icono gris / activo rosa */
.hp-listing__action--autorenew .hp-icon {
  color: #ccc;
}

.hp-listing__action--autorenew.is-active .hp-icon {
  color: var(--theme-accent);
}

.autorenews_hidden {
  display: none !important;
}

/* =========================================================
   LISTADOS (CARDS / GRID)
   ========================================================= */

/* Edad como pill (estilo del primer diseño) */
.hp-listing--view-block .hp-listing__attributes--secondary {
  margin-top: 0px;
  margin-bottom: 0 !important;
  padding-left: 4px !important;
}

.hp-listing--view-block .hp-listing__attribute--edad {
  display: inline-flex;
  align-items: center;

  padding: 0px 8px 0px 4px;
  color: var(--theme-black-light);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
}

.hp-listing--view-block .hp-listing__attribute--edad p {
  line-height: 1.4;
  margin: 0;
}

/* Card styles consolidated above */
.hp-listing--view-block {
  background-color: var(--theme-light-bg) !important;
  border: 1px solid #e6e1ec !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 24px rgba(20, 12, 28, .08) !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}


.hp-listing--view-block .hp-listing__content {
  padding: 1rem 0 0.5rem;
}

.hp-listing--view-block .hp-listing__attributes--secondary:not(:last-child),
.hp-listing--view-block .hp-listing__attributes--ternary:not(:last-child),
.hp-listing--view-block .hp-listing__details--primary:not(:last-child),
.hp-listing--view-block .hp-listing__image:not(:last-child),
.hp-listing--view-block .hp-listing__title:not(:last-child) {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 640px) {

  .hp-listing--view-block .hp-listing__attributes--secondary:not(:last-child),
  .hp-listing--view-block .hp-listing__attributes--ternary:not(:last-child),
  .hp-listing--view-block .hp-listing__details--primary:not(:last-child),
  .hp-listing--view-block .hp-listing__image:not(:last-child),
  .hp-listing--view-block .hp-listing__title:not(:last-child) {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .hp-block.hp-listing__attributes.hp-listing__attributes--secondary .hp-col-lg-6.hp-col-xs-12 {
    padding: 0px !important;
  }
}

/* Fecha (clamp) */
.hp-listing--view-block .hp-listing__created-date.hp-listing__date.hp-meta {
  height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}

/* Featured */
.hp-listing--view-block.hp-listing--featured {
  box-shadow: 0 5px 25px rgba(190, 105, 201, 0.3) !important;
}

/* Featured star: cuadrado redondeado morado (como antes) */
.hp-listing--view-block .hp-listing__header {
  position: relative;
  /* referencia para el badge */
}

.hp-listing--view-block .hp-listing__featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 30;

  width: 34px;
  height: 34px;
  border-radius: 4px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: var(--theme-accent);
  border: 1px solid var(--theme-accent);
  box-shadow: 0 10px 18px rgba(20, 12, 28, 0.12);
}

.hp-listing--view-block .hp-listing__featured-badge .hp-icon {
  color: var(--theme-white) !important;
  font-size: 16px;
  line-height: 1;
}


.hp-listing--view-block .hp-listing__featured-badge .hp-icon {
  color: var(--theme-white) !important;
}


/* Ajuste de atributos en tarjeta */
.hp-listing--view-block .hp-listing__attributes--primary .hp-listing__attribute:not(:last-child) {
  margin-right: 0;
}

/* Categoría como badge (arriba a la derecha) */

.hp-grid__item {
  position: relative;
}

div.hp-grid__item.hp-col-sm-4.hp-col-xs-12 div.hp-listing__categories.hp-listing__category {
  display: none;
}

div.hp-grid__item.hp-col-sm-3.hp-col-xs-12 div.hp-listing__categories.hp-listing__category {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 10;
  padding: 3px 8px;
  border-radius: 5px;
  color: var(--theme-black-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: none;
}

.hp-listing__categories.hp-listing__category a {
  font-size: 9px;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(2px);
}

/* Detalles: descripción (clamp) */
.hp-listing__details.hp-listing__details--primary p {
  margin: 0 0 20px;
  line-height: 1.35;
  height: calc(1.35em * 4);

  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}


/* Mantiene altura mínima del bloque de detalles */
.hp-listing__content .hp-listing__details.hp-listing__details--primary {
  min-height: 240px;
}

/* Títulos: alturas y clamp */
.hp-grid__item.hp-col-sm-4.hp-col-xs-12 article.hp-listing.hp-listing--view-block div.hp-listing__content h4.hp-listing__title,
.hp-grid__item.hp-col-sm-6.hp-col-xs-12 article.hp-listing.hp-listing--view-block div.hp-listing__content h4.hp-listing__title {
  height: 50px;
}

h4.hp-listing__title {
  text-transform: uppercase;
  display: -webkit-box;
  height: 35px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}

.hp-grid__item.hp-col-sm-3.hp-col-xs-12 .hp-listing__title {
  font-size: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.hp-listing__location {
  text-transform: none;
}

.title::before,
.content-title::before {
  background-color: var(--theme-accent);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
}

/* Anuncio expirado */
.anuncio-expirado {
  opacity: 0.5;
  /* pointer-events: none; */
}

/* =========================================================
   CONTACTO / ATRIBUTOS (OCULTAR / AJUSTAR)
   ========================================================= */

div.hp-listing__attribute.hp-listing__attribute--whatsapp {
  display: none;
}

/* Oculta iconos en sidebar dentro del atributo teléfono */
aside .hp-listing__attribute.hp-listing__attribute--telefono .fab.fa-telegram-plane,
aside .hp-listing__attribute.hp-listing__attribute--telefono .fab.fa-whatsapp,
aside .hp-listing__attribute.hp-listing__attribute--telefono .fas.fa-phone-square-alt {
  display: none;
}

/* Oculta label en checkbox específico */
div.hp-form__field.hp-form__field--checkbox label.hp-field__label.hp-form__label {
  display: none;
}

/* Links / iconos */
a.telefono {
  color: var(--theme-white);
  font-weight: 400;
  line-height: 40px;
}

img.cono {
  width: 25px;
}

/* =========================================================
   NAV / MENU / FOOTER
   ========================================================= */

i.sconsent-menu-icon {
  margin-right: 8px;
}

/* Item footer centrado, no clicable */
#menu-item-843 {
  flex: 1 0 100%;
  text-align: center;
  list-style: none;
}

#menu-item-843 a {
  pointer-events: none;
  text-decoration: none;
  color: var(--theme-gray);
  font-size: 14px;
}

/* Copyrights / spans */
p.copyRight {
  text-align: left;
  font-size: 14px;
  color: var(--theme-gray);
  margin: 15px 0;
}

p.colorlib-copyright {
  display: none !important;
}

footer span.telefono_span,
footer span.telegram_span,
footer span.wha_span,
footer .hp-listing__attribute.hp-listing__attribute--telegram {
  display: none;
}

.telefono_span a,
.telegram_span a {
  font-size: 18px;
  vertical-align: middle;
}

.telegram_span a {
  color: #0088cc;
}

/* =========================================================
   MODALES / FORMULARIOS (LAYOUT)
   ========================================================= */

/* Modal móvil del tema: oculto */
.hp-modal--mobile.hp-modal {
  display: none;
}

/* Modal: campos en fila */
div.hp-modal .hp-form__fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

div.hp-page__content textarea.hp-field--textarea {
  width: 100%;
}

.hp-field--textarea {
  width: inherit;
  background-color: var(--theme-white);
}

.hp-field--number-range input {
  background-color: var(--theme-white);
}

/* Repeater table: bordes y celdas */
.hp-field--repeater table td {
  background-color: var(--theme-light-bg);
  border: 0 solid #e6d3e3;
}

.hp-field--repeater table td:first-child,
.hp-field--repeater table td:last-child {
  background-color: var(--theme-light-bg);
}

/* Botón filtro listings */
button.button--large.hp-button.hp-button--wide.hp-button--mobile.hp-button--listing-filter {
  background-color: rgba(85, 44, 80, 0.086);
}

/* Formularios de crear/editar/actualizar: 2 columnas */
.hp-form.hp-form--listing-submit .hp-form__fields,
.hp-form.hp-form--listing-edit .hp-form__fields,
.hp-form.hp-form--listing-update .hp-form__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hp-form.hp-form--listing-submit .hp-form__field,
.hp-form.hp-form--listing-edit .hp-form__field,
.hp-form.hp-form--listing-update .hp-form__field {
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
}

/* Fancybox: filtro en 2 columnas */
.fancybox-slide #listing_filter_modal .hp-form__field {
  flex-basis: calc(50% - 10px);
  margin-bottom: 10px;
  padding: 25px 0 0 !important;
}

/* Fancybox: login/register a 1 columna */
.fancybox-slide #user_login_modal .hp-form__field,
#user_register_modal .hp-form__field {
  flex-basis: calc(100% - 10px) !important;
}

/* Evitar que el filtro se convierta en 3 columnas */
.fancybox-container .hp-form--listing-filter .hp-form__field.hp-col-sm-4 {
  flex: 0 0 50% !important;
  max-width: 50% !important;
}

/* =========================================================
   PRICING / MEMBERSHIP PLANS
   ========================================================= */

.hp-membership-plan--view-block {
  height: 100%;
}

.hp-membership-plan--view-block .hp-membership-plan__price del {
  font-size: 20px;
}

/* ====== Pricing: estilo adulto, compatible con HivePress (SIN grid) ====== */
.hp-membership-plans {
  --scp-card: var(--theme-white);
  --scp-border: #e6e1ec;
  --scp-text: #1d1a23;
  --scp-muted: #6f6a7c;

  --scp-green: #00e35b;
  /* precio */
  --scp-purple: var(--theme-primary);
  /* morado */

  --scp-radius: 14px;
  --scp-shadow: 0 10px 24px rgba(20, 12, 28, 0.08);
}

/* Layout: FLEX (evita conflicto con hp-col-*) */
.hp-membership-plans .hp-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 24px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Columnas */
.hp-membership-plans .hp-grid__item {
  float: none !important;
  width: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;

  flex: 1 1 260px !important;
  max-width: none !important;
  min-width: 240px;
}

/* Tarjeta */
.hp-membership-plans .hp-membership-plan--view-block {
  width: 100% !important;
  max-width: none !important;

  background: var(--scp-card);
  border: 1px solid var(--scp-border);
  border-radius: var(--scp-radius);
  box-shadow: var(--scp-shadow);
  overflow: hidden;

  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* Header */
.hp-membership-plans .hp-membership-plan__header {
  padding: 22px 22px 10px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Nombre */
.hp-membership-plans .hp-membership-plan__name {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--scp-text);
  position: relative;
  padding-top: 18px;
}

/* Precio */
.hp-membership-plans .hp-membership-plan__price {
  margin-top: 10px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--scp-green);
}

.hp-membership-plans .hp-membership-plan__price .woocommerce-Price-currencySymbol {
  font-size: 0.9em;
  opacity: 0.95;
}

/* Contenido */
.hp-membership-plans .hp-membership-plan__content {
  padding: 18px 22px 0;
  flex: 1 1 auto;
}

/* Imágenes */
.hp-membership-plans .hp-membership-plan__description img {
  max-width: 180px;
  height: auto;
  margin: 10px auto 6px;
  display: block;
  opacity: 0.9;
}

/* Lista */
.hp-membership-plans .hp-membership-plan__description ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.hp-membership-plans .hp-membership-plan__description li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--scp-muted);
  font-size: 15px;
  line-height: 1.35;
}

.hp-membership-plans .hp-membership-plan__description li:last-child {
  border-bottom: none;
}

.hp-membership-plans .hp-membership-plan__description li::before {
  content: "✓";
  font-weight: 700;
  color: rgba(0, 0, 0, 0.35);
  margin-top: 1px;
}

.hp-membership-plans .hp-membership-plan__description strong {
  color: var(--scp-text);
  font-weight: 700;
}

/* Footer y botón */
.hp-membership-plans .hp-membership-plan__footer {
  padding: 16px 22px 22px;
}

.hp-membership-plans .hp-membership-plan__select-button.button {
  width: 100%;
  border: 0 !important;
  border-radius: 10px !important;
  padding: 14px !important;
  background: var(--scp-purple) !important;
  color: var(--theme-white) !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 18px rgba(85, 44, 80, 0.22);
  transition: transform 0.12s ease, filter 0.12s ease;
}

.hp-membership-plans .hp-membership-plan__select-button.button:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

/* Plan recomendado */
.hp-membership-plans .hp-membership-plan--primary {
  border-color: #d7c6a2;
  box-shadow: 0 10px 15px #d7c6a2;
  background: linear-gradient(180deg, var(--theme-white), #fbf7ef);
}

.hp-membership-plans .hp-membership-plan--primary .hp-membership-plan__header {
  border-bottom-color: rgba(215, 198, 162, 0.55);
}

/* Badge recomendado */
.hp-membership-plans .hp-membership-plan__primary-badge {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 26px;
  padding: 0 12px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;

  background: #d2bb88;
  color: #2b2416;
  font-size: 12px;
  font-weight: 800;

  width: auto;
  font-family: inherit !important;
}

.hp-membership-plans .hp-membership-plan__primary-badge::before {
  content: "Recomendado" !important;
  font-family: inherit !important;
}

/* =========================================================
   FORMULARIO GENERAL - ESTILO ADULTO/SENSUAL
   ========================================================= */

.hp-form.hp-form--listing-update,
.hp-form.hp-form--listing-edit,
.hp-form.hp-form--listing-submit {
  background-color: var(--theme-light-bg);
  border: 2px solid var(--theme-soft-bg);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(85, 44, 80, 0.08);
}

/* Labels */
.hp-form__label {
  font-size: 16px;
  color: var(--theme-primary);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.hp-field__description {
  font-size: 13px;
  color: #887488;
  margin-bottom: 10px;
}

/* Inputs dentro del formulario */
.hp-form input[type="text"],
.hp-form input[type="number"],
.hp-form input[type="tel"],
.hp-form input[type="email"],
.hp-form input[type="url"],
.hp-form textarea,
.hp-form select {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 2px solid #e6d3e3;
  border-radius: 10px;
  background-color: var(--theme-white);
  color: var(--theme-black-light);
  transition: border-color 0.3s ease;
}

.hp-form input:focus,
.hp-form select:focus,
.hp-form textarea:focus {
  outline: none;
  border-color: var(--theme-accent);
  box-shadow: 0 0 0 2px rgba(187, 20, 209, 0.15);
}

/* Select2 single: igual que los inputs del formulario (solo submit/edit/update/filter, NO barra de búsqueda) */
.hp-form--listing-submit .select2-container--default .select2-selection--single,
.hp-form--listing-edit .select2-container--default .select2-selection--single,
.hp-form--listing-update .select2-container--default .select2-selection--single,
.hp-form--listing-filter .select2-container--default .select2-selection--single {
  height: auto !important;
  padding: 12px 14px !important;
  border: 2px solid #e6d3e3 !important;
  border-radius: 10px !important;
  background-color: var(--theme-white) !important;
  box-shadow: none !important;
}

.hp-form--listing-submit .select2-container--default .select2-selection--single .select2-selection__rendered,
.hp-form--listing-edit .select2-container--default .select2-selection--single .select2-selection__rendered,
.hp-form--listing-update .select2-container--default .select2-selection--single .select2-selection__rendered,
.hp-form--listing-filter .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0 !important;
  line-height: 1.5 !important;
  font-size: 15px !important;
  color: var(--theme-black-light) !important;
}

.hp-form--listing-submit .select2-container--default .select2-selection--single .select2-selection__arrow,
.hp-form--listing-edit .select2-container--default .select2-selection--single .select2-selection__arrow,
.hp-form--listing-update .select2-container--default .select2-selection--single .select2-selection__arrow,
.hp-form--listing-filter .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50% !important;
  right: 14px !important;
  transform: translateY(-50%) !important;
  height: auto !important;
}

.hp-form--listing-submit .select2-container--default.select2-container--open .select2-selection--single,
.hp-form--listing-submit .select2-container--default .select2-selection--single:focus,
.hp-form--listing-edit .select2-container--default.select2-container--open .select2-selection--single,
.hp-form--listing-edit .select2-container--default .select2-selection--single:focus,
.hp-form--listing-update .select2-container--default.select2-container--open .select2-selection--single,
.hp-form--listing-update .select2-container--default .select2-selection--single:focus,
.hp-form--listing-filter .select2-container--default.select2-container--open .select2-selection--single,
.hp-form--listing-filter .select2-container--default .select2-selection--single:focus {
  border-color: var(--theme-accent) !important;
  box-shadow: 0 0 0 2px rgba(187, 20, 209, 0.15) !important;
  outline: none !important;
}

/* Select2 múltiple */
.select2-container--default .select2-selection--multiple {
  border: 2px dashed var(--theme-accent) !important;
  border-radius: 12px !important;
  padding: 10px !important;
  background: var(--theme-white) !important;
  min-height: 50px;
}

.select2-selection__choice {
  background-color: var(--theme-accent-alpha-10) !important;
  border: 1px solid var(--theme-accent) !important;
  color: var(--theme-primary) !important;
  border-radius: 8px !important;
  padding: 4px 10px !important;
  font-size: 14px !important;
  font-weight: 500;
  margin: 4px 6px 4px 0 !important;
}

.select2-selection__choice__remove {
  color: var(--theme-accent) !important;
  font-weight: 700;
  margin-right: 6px;
}

.hp-form--primary .select2-container--default .select2-selection__arrow {
  top: 0.75rem !important;
  right: 1.05rem !important;
}

/* Checkbox */
.hp-form input[type="checkbox"] {
  transform: scale(1.2);
  accent-color: var(--theme-accent);
  margin-right: 10px;
}

/* Botones formulario — estándar gris/hover-rosa */
.hp-form__button {
  border: none !important;
  border-radius: 12px !important;
  padding: 14px 20px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--theme-white) !important;
  background-color: var(--theme-gray) !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
  transition: background 0.2s ease, transform 0.12s ease !important;
}

.hp-form__button:hover,
.hp-form__button:focus {
  background-color: var(--theme-primary) !important;
  transform: translateY(-1px) !important;
}

/* Modal (general) */
.hp-modal {
  border-radius: 12px !important;
  padding: 25px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hp-modal__title {
  color: var(--theme-primary);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}

.hp-form__description {
  font-size: 14px;
  color: #555;
}

/* =========================================================
   SIDEBAR: MAPA + CAJA DE DATOS (atributos)
   ========================================================= */

/* Card principal de datos */
.hp-page__sidebar .hp-listing__attributes--primary.widget.hp-widget {
  background: var(--theme-light-bg) !important;
  border: 1px solid var(--theme-primary-alpha-14) !important;
  padding: 0px !important;
  box-shadow: 0 12px 24px rgba(20, 12, 28, 0.08) !important;
  overflow: hidden;
}

/* Título “Datos” */
.hp-page__sidebar .hp-listing__attributes--primary.widget.hp-widget::before {
  content: "Datos";
  display: none;
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--theme-primary);
  text-align: center;
}

/* Atributos como “cajitas” */
.hp-page__sidebar .hp-listing__attributes--primary .hp-listing__attribute {
  padding: 12px !important;
  margin: 0 0 10px !important;
  color: rgba(85, 44, 80, 0.92) !important;
  font-size: 16px;
  line-height: 1.35;
}

.hp-page__sidebar .hp-listing__attribute--servicios p {
  margin: 0 !important;
  color: rgba(85, 44, 80, 0.86) !important;
}

.hp-page__sidebar .hp-listing__attribute--edad,
.hp-page__sidebar .hp-listing__attribute--peso,
.hp-page__sidebar .hp-listing__attribute--altura {
  display: flex;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.hp-page__sidebar .hp-listing__attribute--contacto {
  text-align: center;
  font-weight: 700;
}

.hp-page__sidebar .hp-listing__attribute--telefono {
  background-color: var(--theme-navbar) !important;
}

/* Card del mapa */
.hp-page__sidebar .hp-listing__map.hp-map.widget {
  position: relative;
  padding: 0 !important;
  background: var(--theme-light-bg) !important;
  border: 1px solid var(--theme-primary-alpha-14) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 12px 26px rgba(20, 12, 28, 0.1) !important;
  min-height: 320px;
}

/* Etiqueta “Mapa” */
.hp-page__sidebar .hp-listing__map.hp-map.widget::before {
  content: "Mapa";
  position: absolute;
  top: 10px;
  left: 12px;
  z-index: 5;

  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.3px;

  color: var(--theme-primary);
  background: rgba(255, 251, 255, 0.92);
  border: 1px solid rgba(187, 20, 209, 0.22);
  box-shadow: 0 10px 18px rgba(20, 12, 28, 0.1);
}

/* Suaviza el borde del mapa interno */
.hp-page__sidebar .hp-listing__map.hp-map .gm-style,
.hp-page__sidebar .hp-listing__map.hp-map iframe {
  border: 0 !important;
  border-radius: 18px !important;
}

/* Controles Google */
.hp-page__sidebar .hp-listing__map.hp-map .gm-control-active,
.hp-page__sidebar .hp-listing__map.hp-map .gm-fullscreen-control {
  border-radius: 12px !important;
  box-shadow: 0 10px 18px rgba(20, 12, 28, 0.14) !important;
}

.hp-page__sidebar .hp-listing__map.hp-map .gm-control-active:focus,
.hp-page__sidebar .hp-listing__map.hp-map .gm-control-active:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(187, 20, 209, 0.2), 0 10px 18px rgba(20, 12, 28, 0.14) !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* <= 1200px */
@media only screen and (max-width: 1200px) {
  .header-hero--large {
    height: 200px !important;
  }

  .fancybox-slide #listing_filter_modal .hp-form__field {
    flex-basis: calc(50% - 10px) !important;
  }

  .header-navbar__menu {
    display: flex !important;
  }

  .header-navbar__burger {
    display: none !important;
  }

  a.sconsent-menu-title {
    display: none !important;
  }

  .fas.fa-shopping-cart,
  .fa.fa-list-ul {
    margin-right: 0 !important;
  }
}

/* <= 768px */
@media (max-width: 768px) {

  /* Formularios: 1 columna */
  .hp-form.hp-form--listing-submit .hp-form__field,
  .hp-form.hp-form--listing-edit .hp-form__field,
  .hp-form.hp-form--listing-update .hp-form__field {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Fancybox filter: 1 columna */
  .fancybox-slide #listing_filter_modal .hp-form__field {
    flex-basis: calc(100% - 10px) !important;
  }

  .fancybox-container .hp-form--listing-filter .hp-form__field.hp-col-sm-4 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .header-hero--large {
    height: 160px !important;
  }

  .header-hero__content h1.wp-block-heading {
    display: none;
  }

  /* Menú */
  .header-navbar__menu {
    display: none !important;
  }

  .header-navbar__burger {
    display: flex !important;
  }

  a.sconsent-menu-title {
    display: inline-block !important;
  }

  .fas.fa-shopping-cart,
  .fa.fa-list-ul {
    margin-right: 8px !important;
  }

  /* Iconos grandes */
  .fab.fa-telegram-plane,
  .fab.fa-whatsapp,
  .fas.fa-phone-square-alt {
    font-size: 32px;
  }

  /* Footer */
  p.copyRight {
    text-align: center;
  }

  /* Botón móvil */
  .hp-button--mobile {
    margin-bottom: 20px;
  }

  .hp-form__field {
    flex-basis: 100%;
  }

  /* Contenedor site */
  header.site-header div.header-navbar div.container,
  div.site-container div.site-content div.container {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  /* Modal */
  .hp-modal {
    padding: 25px !important;
    width: auto !important;
  }

  .hp-modal .hp-form {
    padding: 0 !important;
    width: 100%;
  }

  .hp-form {
    padding: 20px !important;
  }

  /* Mapa */
  .hp-page__sidebar .hp-listing__map.hp-map.widget {
    min-height: 280px;
  }

  /* Membership plans */
  .hp-membership-plans .hp-grid__item {
    flex: 1 1 320px !important;
    max-width: none !important;
  }
}

/* <= 640px (membership plans a 1 columna) */
@media (max-width: 640px) {
  .hp-membership-plans .hp-grid__item {
    flex: 1 1 100% !important;
    max-width: none !important;
    min-width: 0;
  }
}

/* <= 468px */
@media only screen and (max-width: 468px) {
  p.copyRight {
    text-align: center;
  }

  .header-hero__content h1 {
    font-size: 1.9rem;
  }

  .header-hero__content h1.wp-block-heading {
    display: none;
  }

  .header-hero__content p {
    font-size: 1rem;
  }

  img.cono {
    width: 40px !important;
  }
}

/* <= 420px (badge “Mapa”) */
@media (max-width: 480px) {
  .hp-page__sidebar .hp-listing__map.hp-map.widget::before {
    top: 8px;
    left: 8px;
    padding: 7px 10px;
  }
}

/* =========================================================
   WOOCOMMERCE CHECKOUT BLOCKS — ESTILO SCONSENT (global)
   ========================================================= */

/* Fondo general ya lo tienes en #content.site-content, esto refuerza el area checkout */
.wp-block-woocommerce-checkout,
.wc-block-checkout {
  font-family: inherit;
}

/* Layout: “cards” */
.wc-block-checkout .wc-block-components-main {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--theme-primary-alpha-14);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(20, 12, 28, 0.08);
  overflow: hidden;
}

/* Padding interno (desktop + mobile) */
.wc-block-checkout .wc-block-components-main {
  padding: 20px 20px 10px;
}

/* Títulos de secciones */
.wc-block-checkout .wc-block-components-checkout-step__title,
.wc-block-checkout .wc-block-components-express-payment__title,
.wc-block-checkout .wc-block-components-checkout-order-summary__title-text {
  color: var(--theme-primary);
  font-weight: 800;
  letter-spacing: 0.2px;
}

/* Separadores: más suaves */
.wc-block-checkout .wc-block-components-checkout-step,
.wc-block-checkout .wc-block-components-panel,
.wc-block-checkout .wc-block-components-totals-wrapper {
  border-color: rgba(85, 44, 80, 0.10) !important;
}

/* Inputs y selects: borde morado suave */
.wc-block-checkout input[type="text"],
.wc-block-checkout input[type="email"],
.wc-block-checkout input[type="tel"],
.wc-block-checkout input[type="number"],
.wc-block-checkout select,
.wc-block-checkout textarea,
.wc-block-checkout .wc-blocks-components-select__select {
  background: var(--theme-white) !important;
  border: 2px solid rgba(187, 20, 209, 0.18) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

/* Focus */
.wc-block-checkout input:focus,
.wc-block-checkout select:focus,
.wc-block-checkout textarea:focus,
.wc-block-checkout .wc-blocks-components-select__select:focus {
  outline: none !important;
  border-color: var(--theme-accent) !important;
  box-shadow: 0 0 0 3px rgba(187, 20, 209, 0.14) !important;
}

/* Labels */
.wc-block-checkout label,
.wc-block-checkout .wc-block-components-text-input label,
.wc-block-checkout .wc-blocks-components-select__label {
  color: rgba(85, 44, 80, 0.92) !important;
  font-weight: 600;
}

/* Radio/checkbox: acento morado */
.wc-block-checkout input[type="radio"],
.wc-block-checkout input[type="checkbox"] {
  accent-color: var(--theme-accent);
}

/* Opción seleccionada (métodos de pago) */
.wc-block-checkout .wc-block-components-radio-control__option--checked-option-highlighted,
.wc-block-checkout .wc-block-components-radio-control__option-checked {
  background: rgba(187, 20, 209, 0.06) !important;
  border-color: rgba(187, 20, 209, 0.22) !important;
}

/* Address card (editar dirección) */
.wc-block-checkout .wc-block-components-address-card {
  background: rgba(255, 255, 255, 0.75) !important;
  border: 1px solid var(--theme-primary-alpha-14) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 18px rgba(20, 12, 28, 0.08) !important;
}

/* Botón principal “Realizar pedido” */
.wc-block-checkout .wc-block-components-checkout-place-order-button,
.wc-block-checkout button.wc-block-components-button.contained {
  background: var(--theme-primary) !important;
  color: var(--theme-white) !important;
  border: 0 !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 10px 18px rgba(85, 44, 80, 0.22);
}

.wc-block-checkout .wc-block-components-checkout-place-order-button:hover,
.wc-block-checkout button.wc-block-components-button.contained:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

/* Botón secundario “Volver al carrito” */
.wc-block-checkout .wc-block-components-checkout-return-to-cart-button {
  color: var(--theme-primary) !important;
  font-weight: 700;
}

.wc-block-checkout .wc-block-components-checkout-return-to-cart-button svg {
  fill: var(--theme-primary) !important;
}

/* Resumen del pedido: bloque */
.wp-block-woocommerce-checkout-order-summary-block {
  background: rgba(255, 255, 255, 0.70) !important;
  border: 1px solid rgba(85, 44, 80, 0.12) !important;
  border-radius: 16px !important;
  overflow: hidden;
}

/* Producto del resumen */
.wc-block-checkout .wc-block-components-order-summary-item {
  border-bottom: 1px solid rgba(85, 44, 80, 0.08) !important;
}

.wc-block-checkout .wc-block-components-product-name {
  color: rgba(29, 26, 35, 0.90);
  font-weight: 800;
}

/* “O continúa más abajo” más discreto */
.wc-block-checkout .wc-block-components-express-payment-continue-rule {
  color: rgba(85, 44, 80, 0.65);
}

/* Coupon panel */
.wc-block-checkout .wc-block-components-panel__button {
  border-radius: 14px;
  background: rgba(187, 20, 209, 0.06);
  border: 1px solid rgba(187, 20, 209, 0.14);
  color: var(--theme-primary);
  font-weight: 800;
  padding: 10px !important;
}

.message__container.locale--ES {
  margin: 15px !important;
}

.grecaptcha-badge {
  z-index: 2147483647 !important;
  /* “máximo” práctico */
}

.paypal-message,
.pp-message {
  margin-top: 10px !important;
}

div#ppcp-checkout-paylater-messages.ppcp-messages iframe {
  margin: 10px;
  display: none;
}

.wc-block-checkout__actions {
  margin-bottom: 16px;
}

/* =========================================================
   CHECKOUT — SOLO MÓVIL (más “app”)
   ========================================================= */
@media (max-width: 768px) {
  .wc-block-checkout.is-large .wc-block-components-sidebar-layout {
    gap: 14px;
  }

  .wc-block-checkout__sidebar {
    display: none !important;
  }

  .wc-block-checkout .wc-block-components-main,
  .wc-block-checkout .wc-block-components-sidebar {
    border-radius: 18px;
  }

  .wc-block-checkout .wc-block-components-main {
    padding: 16px 14px 8px;
  }

  .wc-block-checkout .wc-block-components-sidebar {
    padding: 14px;
  }

  .wc-block-checkout .wc-block-checkout__actions_row {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .wc-block-checkout .wc-block-components-checkout-place-order-button,
  .wc-block-checkout button.wc-block-components-button.contained {
    width: 100%;
  }

  div.wp-block-woocommerce-checkout-order-summary-block {
    padding: 20px;
  }
}

/* =========================================================
   WIDGET: HORARIO (hp-listing__opening-hours)
   ========================================================= */

.hp-listing__opening-hours.hp-widget.widget {
  background: var(--theme-light-bg);
  border: 1px solid var(--theme-primary-alpha-14);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 12px 24px rgba(20, 12, 28, 0.08);
  overflow: hidden;
}

/* Título tipo “badge” arriba (sin tocar el HTML) */
.hp-listing__opening-hours.hp-widget.widget::before {
  content: "Horario";
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 0 0 12px;
  padding: 8px 12px;
  border-radius: 999px;

  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.3px;

  color: var(--theme-primary);
  background: linear-gradient(180deg, rgba(187, 20, 209, 0.12), rgba(85, 44, 80, 0.06));
  border: 1px solid rgba(187, 20, 209, 0.18);
}

/* Tabla base */
.hp-listing__opening-hours .hp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
}

/* Filas como “cajitas” suaves */
.hp-listing__opening-hours .hp-table tbody tr {
  background: rgba(187, 20, 209, 0.06);
}

.hp-listing__opening-hours .hp-table tbody tr+tr {
  border-top: 10px solid transparent;
  /* separador visual sin líneas */
}

/* Celdas */
.hp-listing__opening-hours .hp-table th,
.hp-listing__opening-hours .hp-table td {
  padding: 12px 12px;
  border: 1px solid rgba(187, 20, 209, 0.12);
  line-height: 1.25;
  vertical-align: middle;
}

/* Redondeo por fila (izq/der) */
.hp-listing__opening-hours .hp-table tbody tr th {
  border-right: 0;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

.hp-listing__opening-hours .hp-table tbody tr td {
  border-left: 0;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}

/* Columna día */
.hp-listing__opening-hours .hp-table th {
  width: 58%;
  color: rgba(85, 44, 80, 0.92);
  font-weight: 800;
  font-size: 13px;
}

/* Columna horario */
.hp-listing__opening-hours .hp-table td {
  width: 42%;
  text-align: right;
  font-weight: 800;
  font-size: 13px;
  color: rgba(29, 26, 35, 0.9);
}

/* “No disponible” en rojo suave */
.hp-listing__opening-hours .hp-table td {
  position: relative;
}

.hp-listing__opening-hours .hp-table td:where(:not(:empty)) {
  -webkit-font-smoothing: antialiased;
}

/* (empty rulesets removed) */

/* Fallback universal */
.hp-listing__opening-hours .hp-table td.is-closed {
  color: #c12b5a !important;
  background: rgba(193, 43, 90, 0.08);
  border-color: rgba(193, 43, 90, 0.18);
}

/* Responsive: más aire en móvil */
@media (max-width: 768px) {
  .hp-listing__opening-hours.hp-widget.widget {
    padding: 12px;
    border-radius: 16px;
  }

  .hp-listing__opening-hours .hp-table th,
  .hp-listing__opening-hours .hp-table td {
    padding: 11px 10px;
    font-size: 14px;
  }

  .hp-listing__opening-hours .hp-table td {
    text-align: left;
    /* mejor lectura en móvil */
  }
}

/* =========================
   AGE GATE – estilo modal + blur background
   ========================= */

.age-gate__wrapper {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px !important;
}

.age-gate__background-color {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(20, 12, 28, 0.35) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.age-gate__background {
  position: absolute !important;
  inset: 0 !important;
  background: transparent !important;
}

.age-gate__wrapper .age-gate[role="dialog"] {
  position: relative !important;
  width: min(520px, 100%) !important;
  max-height: calc(100vh - 36px) !important;
  overflow: auto !important;

  background: rgba(255, 251, 255, 0.96) !important;
  border: 1px solid rgba(187, 20, 209, 0.18) !important;
  border-radius: 22px !important;
  box-shadow: 0 24px 60px rgba(20, 12, 28, 0.28) !important;
}

.age-gate__wrapper .simplebar-wrapper {
  margin: 0 !important;
}

.age-gate__wrapper .simplebar-content {
  padding: 24px !important;
}

.age-gate__form {
  background: transparent !important;
}

.age-gate__heading-title--logo {
  width: min(300px, 80%) !important;
  height: auto !important;
  opacity: 1 !important;
  filter: none !important;
}

.age-gate__subheadline {
  margin: 0 0 18px !important;
  color: rgba(85, 44, 80, 0.88) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  text-align: center !important;
}

.age-gate__form-elements {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 16px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr 1.25fr !important;
  gap: 12px !important;
}

.age-gate__form-section {
  margin: 0 !important;
}

.age-gate__label {
  display: block !important;
  margin-bottom: 6px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  color: var(--theme-primary) !important;
}

.age-gate__input {
  width: 100% !important;
  padding: 12px 12px !important;
  border-radius: 12px !important;
  border: 2px solid rgba(230, 211, 227, 1) !important;
  background: var(--theme-white) !important;
  color: #1d1a23 !important;
  font-size: 16px !important;
  outline: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.age-gate__fields {
  margin-bottom: 0px;
}

.age-gate__input:focus {
  border-color: var(--theme-accent) !important;
  box-shadow: 0 0 0 3px rgba(187, 20, 209, 0.14) !important;
}

.age-gate__buttons {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  margin-top: 10px !important;
}

/* Botones age-gate — estándar gris/hover-rosa */
.age-gate__submit {
  width: 100% !important;
  border: 0 !important;
  border-radius: 14px !important;
  padding: 14px 20px !important;
  background: var(--theme-gray) !important;
  color: var(--theme-white) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transition: background 0.2s ease, transform 0.12s ease !important;
}

.age-gate__submit:hover,
.age-gate__submit:focus {
  background: var(--theme-primary) !important;
  transform: translateY(-1px) !important;
}

/* Legacy selector kept for plugin compatibility */
.age-gate__button {
  width: 100% !important;
  border: 0 !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;

  background: var(--theme-primary) !important;
  color: var(--theme-white) !important;
  font-weight: 800 !important;
  letter-spacing: 0.4px !important;
  text-transform: uppercase !important;

  box-shadow: 0 8px 22px rgba(233, 30, 140, 0.32) !important;
  transition: transform 0.12s ease, filter 0.12s ease !important;
}

.age-gate__button:hover {
  filter: brightness(1.08) !important;
  transform: translateY(-2px) !important;
}

.age-gate__errors {
  margin-top: 10px !important;
  color: var(--theme-danger) !important;
  font-weight: 700 !important;
}

.age-gate__additional-information {
  margin-top: 16px !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(85, 44, 80, 0.10) !important;
}

.age-gate__additional-information p {
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  color: rgba(85, 44, 80, 0.78) !important;
}

.age-gate__loader {
  position: absolute !important;
  inset: 0 !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  z-index: 5 !important;
}

.age-gate__loader svg {
  width: 74px !important;
  height: 74px !important;
  color: var(--theme-accent) !important;
}

@media (max-width: 480px) {
  .age-gate__wrapper {
    padding: 12px !important;
  }

  .age-gate__wrapper .simplebar-content {
    padding: 18px !important;
  }

  .age-gate__form-elements {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 10px !important;
  }
}

.hp-field.hp-field--checkboxes ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hp-field.hp-field--checkboxes ul li {
  flex: 0 0 48%;
  box-sizing: border-box;
}

.hp-field.hp-field--checkboxes label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hp-field--checkboxes.con-scroll {
  border-bottom: 1px solid #eadfeb;
  padding-bottom: 32px;
  background: linear-gradient(to top,
      rgba(230, 214, 230, 0.30) 0px,
      rgba(230, 214, 230, 0.15) 12px,
      rgba(230, 214, 230, 0.00) 25px,
      rgba(230, 214, 230, 0.00) 100px);
}

.hp-field--checkboxes {
  max-height: 268px !important;
}

/* =========================
   LISTING ACTIONS
   ========================= */

.hp-listing--view-block .hp-listing__actions.hp-listing__actions--primary {
  margin: 0 !important;
}

.hp-listing__actions.hp-listing__actions--primary {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  border: 0px solid var(--theme-white);
}

.hp-listing__actions--primary a.hp-listing__action--review.hp-link,
.hp-listing__actions--primary a.hp-listing__action--claim.hp-link,
.hp-listing__actions--primary a.hp-listing__action--report.hp-link {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 14px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(187, 20, 209, 0.18);
  color: var(--theme-primary);

  box-shadow: 0 10px 24px rgba(20, 12, 28, 0.10);
  text-decoration: none;

  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}

.hp-listing__actions--primary a.hp-listing__action--review .hp-icon,
.hp-listing__actions--primary a.hp-listing__action--claim .hp-icon,
.hp-listing__actions--primary a.hp-listing__action--report .hp-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--theme-accent-alpha-10);
  border: 1px solid rgba(187, 20, 209, 0.20);
  color: var(--theme-accent);

  flex: 0 0 34px;
}

.hp-listing__actions--primary a.hp-listing__action--review span,
.hp-listing__actions--primary a.hp-listing__action--claim span,
.hp-listing__actions--primary a.hp-listing__action--report span {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.hp-listing__actions--primary a.hp-listing__action--review:hover,
.hp-listing__actions--primary a.hp-listing__action--claim:hover,
.hp-listing__actions--primary a.hp-listing__action--report:hover {
  background: rgba(255, 244, 255, 0.95);
  border-color: rgba(187, 20, 209, 0.30);
  box-shadow: 0 14px 30px rgba(20, 12, 28, 0.14);
  transform: translateY(-1px);
}

.hp-listing__actions--primary a.hp-listing__action--review:active,
.hp-listing__actions--primary a.hp-listing__action--claim:active,
.hp-listing__actions--primary a.hp-listing__action--report:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(20, 12, 28, 0.12);
}

.hp-listing__actions--primary a.hp-listing__action--review .hp-icon {
  background: var(--theme-accent-alpha-10);
}

.hp-listing__actions--primary a.hp-listing__action--claim .hp-icon {
  background: rgba(85, 44, 80, 0.10);
  border-color: rgba(85, 44, 80, 0.18);
  color: var(--theme-primary);
}

.hp-listing__actions--primary a.hp-listing__action--report {
  border-color: rgba(176, 0, 32, 0.14);
}

.hp-listing__actions--primary a.hp-listing__action--report .hp-icon {
  background: rgba(176, 0, 32, 0.08);
  border-color: rgba(176, 0, 32, 0.14);
  color: var(--theme-danger);
}

.hp-modal .hp-form__button {
  width: 100%;
}

@media (max-width: 480px) {

  .hp-listing__actions--primary a.hp-listing__action--review.hp-link,
  .hp-listing__actions--primary a.hp-listing__action--claim.hp-link,
  .hp-listing__actions--primary a.hp-listing__action--report.hp-link {
    padding: 12px 12px;
  }

  .hp-listing__actions--primary a.hp-listing__action--review span,
  .hp-listing__actions--primary a.hp-listing__action--claim span,
  .hp-listing__actions--primary a.hp-listing__action--report span {
    font-size: 15px;
  }
}

/* =========================
   HivePress modals (Fancybox)
   ========================= */

.fancybox-slide #review_submit_modal.hp-modal.fancybox-content,
.fancybox-slide #listing_claim_submit_modal.hp-modal.fancybox-content,
.fancybox-slide #listing_report_modal.hp-modal.fancybox-content {
  width: min(92vw, 420px) !important;
  padding: 22px 22px 20px;
  border-radius: 22px;
}

.fancybox-slide #review_submit_modal .hp-form__fields,
.fancybox-slide #listing_claim_submit_modal .hp-form__fields,
.fancybox-slide #listing_report_modal .hp-form__fields {
  width: 100%;
}

.fancybox-slide .hp-form__field--textarea,
.fancybox-slide .hp-form__field--textarea .hp-field--textarea {
  width: 100% !important;
  display: block;
}

.fancybox-slide #review_submit_modal textarea.hp-field--textarea,
.fancybox-slide #listing_claim_submit_modal textarea.hp-field--textarea,
.fancybox-slide #listing_report_modal textarea.hp-field--textarea {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .fancybox-slide .hp-modal.fancybox-content {
    width: 92vw !important;
    padding: 18px 16px 16px;
  }
}

.site-loader {
  transition: opacity 0.5s ease;
}

.site-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* =========================
   LEFT CONTENT
   ========================= */

.hp-page__content.hp-col-sm-8.hp-col-xs-12 {
  padding-right: 18px;
}

/* CARRUSEL: fila única con scroll horizontal en desktop */
.hp-listings .hp-row,
.hp-listings .hp-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  gap: 15px !important;
  margin: 0px !important;
  width: 100% !important;
  padding-bottom: 8px !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hp-listings .hp-row::-webkit-scrollbar,
.hp-listings .hp-grid::-webkit-scrollbar {
  display: none;
}

/* 4 columnas por defecto */
.hp-listings .hp-grid__item {
  flex: 0 0 calc((100% - 45px) / 4) !important;
  width: calc((100% - 45px) / 4) !important;
  min-width: calc((100% - 45px) / 4) !important;
  max-width: calc((100% - 45px) / 4) !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* 3 columnas en tablets grandes */
@media screen and (max-width: 1199px) {
  .hp-listings .hp-grid__item {
    flex: 0 0 calc((100% - 30px) / 3) !important;
    width: calc((100% - 30px) / 3) !important;
    min-width: calc((100% - 30px) / 3) !important;
    max-width: calc((100% - 30px) / 3) !important;
  }
}

/* 2 columnas en tablets pequeñas */
@media screen and (max-width: 991px) {
  .hp-listings .hp-grid__item {
    flex: 0 0 calc((100% - 15px) / 2) !important;
    width: calc((100% - 15px) / 2) !important;
    min-width: calc((100% - 15px) / 2) !important;
    max-width: calc((100% - 15px) / 2) !important;
  }
}

/* Móviles (≤480px): vuelve al grid de columnas */
@media screen and (max-width: 480px) {

  .hp-listings .hp-row,
  .hp-listings .hp-grid {
    flex-wrap: wrap !important;
    overflow-x: visible !important;
  }

  .hp-listings .hp-grid__item {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}

/* Contextos embebidos (wp-block-column, página de vendor, etc.): grid normal, sin carrusel */
.wp-block-column .hp-listings .hp-row,
.wp-block-column .hp-listings .hp-grid,
.hp-page__content .hp-listings .hp-row,
.hp-page__content .hp-listings .hp-grid {
  flex-wrap: wrap !important;
  overflow-x: visible !important;
  padding-bottom: 0 !important;
}

.hp-page__content .hp-listings .hp-grid__item {
  flex: 0 0 calc((100% - 15px) / 2) !important;
  width: calc((100% - 15px) / 2) !important;
  max-width: calc((100% - 15px) / 2) !important;
  min-width: 0 !important;
}

@media screen and (max-width: 480px) {
  .hp-page__content .hp-listings .hp-grid__item {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

.hp-grid__item {
  position: relative;
}

.hp-page__content.hp-col-sm-8.hp-col-xs-12 .hp-listing__categories a {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--theme-blue-alpha-18);
  color: var(--theme-blue-alpha-80);
  text-decoration: none;
  border-radius: 0px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
  width: 100%;
  line-height: 32px;
}

h1.hp-listing__title,
h1.hp-page__title {
  margin: 10px 0 10px;
  color: #2e2a32;
  letter-spacing: .6px;
  font-size: 24px;
}

.hp-listing__title span,
.hp-page__title span {
  display: inline-block;
  font-weight: 900;
}

.hp-listing--view-page .hp-listing__created-date,
.hp-listing--view-page .hp-listing__location,
.hp-listing--view-page .hp-listing__rating {
  margin-bottom: 0px !important;
}

.hp-row.hp-listing.hp-listing--view-page .hp-page__content.hp-col-sm-8.hp-col-xs-12 .hp-listing__details--primary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 14px;
}

.hp-row.hp-listing.hp-listing--view-page .hp-page__content.hp-col-sm-8.hp-col-xs-12 .hp-listing__details--primary>* {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 0px !important;

  background: rgba(0, 0, 0, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  color: #fff !important;
}

.hp-row.hp-listing.hp-listing--view-page .hp-page__content.hp-col-sm-8.hp-col-xs-12 .hp-listing__location .hp-icon {
  color: var(--theme-accent);
}

.hp-row.hp-listing.hp-listing--view-page .hp-page__content.hp-col-sm-8.hp-col-xs-12 time.hp-meta {
  color: #fff !important;
  font-weight: 900 !important;
  text-transform: uppercase;
}

.hp-row.hp-listing.hp-listing--view-page .hp-page__content.hp-col-sm-8.hp-col-xs-12 time.hp-meta.is-autorenueva {
  color: #ff007f !important;
}

.hp-row.hp-listing.hp-listing--view-page .hp-page__content.hp-col-sm-8.hp-col-xs-12 .hp-listing__location a,
.hp-row.hp-listing.hp-listing--view-page .hp-page__content.hp-col-sm-8.hp-col-xs-12 .hp-listing__rating a,
.hp-row.hp-listing.hp-listing--view-page .hp-page__content.hp-col-sm-8.hp-col-xs-12 .hp-listing__rating span,
.hp-row.hp-listing.hp-listing--view-page .hp-page__content.hp-col-sm-8.hp-col-xs-12 .hp-listing__location .hp-icon {
  color: #fff !important;
}

.hp-row.hp-listing.hp-listing--view-page .hp-page__content.hp-col-sm-8.hp-col-xs-12 .hp-listing__rating .hp-rating__details {
  text-decoration: none;
  color: var(--theme-primary);
  font-weight: 800;
}

.hp-page__topbar--separate {
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(187, 20, 209, 0.12);
  box-shadow: 0 10px 24px rgba(20, 12, 28, 0.08);
}

.hp-menu--tabbed .hp-menu__item a {
  border-radius: 12px;
  padding: 10px 12px !important;
  font-weight: 800;
  color: rgba(46, 42, 50, .75);
  text-decoration: none;
  transition: background .12s ease, color .12s ease;
}

.hp-menu--tabbed .hp-menu__item a:hover {
  background: rgba(187, 20, 209, 0.08);
  color: var(--theme-primary);
}

.hp-menu--tabbed .hp-menu__item--current a {
  background: rgba(187, 20, 209, 0.12);
  color: var(--theme-primary);
}

.hp-page__content.hp-col-sm-8.hp-col-xs-12 .hp-listing__actions--secondary .hp-listing__action--favorite {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 12px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(187, 20, 209, 0.12);
  box-shadow: 0 10px 22px rgba(20, 12, 28, 0.08);

  color: var(--theme-primary);
  font-weight: 800;
  text-decoration: none;
}

.hp-page__content.hp-col-sm-8.hp-col-xs-12 .hp-listing__description {
  margin-top: 14px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(187, 20, 209, 0.12);
  box-shadow: var(--theme-shadow);
}

.hp-page__content.hp-col-sm-8.hp-col-xs-12 .hp-listing__description p {
  margin: 0;
  color: rgba(46, 42, 50, 0.86);
  line-height: 1.65;
}

.hp-page__content.hp-col-sm-8.hp-col-xs-12 .hp-section {
  margin-top: 18px;
}

.hp-page__content.hp-col-sm-8.hp-col-xs-12 .hp-section__title {
  color: var(--theme-primary);
  font-weight: 900;
  margin-bottom: 10px;
}

.hp-page__content.hp-col-sm-8.hp-col-xs-12 .hp-review {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(187, 20, 209, 0.12);
  box-shadow: var(--theme-shadow);
  padding: 25px;
}

.hp-page__content.hp-col-sm-8.hp-col-xs-12 .hp-review__text p {
  color: rgba(46, 42, 50, 0.86);
}

@media (max-width: 1208px) {
  .hp-menu--tabbed .hp-menu__item {
    padding: 16px 8px !important;
  }

  .hp-page__content .hp-menu--tabbed.hp-menu--listing-manage .hp-menu__item>a,
  .hp-page__content .hp-menu--tabbed.hp-menu--listing-manage li>a {
    padding: 8px 10px !important;
    font-size: 14px !important;
    letter-spacing: 0 !important;
    border-radius: 12px !important;
    white-space: nowrap;
  }

  .hp-page__content .hp-menu--tabbed.hp-menu--listing-manage .hp-menu__item,
  .hp-page__content .hp-menu--tabbed.hp-menu--listing-manage li {
    margin: 0 !important;
  }

  .hp-page__content .hp-menu--tabbed.hp-menu--listing-manage .hp-menu__items,
  .hp-page__content .hp-menu--tabbed.hp-menu--listing-manage ul {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px;

    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;

    scroll-snap-type: x proximity;
    padding-bottom: 6px;
  }

  .hp-page__content .hp-menu--tabbed.hp-menu--listing-manage .hp-menu__item,
  .hp-page__content .hp-menu--tabbed.hp-menu--listing-manage li {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .hp-page__content .hp-menu--tabbed.hp-menu--listing-manage .hp-menu__item>a {
    white-space: nowrap;
    padding: 12px 14px;
  }
}

/* =========================
   ESTADÍSTICAS
   ========================= */

.hp-page__content .hp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(187, 20, 209, 0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(20, 12, 28, 0.10);
}

.hp-page__content .hp-form__field .hp-table {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.hp-page__content .hp-table thead th {
  padding: 14px 16px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--theme-primary);
  background: rgba(187, 20, 209, 0.07);
  border-bottom: 1px solid rgba(187, 20, 209, 0.14);
}

.hp-form__field.hp-form__label .hp-table {
  border: none !important;
  box-shadow: none !important;
}

.hp-page__content .hp-table tbody th {
  padding: 14px 16px;
  font-weight: 900;
  color: var(--theme-primary);
  background: rgba(255, 244, 255, 0.55);
  border-right: 1px solid var(--theme-accent-alpha-10);
  white-space: nowrap;
}

.hp-page__content .hp-table tbody td {
  padding: 14px 16px;
  text-align: center;
  font-weight: 800;
  color: #2e2430;
}

.hp-listing--featured .hp-table tbody td {
  text-align: left !important;
}

.hp-page__content .hp-table tbody tr+tr th,
.hp-page__content .hp-table tbody tr+tr td {
  border-top: 1px solid var(--theme-accent-alpha-10);
}

.hp-page__content .hp-table tbody tr:hover th,
.hp-page__content .hp-table tbody tr:hover td {
  background: rgba(255, 244, 255, 0.85);
}

.hp-page__content .hp-table+div {
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(187, 20, 209, 0.14);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hp-page__content canvas.hp-chart {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
}

.hp-page__content .hp-table thead th {
  text-align: center;
  vertical-align: middle;
}

.hp-page__content .hp-table thead th:first-child {
  width: 28%;
  text-align: left;
}

.hp-page__content .hp-table thead th:not(:first-child) {
  width: calc(72% / 3);
  text-align: center;
}

@media (max-width: 640px) {
  .hp-page__content .hp-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hp-page__content .hp-table thead th,
  .hp-page__content .hp-table tbody th,
  .hp-page__content .hp-table tbody td {
    padding: 12px 12px;
    font-size: 13px;
  }

  .hp-page__content .hp-table+div {
    padding: 12px;
  }
}

/* =========================
   FIX ESTILOS HEREDADOS EN TABLA DE ANUNCIOS
   ========================= */

.hp-page__content .hp-pagination {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.hp-page__content .hp-listing__actions.hp-listing__actions--primary {
  margin: 0 !important;
}

.hp-page__content .hp-listings td,
.hp-page__content .hp-listings th {
  text-align: left;
  font-weight: 400;
}

.hp-page__content .hp-listings .hp-listing__title span {
  font-weight: 700;
}

.hp-page__content .hp-listings .hp-listing__categories {
  font-weight: 400;
  color: #6b5a6a;
  padding-left: 18px;
  padding-right: 18px
}

.hp-page__content .hp-listings .hp-listing__date,
.hp-page__content .hp-listings time {
  font-weight: 400;
  color: #6b5a6a;
}

@media (max-width: 768px) {
  .hp-page__content .hp-listings td {
    text-align: left;
  }
}

/* =========================
   ANUNCIOS: forzar título a la izquierda
   ========================= */

.hp-page__content .hp-listings .hp-listing__title,
.hp-page__content .hp-listings .hp-listing__title * {
  text-align: left !important;
}

.hp-page__content .hp-listings .hp-listing__title>a.hp-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start !important;
  gap: 10px;
  width: 100%;
}

.hp-page__content .hp-listings .hp-listing__title>a.hp-link span {
  display: inline !important;
  margin: 0 !important;
  font-weight: 700;
}

@media (max-width: 480px) {
  .hp-grid__item:not(:last-child) {
    margin-bottom: 40px;
  }

  .hp-grid__item {
    padding-left: 16px;
    padding-right: 16px !important;
  }

  div.hp-grid__item.hp-col-sm-3.hp-col-xs-12 div.hp-listing__categories.hp-listing__category {
    right: 15px;
  }

  .hp-grid__item.hp-col-sm-3.hp-col-xs-12 .hp-listing__title {
    font-size: 18px;
  }

  h4.hp-listing__title {
    height: auto;
  }
}

/* =========================
   LISTING FILTER MODAL — COMPACTO
   ========================= */

.fancybox-slide #listing_filter_modal.hp-modal {
  padding: 16px !important;
}

.fancybox-slide #listing_filter_modal .hp-form__field {
  padding: 12px 0 0 !important;
  margin-bottom: 8px !important;
}

#listing_filter_modal .hp-form__label {
  font-size: 13px !important;
  margin-bottom: 4px !important;
}

#listing_filter_modal input[type="text"],
#listing_filter_modal input[type="number"],
#listing_filter_modal input[type="tel"],
#listing_filter_modal input[type="email"],
#listing_filter_modal input[type="url"],
#listing_filter_modal textarea,
#listing_filter_modal select {
  padding: 8px 10px !important;
  font-size: 14px !important;
  border-width: 1px !important;
}

#listing_filter_modal .select2-container--default .select2-selection--multiple {
  min-height: 40px !important;
  padding: 6px !important;
  border-radius: 10px !important;
}

#listing_filter_modal .select2-selection__choice {
  font-size: 12px !important;
  padding: 2px 8px !important;
  margin: 3px 5px 3px 0 !important;
}

#listing_filter_modal input[type="checkbox"] {
  transform: scale(1.05) !important;
}

#listing_filter_modal .ui-slider {
  height: 6px !important;
}

#listing_filter_modal .ui-slider .ui-slider-handle {
  width: 14px !important;
  height: 14px !important;
  top: -4px !important;
}

#listing_filter_modal .hp-form__button.button-primary {
  padding: 12px 16px !important;
  font-size: 14px !important;
  border-radius: 12px !important;
}

.fancybox-container .fancybox-slide #listing_filter_modal.hp-modal {
  padding: 20px !important;
}

.fancybox-container .fancybox-slide #listing_filter_modal .hp-form__field {
  padding: 10px 0 0 !important;
  margin-bottom: 6px !important;
}

.fancybox-container .fancybox-slide #listing_filter_modal .hp-form__fields {
  row-gap: 8px !important;
  column-gap: 12px !important;
}

.fancybox-container .fancybox-slide #listing_filter_modal .hp-form__label {
  margin-bottom: 3px !important;
}

.fancybox-container .fancybox-slide #listing_filter_modal .hp-field--number-range>div {
  margin-top: 6px !important;
}

.fancybox-container .fancybox-slide #listing_filter_modal .hp-form__footer {
  margin-top: 10px !important;
  padding-top: 0 !important;
}

.hp-menu--listing-manage .hp-listing__actions--secondary .hp-listing__action {
  margin-right: 1.5rem;
}

.fancybox-slide #listing_filter_modal.hp-modal {
  margin: 15%;
  max-width: 800px;
  padding: 25px;
}

@media (max-width: 767px) {
  .fancybox-slide #listing_filter_modal.hp-modal {
    margin: 0;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  background-color: var(--theme-accent);
  color: white;
  border-radius: 16px !important;
  padding: 8px 10px !important;
  margin: 2px;
}

.badge.badge-selected {
  background-color: rgba(187, 20, 209, 1) !important;
  color: white !important;
}

/* =====================================================
   FIX: eliminar flechas extra + quitar hover azul
   ===================================================== */

#menu-header>li.menu-item-has-children>a.sconsent-menu-title::after {
  content: none !important;
  display: none !important;
}

#menu-header>li>a:hover,
#menu-header .sub-menu a:hover,
#menu-header>li.menu-item-has-children:hover>a:first-child,
#menu-header>li.menu-item-has-children:hover>a.sconsent-menu-title {
  background: transparent !important;
  color: inherit !important;
}

#menu-header>li>a:hover i {
  color: inherit !important;
}

#menu-header>li.menu-item-has-children>a:first-child::after,
#menu-header>li.menu-item-has-children>a.sconsent-menu-title::after {
  content: none !important;
  display: none !important;
}

#menu-header {
  padding-top: 72px !important;
}

.hp-modal__close,
.hp-offcanvas__close,
.hp-menu__close,
.hp-header__close,
button[aria-label="Close"],
button[aria-label="Cerrar"] {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  z-index: 9999 !important;
}

#menu-header>li>a {
  border-radius: 10px;
  background: transparent !important;
}

/* =========
   MENU HEADER
   ========= */

#menu-header {
  list-style: none;
  margin: 0;
  padding: 10px 12px;
}

#menu-header>li {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

#menu-header>li>a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}

#menu-header>li>a i {
  width: 22px;
  min-width: 22px;
  text-align: center;
  font-size: 18px;
  color: #64748b;
}

#menu-header>li>a:hover {
  background: var(--theme-accent-alpha-10);
  color: var(--theme-accent);
}

#menu-header>li>a:hover i {
  color: var(--theme-accent);
}

#menu-header .current-menu-item>a,
#menu-header .current-menu-ancestor>a {
  background: var(--theme-accent-alpha-10);
  color: var(--theme-accent);
}

#menu-header .current-menu-item>a i {
  color: var(--theme-accent);
}

#menu-header>li.menu-item-has-children {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

#menu-header>li.menu-item-has-children>a:first-child {
  width: 44px;
  justify-content: center;
  padding: 14px 0;
  border-radius: 12px;
}

#menu-header>li.menu-item-has-children>a.sconsent-menu-title {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 14px 12px 14px 6px;
  margin: 0;
  border-radius: 12px;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

#menu-header>li.menu-item-has-children:hover>a:first-child,
#menu-header>li.menu-item-has-children:hover>a.sconsent-menu-title {
  background: rgba(59, 130, 246, .08);
}

#menu-header>li.menu-item-has-children:hover>a:first-child i {
  color: var(--theme-accent);
}

#menu-header>li.menu-item-has-children>a.sconsent-menu-title::after {
  content: "›";
  margin-left: auto;
  font-size: 20px;
  line-height: 1;
  color: rgba(255, 244, 255, 0.85);
  transform: translateY(-1px);
}

#menu-header .sub-menu {
  width: 100%;
  list-style: none;
  margin: 0 0 10px 0;
  padding: 6px 0 10px 56px;
  border-radius: 12px;
  background: rgba(15, 23, 42, .03);
}

#menu-header .sub-menu li {
  margin: 0;
  padding: 0;
}

#menu-header .sub-menu a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease;
}

#menu-header .sub-menu a:hover {
  background: rgba(59, 130, 246, .10);
  color: #0b1220;
}

#menu-header>li:last-child {
  border-bottom: 0;
}

#menu-header {
  font-size: 18px;
}

#menu-header .sub-menu a {
  font-size: 16px;
}

#menu-header li.menu-item-has-children>a::after {
  right: 18px !important;
}

#menu-header li.menu-item-has-children {
  position: relative;
}

#menu-header li.menu-item-has-children::after {
  right: 18px !important;
}

#menu-header>li.menu-item-has-children {
  position: relative;
}

#menu-header>li.menu-item-has-children>a:first-child {
  position: relative !important;
  inset: 0 !important;
  width: auto !important;
  z-index: 3 !important;
}

#menu-header>li.menu-item-has-children>a.sconsent-menu-title {
  position: relative;
  z-index: 2;
  pointer-events: none !important;
}

/* =========================================================
   CUENTA (HivePress dentro de WooCommerce)
   ========================================================= */



#content .hp-page__sidebar nav.hp-menu--user-account {
  background: var(--theme-light-bg);
  border: 1px solid var(--theme-primary-alpha-14);
  border-radius: 18px;
  box-shadow: var(--theme-shadow);
  overflow: hidden;
  padding: 8px 0;
}

#content .hp-page__sidebar nav.hp-menu--user-account ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#content .hp-page__sidebar nav.hp-menu--user-account li.hp-menu__item {
  margin: 0;
  padding: 0;
}

#content .hp-page__sidebar nav.hp-menu--user-account li.hp-menu__item+li.hp-menu__item>a {
  border-top: 1px solid rgba(187, 20, 209, 0.08);
}

#content .hp-page__sidebar nav.hp-menu--user-account li.hp-menu__item>a {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 16px;
  text-decoration: none;

  color: rgba(85, 44, 80, 0.85);
  font-weight: 800;

  background: transparent;
  border-left: 4px solid transparent;

  box-shadow: none;
  border-radius: 0;

  transition: background .15s ease, color .15s ease;
}

#content .hp-page__sidebar nav.hp-menu--user-account li.hp-menu__item>a:hover {
  background: rgba(187, 20, 209, 0.05);
  color: var(--theme-primary);
}

#content .hp-page__sidebar nav.hp-menu--user-account li.current-menu-item>a,
#content .hp-page__sidebar nav.hp-menu--user-account li.hp-menu__item--current>a {
  background: rgba(187, 20, 209, 0.08);
  border-left-color: var(--theme-accent);
  color: var(--theme-primary);
}

#content .hp-page__content .hp-memberships .hp-membership--view-block {
  background: var(--theme-light-bg);
  border: 1px solid var(--theme-primary-alpha-14);
  border-radius: 18px;
  box-shadow: var(--theme-shadow);
  padding: 18px 18px 16px;
}

#content .hp-page__content .hp-memberships .hp-grid__item+.hp-grid__item {
  margin-top: 18px;
}

#content .hp-page__content .hp-memberships .hp-membership__name {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
  color: #1d1a23;
}

#content .hp-page__content .hp-memberships .hp-membership__details--primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

#content .hp-page__content .hp-memberships .hp-membership__expired-date {
  color: rgba(85, 44, 80, 0.70);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 12px;
}

#content .hp-page__content .hp-memberships .hp-membership__status.hp-status {
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .5px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.7);
}

#content .hp-page__content .hp-memberships .hp-status--publish {
  color: #0f7a3a;
  border-color: rgba(21, 205, 114, 0.25);
  background: rgba(21, 205, 114, 0.10);
}

#content .hp-page__content .hp-memberships .hp-status--draft {
  color: var(--theme-danger);
  border-color: rgba(176, 0, 32, 0.18);
  background: rgba(176, 0, 32, 0.08);
}

#content .hp-page__content .hp-memberships .hp-membership__limits {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--theme-accent-alpha-10);

  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

#content .hp-page__content .hp-memberships .hp-membership__limit.hp-meta {
  padding: 0;
  border: 0;
  background: transparent;

  color: rgba(85, 44, 80, 0.80);
  font-weight: 700;
  font-size: 13px;
}

#content .hp-page__content .hp-memberships .hp-membership__limit strong {
  color: var(--theme-primary);
  font-weight: 900;
}

@media (max-width: 640px) {
  #content .hp-page__content .hp-memberships .hp-membership__details--primary {
    flex-direction: column;
    align-items: flex-start;
  }
}

#content .hp-page__content table.woocommerce-orders-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;

  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(187, 20, 209, 0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(20, 12, 28, 0.10);
}

#content .hp-page__content table.woocommerce-orders-table thead th {
  padding: 14px 16px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--theme-primary);
  background: rgba(187, 20, 209, 0.07);
  border-bottom: 1px solid rgba(187, 20, 209, 0.14);
}

#content .hp-page__content table.woocommerce-orders-table tbody th,
#content .hp-page__content table.woocommerce-orders-table tbody td {
  padding: 14px 16px;
  color: rgba(29, 26, 35, 0.90);
  font-weight: 700;
  border-top: 1px solid var(--theme-accent-alpha-10);
}

#content .hp-page__content table.woocommerce-orders-table a.woocommerce-button.button {
  background: var(--theme-primary);
  color: var(--theme-white);
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(85, 44, 80, 0.18);
}

#content .hp-page__content table.woocommerce-orders-table a.woocommerce-button.button:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.hp-menu--user-account .hp-menu__item::before,
.hp-menu--user-account .hp-menu__item a::before {
  content: none !important;
  display: none !important;
}

.hp-menu--user-account .hp-menu__item,
.hp-menu--user-account .hp-menu__item a {
  background-image: none !important;
}

#content .hp-page__content .hp-memberships .hp-membership__limits {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px 12px !important;
  margin-top: 10px !important;
  padding-top: 12px !important;
  border-top: 1px solid var(--theme-accent-alpha-10) !important;
}

#content .hp-page__content .hp-memberships .hp-membership__limit.hp-meta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;

  padding: 8px 12px !important;
  border-radius: 999px !important;

  background: rgba(187, 20, 209, 0.08) !important;
  border: 1px solid rgba(187, 20, 209, 0.20) !important;

  color: rgba(85, 44, 80, 0.92) !important;
  font-weight: 800 !important;
  font-size: 13px !important;

  box-shadow: none !important;
}

#content .hp-page__content .hp-memberships .hp-membership__limit strong {
  color: var(--theme-primary) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
  font-size: 11px !important;
}

#content .hp-page__content .hp-memberships .hp-membership__limit strong::after {
  margin-left: 2px !important;
  opacity: .85 !important;
}

/* =========================================================
   WOOCOMMERCE: Ver pedido
   ========================================================= */

#content .hp-page__content .hp-page__title {
  color: #2e2a32;
  font-weight: 900;
  letter-spacing: .4px;
  margin-bottom: 12px;
}

#content .hp-page__content .woocommerce>p {
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(187, 20, 209, 0.14);
  border-radius: 18px;
  box-shadow: var(--theme-shadow);
  padding: 16px 18px;
  color: rgba(46, 42, 50, 0.86);
  line-height: 1.55;
  margin: 0 0 16px;
}

#content .hp-page__content .woocommerce mark {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--theme-accent-alpha-10);
  border: 1px solid rgba(187, 20, 209, 0.18);
  color: var(--theme-primary);
  font-weight: 900;
}

#content .hp-page__content .woocommerce mark.order-status {
  background: rgba(21, 205, 114, 0.10);
  border-color: rgba(21, 205, 114, 0.22);
  color: #0f7a3a;
}

#content .hp-page__content .woocommerce-order-details,
#content .hp-page__content .woocommerce-customer-details {
  margin-top: 16px;
}

#content .hp-page__content .woocommerce-order-details__title,
#content .hp-page__content .woocommerce-column__title {
  color: var(--theme-primary);
  font-weight: 900;
  letter-spacing: .2px;
  margin: 0 0 10px;
}

#content .hp-page__content table.woocommerce-table--order-details {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;

  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(187, 20, 209, 0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

#content .hp-page__content table.woocommerce-table--order-details thead th {
  padding: 14px 16px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--theme-primary);
  background: rgba(187, 20, 209, 0.07);
  border-bottom: 1px solid rgba(187, 20, 209, 0.14);
}

#content .hp-page__content table.woocommerce-table--order-details tbody td {
  padding: 14px 16px;
  color: rgba(29, 26, 35, 0.90);
  font-weight: 700;
  border-top: 1px solid var(--theme-accent-alpha-10);
}

#content .hp-page__content table.woocommerce-table--order-details a {
  color: var(--theme-accent);
  font-weight: 900;
  text-decoration: none;
}

#content .hp-page__content table.woocommerce-table--order-details a:hover {
  text-decoration: underline;
}

#content .hp-page__content table.woocommerce-table--order-details tfoot th,
#content .hp-page__content table.woocommerce-table--order-details tfoot td {
  padding: 14px 16px;
  border-top: 1px solid rgba(187, 20, 209, 0.12);
  font-weight: 900;
}

#content .hp-page__content table.woocommerce-table--order-details tfoot tr:last-child th,
#content .hp-page__content table.woocommerce-table--order-details tfoot tr:last-child td {
  background: rgba(187, 20, 209, 0.06);
}

#content .hp-page__content .woocommerce-customer-details address {
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(187, 20, 209, 0.14);
  border-radius: 18px;
  box-shadow: var(--theme-shadow);
  padding: 16px 18px;
  font-style: normal;
  color: rgba(46, 42, 50, 0.86);
  line-height: 1.6;
  margin: 0;
}

#content .hp-page__content .woocommerce-customer-details--email {
  margin-top: 10px !important;
  padding-top: 10px;
  border-top: 1px solid var(--theme-accent-alpha-10);
  color: rgba(85, 44, 80, 0.82);
  font-weight: 800;
}

@media (max-width: 640px) {
  #content .hp-page__content table.woocommerce-table--order-details {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.hp-block.hp-listing__attributes.hp-listing__attributes--primary.widget.hp-widget h6 {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  padding: 0 0px 0px 10px;
  margin-bottom: 16px;
  color: rgba(187, 20, 209, 0.40);
}

.hp-block.hp-listing__attributes.hp-listing__attributes--primary.widget.hp-widget h6 strong {
  color: rgba(187, 20, 209, 0.40);
}

/* =========================================================
   WOOCOMMERCE — THANK YOU
   ========================================================= */

.woocommerce-order-received #content.site-content {
  background-color: var(--theme-soft-bg);
}

.woocommerce-order-received .woocommerce-order {
  max-width: 980px;
  margin: 0 auto;
}

.woocommerce-order-received .woocommerce-notice--success {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--theme-primary-alpha-14);
  border-left: 6px solid var(--theme-accent);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--theme-shadow);
  color: rgba(29, 26, 35, 0.9);
  font-weight: 800;
  margin: 0 0 18px 0;
}

.woocommerce-order-received ul.woocommerce-order-overview {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.woocommerce-order-received ul.woocommerce-order-overview li {
  float: none !important;
  width: auto !important;
  margin: 0 !important;

  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--theme-border-light);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  color: rgba(85, 44, 80, 0.72);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.woocommerce-order-received ul.woocommerce-order-overview li strong {
  display: block;
  margin-top: 6px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 18px;
  font-weight: 900;
  color: rgba(29, 26, 35, 0.92);
}

.woocommerce-order-received ul.woocommerce-order-overview li.method {
  grid-column: 1 / -1;
}

.woocommerce-order-received .wc-payment-gateway-method-logo-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.woocommerce-order-received .wc-payment-gateway-method-logo-wrapper img {
  height: 16px;
  width: auto;
  display: inline-block;
}

.woocommerce-order-received .woocommerce-order-details__title,
.woocommerce-order-received .woocommerce-column__title {
  color: var(--theme-primary);
  font-weight: 900;
  letter-spacing: -.02em;
  margin: 26px 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}

.woocommerce-order-received .woocommerce-order-details .shop_table {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 0 !important;

  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--theme-border-light);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.woocommerce-order-received .woocommerce-order-details .shop_table thead th {
  padding: 16px 18px;
  font-weight: 900;
  color: var(--theme-primary);
  background: rgba(187, 20, 209, 0.07);
  border-bottom: 1px solid rgba(187, 20, 209, 0.12);
  text-transform: none;
}

.woocommerce-order-received .woocommerce-order-details .shop_table thead th.product-total {
  text-align: right;
}

.woocommerce-order-received .woocommerce-order-details .shop_table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--theme-accent-alpha-10);
  color: rgba(29, 26, 35, 0.90);
  font-weight: 700;
}

.woocommerce-order-received .woocommerce-order-details .shop_table tbody td.product-total {
  text-align: right;
  font-weight: 900;
}

.woocommerce-order-received .woocommerce-order-details .shop_table a {
  color: var(--theme-accent);
  font-weight: 900;
  text-decoration: none;
}

.woocommerce-order-received .woocommerce-order-details .shop_table a:hover {
  text-decoration: underline;
}

.woocommerce-order-received .woocommerce-order-details .shop_table tfoot th,
.woocommerce-order-received .woocommerce-order-details .shop_table tfoot td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--theme-accent-alpha-10);
  font-weight: 900;
}

.woocommerce-order-received .woocommerce-order-details .shop_table tfoot th {
  text-align: left !important;
  color: rgba(85, 44, 80, 0.85);
}

.woocommerce-order-received .woocommerce-order-details .shop_table tfoot td {
  text-align: right !important;
  color: rgba(29, 26, 35, 0.92);
}

.woocommerce-order-received .woocommerce-order-details .shop_table tfoot tr:last-child th,
.woocommerce-order-received .woocommerce-order-details .shop_table tfoot tr:last-child td {
  background: rgba(187, 20, 209, 0.06);
  border-bottom: 0;
}

.woocommerce-order-received .woocommerce-customer-details address {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--theme-primary-alpha-14);
  border-radius: 22px;
  padding: 16px 18px;
  box-shadow: 0 14px 34px rgba(20, 12, 28, 0.10);
  font-style: normal;
  color: rgba(29, 26, 35, 0.86);
  line-height: 1.6;
}

.woocommerce-order-received .woocommerce-customer-details--email {
  margin-top: 10px !important;
  padding-top: 10px;
  border-top: 1px solid var(--theme-accent-alpha-10);
  color: rgba(85, 44, 80, 0.82);
  font-weight: 900;
}

@media (max-width: 980px) {
  .woocommerce-order-received ul.woocommerce-order-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .woocommerce-order-received ul.woocommerce-order-overview {
    grid-template-columns: 1fr;
  }

  .woocommerce-order-received .woocommerce-order-details .shop_table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.woocommerce-order-received .woocommerce-order-details__title,
.woocommerce-order-received .woocommerce-column__title {
  font-size: clamp(26px, 2.6vw, 36px) !important;
  margin: 18px 0 12px !important;
  letter-spacing: -0.02em !important;
}

.woocommerce-order-received ul.woocommerce-order-overview {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  align-items: stretch;
}

.woocommerce-order-received ul.woocommerce-order-overview li {
  min-width: 0 !important;
}

.woocommerce-order-received ul.woocommerce-order-overview li strong {
  min-width: 0 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.woocommerce-order-received ul.woocommerce-order-overview li.method {
  grid-column: 1 / -1 !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.woocommerce-order-received ul.woocommerce-order-overview li.total strong,
.woocommerce-order-received ul.woocommerce-order-overview li.order strong,
.woocommerce-order-received ul.woocommerce-order-overview li.date strong,
.woocommerce-order-received ul.woocommerce-order-overview li.email strong {
  font-size: 16px !important;
}

@media (max-width: 980px) {
  .woocommerce-order-received ul.woocommerce-order-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .woocommerce-order-received ul.woocommerce-order-overview {
    grid-template-columns: 1fr !important;
  }
}

.woocommerce-order-received ul.woocommerce-order-overview {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  grid-auto-flow: row dense !important;
  gap: 12px !important;
}

.woocommerce-order-received ul.woocommerce-order-overview>li {
  float: none !important;
  width: auto !important;
  clear: none !important;

  grid-column: auto !important;
  grid-row: auto !important;

  min-width: 0 !important;
}

.woocommerce-order-received ul.woocommerce-order-overview>li.order {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

.woocommerce-order-received ul.woocommerce-order-overview>li.date {
  grid-column: 2 !important;
  grid-row: 1 !important;
}

.woocommerce-order-received ul.woocommerce-order-overview>li.email {
  grid-column: 3 !important;
  grid-row: 1 !important;
}

.woocommerce-order-received ul.woocommerce-order-overview>li.total {
  grid-column: 4 !important;
  grid-row: 1 !important;
}

.woocommerce-order-received ul.woocommerce-order-overview>li.method {
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
}

.woocommerce-order-received ul.woocommerce-order-overview>li strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .woocommerce-order-received ul.woocommerce-order-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .woocommerce-order-received ul.woocommerce-order-overview>li.order {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .woocommerce-order-received ul.woocommerce-order-overview>li.date {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .woocommerce-order-received ul.woocommerce-order-overview>li.email {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .woocommerce-order-received ul.woocommerce-order-overview>li.total {
    grid-column: 2 !important;
    grid-row: 2 !important;
  }

  .woocommerce-order-received ul.woocommerce-order-overview>li.method {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
  }
}

@media (max-width: 640px) {
  .woocommerce-order-received ul.woocommerce-order-overview {
    grid-template-columns: 1fr !important;
  }

  .woocommerce-order-received ul.woocommerce-order-overview>li {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
}

.hp-listing--view-page .hp-listing__categories a {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hp-listing--view-page .hp-listing__categories a {
    margin-top: -20px;
  }
}

/* =========================================================
   AGE GATE — FORCE OVERRIDES
   ========================================================= */

.age-gate.simplebar-scrollable-y {
  background: rgba(255, 251, 255, 0.96) !important;
  border: 1px solid rgba(187, 20, 209, 0.18) !important;
  border-radius: 22px !important;
  box-shadow: 0 24px 60px rgba(20, 12, 28, 0.28) !important;
}

.age-gate.simplebar-scrollable-y .simplebar-wrapper {
  margin: 0 !important;
}

.age-gate.simplebar-scrollable-y .simplebar-content {
  padding: 24px !important;
}

.age-gate.simplebar-scrollable-y .simplebar-content-wrapper {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

.age-gate.simplebar-scrollable-y .age-gate__heading {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-bottom: 20px !important;
  background: var(--theme-navbar) !important;
  border-radius: 22px 22px 0 0 !important;
  padding: 20px 24px !important;
}

.age-gate.simplebar-scrollable-y img.age-gate__heading-title--logo {
  width: min(300px, 80%) !important;
  height: auto !important;
  opacity: 1 !important;
  filter: none !important;
}

.age-gate.simplebar-scrollable-y .age-gate__subheadline {
  margin: 0 0 18px !important;
  color: rgba(85, 44, 80, 0.88) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  text-align: center !important;
}

.age-gate.simplebar-scrollable-y ol.age-gate__form-elements {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 16px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr 1.25fr !important;
  gap: 12px !important;
}

.age-gate.simplebar-scrollable-y .age-gate__label {
  display: block !important;
  margin-bottom: 6px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  color: var(--theme-primary) !important;
}

.age-gate.simplebar-scrollable-y input.age-gate__input {
  width: 100% !important;
  padding: 12px 12px !important;
  border-radius: 12px !important;
  border: 2px solid rgba(230, 211, 227, 1) !important;
  background: var(--theme-white) !important;
  color: #1d1a23 !important;
  font-size: 16px !important;
  outline: none !important;
}

.age-gate.simplebar-scrollable-y input.age-gate__input:focus {
  border-color: var(--theme-accent) !important;
  box-shadow: 0 0 0 3px rgba(187, 20, 209, 0.14) !important;
}

.age-gate.simplebar-scrollable-y .age-gate__submit {
  margin-top: 10px !important;
  display: block !important;
}

.age-gate.simplebar-scrollable-y .age-gate__submit button.age-gate__button {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;

  border: 0 !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;

  background: var(--theme-primary) !important;
  color: var(--theme-white) !important;
  font-weight: 800 !important;
  letter-spacing: 0.4px !important;
  text-transform: uppercase !important;

  box-shadow: 0 14px 26px rgba(85, 44, 80, 0.22) !important;
}

.age-gate.simplebar-scrollable-y .age-gate__additional-information {
  margin-top: 16px !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(85, 44, 80, 0.10) !important;
}

.age-gate.simplebar-scrollable-y .age-gate__additional-information p {
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  color: rgba(85, 44, 80, 0.78) !important;
}

@media (max-width: 480px) {

  .site-header img.custom-logo,
  .header img.custom-logo,
  .custom-logo {
    max-width: 220px;
    width: auto;
  }

  .age-gate.simplebar-scrollable-y .simplebar-content {
    padding: 18px !important;
  }

  .age-gate.simplebar-scrollable-y ol.age-gate__form-elements {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 10px !important;
  }
}

.hp-listings:not(:has(.hp-listing))+p[style*="font-size:24px"] {
  display: none !important;
}

.hp-listings:not(:has(.hp-listing))+p[style*="font-size:24px"]+hr {
  display: none !important;
}

.g-signin2 {
  display: none !important;
}

/* =========================================================
   LOGIN
   ========================================================= */

.hp-form input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 2px solid #e6d3e3;
  border-radius: 10px;
  background-color: var(--theme-white);
  color: var(--theme-black-light);
  transition: border-color 0.3s ease;
}

.hp-form input[type="password"]:focus {
  outline: none;
  border-color: var(--theme-accent);
  box-shadow: 0 0 0 2px rgba(187, 20, 209, 0.15);
}

.hp-form__field--password .hp-field--password {
  padding-right: 42px;
}

.home-cat-pill {
  margin: 18px 0 18px !important;
  text-align: left;
}

.home-cat-pill>a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;

  padding: 6px 12px;
  border-radius: 0px;
  line-height: 32px;

  background: var(--theme-blue-alpha-18);
  border: none;

  text-decoration: none;
  transition: transform .12s ease, background-color .12s ease;
}

.home-cat-pill>a strong {
  color: var(--theme-blue-alpha-80) !important;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
}

.home-cat-pill>a:hover {
  background: var(--theme-blue);
  transform: translateY(-2px);
}

.home-cat-pill>a:hover strong {
  color: #fff !important;
}

/* =========================
   Preferencias
   ========================= */

.hp-listing--view-page .prefs__table {
  width: 100%;
}

.hp-listing--view-block .prefs__table,
.hp-listing--view-block .prefs__table tbody,
.hp-listing--view-block .prefs__table tr {
  display: block;
  width: 100%;
}

.hp-listing--view-block .prefs__table td:first-child {
  display: none;
}

.hp-listing--view-block .prefs__table td.prefs__values {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding: 2px 20px 2px;
  max-width: 100%;
  box-sizing: border-box;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

@media (max-width: 640px) {
  .hp-listing--view-block .prefs__table td.prefs__values {
    padding: 2px 24px 2px !important;
  }
}

.hp-listing--view-block .prefs__table td.prefs__values::-webkit-scrollbar {
  height: 0;
}

.hp-listing--view-block .prefs__table td.prefs__values .badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.hp-listing--view-block .hp-listing__content {
  min-width: 0;
}

.hp-listing--view-block .prefs__table td.prefs__values {
  padding-right: 12px;
}

@media (max-width: 768px) {
  .hp-listing--view-block .prefs__table td.prefs__values {
    gap: 3px;
  }
}

.hp-listing--view-block .hp-listing__content {
  overflow: hidden;
  border-radius: inherit;
}

.hp-listing--view-block .prefs__table td.prefs__values {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hp-listing--view-block .prefs__table td.prefs__values {
  padding-right: 10px;
}

/* =========================================================
   HIVEPRESS VERIFIED BADGE
   ========================================================= */

.hp-listing__title .hp-listing__verified-badge.hp-listing__verified,
.hp-page__title .hp-listing__verified-badge.hp-listing__verified {
  display: none !important;
}

.hp-listing--view-block:has(.hp-listing__verified-badge.hp-listing__verified) .hp-listing__image {
  position: relative;
  overflow: hidden;
}

.hp-listing--view-block:has(.hp-listing__verified-badge.hp-listing__verified) .hp-listing__image::after {
  all: unset;
  content: "✔︎";
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 10;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;
  border-radius: 50%;

  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  writing-mode: horizontal-tb;
  text-orientation: mixed;

  color: var(--theme-white);
  background: var(--theme-success);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);

  pointer-events: none;
}

body.single-hp_listing .hp-row.hp-listing--view-page .hp-listing__images,
body.single-hp_listing .hp-row.hp-listing--view-page .hp-listing__gallery,
body.single-hp_listing .hp-row.hp-listing--view-page .hp-listing__image {
  position: relative;
  overflow: hidden;
}

body.single-hp_listing .hp-row.hp-listing--view-page:has(> .hp-page__content .hp-listing__title .hp-listing__verified-badge.hp-listing__verified) .hp-listing__images::after,
body.single-hp_listing .hp-row.hp-listing--view-page:has(> .hp-page__content .hp-listing__title .hp-listing__verified-badge.hp-listing__verified) .hp-listing__gallery::after,
body.single-hp_listing .hp-row.hp-listing--view-page:has(> .hp-page__content .hp-listing__title .hp-listing__verified-badge.hp-listing__verified) .hp-listing__image::after {
  all: unset;
  content: "✔︎ Verificado";
  position: absolute;

  right: 12px;
  top: 12px;

  z-index: 50;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 16px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;

  color: var(--theme-white);
  background: var(--theme-success);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 6px 12px rgba(0, 251, 130, .22);
  backdrop-filter: blur(4px);

  pointer-events: none;
}

@media (max-width: 480px) {
  .hp-listing--view-block:has(.hp-listing__verified-badge.hp-listing__verified) .hp-listing__image::after {
    right: 8px;
    bottom: 8px;
    width: 22px;
    height: 22px;
    font-size: 13px;
  }
}

/* Vendor Badge Overrides */
.hp-vendor__verified-badge {
  display: none !important;
}

.hp-vendor--view-block:has(.hp-vendor__verified-badge) .hp-vendor__image {
  position: relative;
  overflow: hidden;
}

.hp-vendor--view-block:has(.hp-vendor__verified-badge) .hp-vendor__image::after {
  content: "✔︎";
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 10;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;
  border-radius: 50%;

  font-size: 14px;
  font-weight: 700;
  line-height: 1;

  color: var(--theme-white);
  background: var(--theme-success);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);

  pointer-events: none;
}


.hp-listing__details.hp-listing__details--primary {
  text-transform: lowercase
}

.hp-listing--view-block .hp-listing__created-date.hp-listing__date.hp-meta {
  font-size: 10px;
}

.hp-listing__created-date.hp-listing__date.hp-meta.is-autorenueva {
  color: #ff007f !important;
}

.hp-listing__created-date.hp-listing__date.hp-meta {
  font-size: 15px;
}

.hp-listing__details.hp-listing__details--primary p {
  line-height: 20px;
  font-size: 14px
}

.hp-button--mobile {
  display: block !important;
  margin-bottom: 30px
}

.hp-modal--mobile.hp-modal {
  display: none
}

.hp-modal--mobile.hp-modal.fancybox-content {
  background-color: var(--theme-light-bg)
}

.hp-result-count {
  margin-bottom: 10px;
  font-weight: bold;
  text-align: right
}

.hp-listing__content .hp-listing__details.hp-listing__details--primary {
  min-height: 50px;
}

@media only screen and (max-width: 768px) {
  .hp-listing__content .hp-listing__details.hp-listing__details--primary {
    min-height: auto;
  }

  .message__container.locale--ES {
    margin: 15px !important;
  }
}

.hp-listing--view-block .hp-listing__attributes--ternary .hp-listing__attribute {
  margin: 0px !important;
}

/*--------------------------------------------------------------
Cookie Banner (Complianz — cmplz)
--------------------------------------------------------------*/

/* Botón flotante "Gestionar consentimiento" — estilo propio */
.cmplz-btn.cmplz-manage-consent {
  background: var(--theme-white) !important;
  color: var(--theme-black-light) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

.cmplz-btn.cmplz-manage-consent:hover,
.cmplz-btn.cmplz-manage-consent:focus {
  background: var(--theme-white) !important;
  filter: brightness(0.96) !important;
  transform: translateY(-1px) !important;
}

/* Botones cookies — estándar gris/hover-rosa */
.cmplz-btn:not(.cmplz-manage-consent) {
  border-radius: 14px !important;
  padding: 12px 20px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  border: 0 !important;
  background: var(--theme-gray) !important;
  color: var(--theme-white) !important;
  box-shadow: none !important;
  transition: background 0.2s ease, transform 0.12s ease !important;
}

.cmplz-btn:not(.cmplz-manage-consent):hover,
.cmplz-btn:not(.cmplz-manage-consent):focus {
  background: var(--theme-primary) !important;
  transform: translateY(-1px) !important;
}

/* Aceptar — opción destacada */
.cmplz-btn.cmplz-accept {
  background: var(--theme-primary) !important;
}

.cmplz-btn.cmplz-accept:hover,
.cmplz-btn.cmplz-accept:focus {
  filter: brightness(1.08) !important;
}

footer.hp-page__footer {
  margin-bottom: 4rem !important;
}