/**
 v1
 */

/* ========================================
   Variables de Color
    --primary-color: #E8B4D9
======================================== */
:root{
  --primary-color: #D5A8B2;   
  --secondary-color: #F4C7E1;
  --accent-color: #D4A574;
  --accent-gold: #D4A574;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --bg-light: #FFF5FA;
  --bg-cream: #FFF9F3;
  --white: #FFFFFF;
  --border-color: #F0E5E5;
  --hover-color: #D896C8;
  --rose-soft: #F5D5E5;
  --peach-soft: #FFE5D9;

  --brand-lilac: #9278A6;


}

:root{
  --bg-photo-1: #D5A8B2;
  --bg-photo-2: #D0A1AD;
  --bg-photo-3: #C496A1;
}

.hero-section{
  background: linear-gradient(135deg,
    var(--bg-photo-1) 0%,
    var(--bg-photo-2) 45%,
    var(--bg-photo-3) 100%
  );
}


/* ========================================
   Importar Fuentes
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========================================
   Reset y Base
======================================== */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6{
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--text-dark);
}



.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a{
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   Reset visual SOLO en esta plantilla (diseño)
======================================== */
.page-template-diseo-php body,
.page-template-diseo-php .site,
.page-template-diseo-php #page,
.page-template-diseo-php #content,
.page-template-diseo-php .site-content,
.page-template-diseo-php .ast-container,
.page-template-diseo-php .site-main{
  background: #fff !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

.site-header .site-branding{ display:none; }

.site-header{
  position: relative;
  width: 100%;
  z-index: 9999;
}

.site-header .container{
  max-width: 1400px;
}


.topbar-ref{
  background:#0b0b0b;
  color:#fff;
  font-size: 13px;
  padding: 8px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-right{
  display:flex;
  align-items:center;
  gap: 16px;
}

.topbar-icon{
  color:#fff;
  font-size: 14px;
  opacity: .95;
}
.topbar-icon:hover{ opacity: .75; }


.mainbar-ref{
  background:#fff;
  border-bottom: 1px solid #eee;
}

.mainbar-inner{
  display:flex;
  align-items:center;
  gap: 22px;
  flex-wrap: nowrap;
  padding: 12px 0;
}

/* Logo en color original */
.site-logo-ref img{
  max-height: 52px;
  width:auto;
  filter:none !important;
  transition: transform .25s ease;
}
.site-logo-ref img:hover{ transform: scale(1.06); }

/* Search como referencia (borde + fondo gris suave) */
.header-search-ref{
  flex: 1 1 520px;
  max-width: 520px;
  min-width: 280px;
}

.search-input-wrapper{
  position: relative;
  width: 100%;
}

.search-icon-inside{
  position:absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  /*pointer-events:none;*/
  opacity: 0.6;
  color: #888;
  z-index: 5;
  display: flex;
  align-items: center;
}

.search-field-ref{
  width: 100%;
  height: 44px;
  line-height: 44px;
  border: 1px solid #e6e6e6 !important;     /* borde referencia */
  border-radius: 50px !important;
  padding-left: 60px !important;
  outline: none !important; /* quitar la linea negra */
  font-size: 14px;
  background: #f9f9f9 !important;           /* fondo referencia */
  color: #222;
  transition: all 0.3s ease;
  box-shadow: none;
}

/* Evita que aparezca el recuadro negro punteado al hacer foco */
.search-field-ref:focus, 
.search-field-ref:active {
    outline: none !important;
    border-color: var(--brand-lilac) !important;
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(146, 120, 166, 0.1) !important;
}

.search-field-ref::placeholder{ color: rgba(0,0,0,.45); }



/* NAV */
.nav-ref{ flex: 0 0 auto; }

.nav-menu-ref{
  display:flex;
  list-style:none;
  align-items:center;
  gap: 18px;
  margin:0;
  padding:0;
  white-space:nowrap;
}

.nav-menu-ref a{
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13px;
  color:#000;
  opacity: .95;
}
.nav-menu-ref a:hover{ opacity: .70; }

/* ========================================
   SECCIÓN BEAUTY BOX
======================================== */
.beauty-box-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #FFF9F3 0%, #FFF5FA 100%);
}

.beauty-box-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contenido Izquierdo */
.beauty-box-content {
  padding: 20px;
}

.beauty-box-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.beauty-box-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 32px;
  font-weight: 400;
}

.beauty-box-btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  cursor: pointer;
}

.beauty-box-btn:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(213, 168, 178, 0.3);
}

/* Contenido Derecho - Imagen */
.beauty-box-image-wrapper {
  position: relative;
  border-radius: 20px;
}
/* Contenedor de imagen + hotspots */
.beauty-box-media{
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
/* La imagen como contenido */
.beauty-box-photo{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Hotspot (link) */
.bb-hotspot{
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 5;

  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(6px);

  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bb-hotspot img{
  width: 22px;
  height: 22px;
  display: block;
}

/* Hover bonito */
.bb-hotspot:hover{
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}



/* Responsive - Tablets */
@media (max-width: 968px) {
  .beauty-box-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .beauty-box-title {
    font-size: 36px;
  }

  .beauty-box-subtitle {
    font-size: 18px;
  }

  .beauty-box-bg {
    height: 350px;
  }

  .product-img {
    width: 180px;
  }
}

/* Responsive - Móviles */
@media (max-width: 640px) {
  .beauty-box-section {
    padding: 40px 0;
  }

  .beauty-box-content {
    text-align: center;
    padding: 10px;
  }

  .beauty-box-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .beauty-box-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .beauty-box-btn {
    padding: 12px 28px;
    font-size: 14px;
  }

  .bb-hotspot{
    width: 38px;
    height: 38px;
  }

  .bb-hotspot img{
    width: 18px;
    height: 18px;
  }

}

/* ========================================
   MEGA MENÚ DROPDOWN (Desktop)
======================================== */
.menu-item {
  position: relative;
}

.menu-item.has-submenu > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.arrow-down {
  transition: transform 0.3s ease;
}

.menu-item.has-submenu:hover .arrow-down {
  transform: rotate(180deg);
}

/* Mega dropdown */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 12px;
  
  background: var(--bg-light);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease;
  
  min-width: 600px;
  max-width: 800px;
  z-index: 1000;
}

.menu-item.has-submenu:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  margin-top: 0;
}

.mega-dropdown-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  padding: 24px;
}

.mega-column {
  padding: 8px 16px;
}

.submenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.submenu-list li {
  margin-bottom: 12px;
}

.submenu-list li:last-child {
  margin-bottom: 0;
}

.submenu-list a {
  font-size: 14px;
  color: #333;
  display: block;
  padding: 6px 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.submenu-list a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

/* ========================================
   MENÚ MÓVIL (Hamburguesa + Acordeón)
======================================== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-cart-icon {
  display: none;
  position: relative;
}

.mobile-cart-icon a {
  display: flex;
  align-items: center;
  position: relative;
}

.submenu-toggle {
  display: none;
}

.mobile-submenu {
  display: none;
}

/* Ocultar productos destacados en desktop */
.mobile-featured-products {
  display: none;
}

/* ========================================
   RESPONSIVE MENÚ
======================================== */
@media (max-width: 1024px) {
  /* Ocultar mega dropdown en tablets */
  .mega-dropdown {
    display: none;
  }
  
  .arrow-down {
    display: none;
  }
}

/* Carrito + contador rosa */
.icon-cart-main{
  position: relative;
  display:flex;
  align-items:center;
}

.cart-icon-img{
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform .25s ease;
}
.icon-cart-main:hover .cart-icon-img{ transform: scale(1.08); }

.cart-count-ref{
  position:absolute;
  top:-8px;
  right:-10px;
  background: var(--primary-color);
  color:#fff;
  border-radius: 999px;
  font-size: 11px;
  padding: 2px 6px;
}

/* ========================================
   HERO (plantilla diseño)
======================================== */
.page-template-diseo-php .hero-section{
  position: relative;
  width: 100%;

  min-height: 85vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  

  background-color: var(--primary-color);
  background-image: url('img/img_inicio.png') !important;
  background-repeat: no-repeat !important;

  /* Para que NO se corte tanto la cara */
  background-size: 45%  !important;
  background-position: 60% 0% !important; 

}


.page-template-diseo-php .hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(to right,
    rgba(232,180,217,1) 0%,
    rgba(232,180,217,0.9) 25%,
    transparent 50%);
  z-index:1;
}

.page-template-diseo-php .hero-container{
  position: relative;
  z-index:2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 80px 80px;
}

.page-template-diseo-php .hero-content-new{
  max-width: 550px;
  animation: slideInLeft 1.05s ease-out;
}

@keyframes slideInLeft{
  from{ opacity:0; transform: translateX(-70px); }
  to{ opacity:1; transform: translateX(0); }
}

.page-template-diseo-php .hero-title-new{
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 68px);
  color:#fff;
  margin-bottom: 36px;
  line-height: 1.05;
  font-weight: 500;
  text-shadow: 0 2px 15px rgba(0,0,0,0.15);
}

.page-template-diseo-php .btn-hero-outline{
  display:inline-block;
  background: transparent;
  color:#fff;
  padding: 14px 40px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .5px;
  border: 2px solid #fff;
  transition: all .25s ease;
}

.page-template-diseo-php .btn-hero-outline:hover{
  background:#fff;
  color: var(--brand-lilac);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.10);
}

/* ========================================
   CATEGORÍAS
======================================== */
.categories-section{
  padding: 60px 0;
}

.categories-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.category-item{
  text-align: center;
  transition: transform .25s ease;
}

.category-item:hover{
  transform: translateY(-10px);
}

.category-item img{
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.category-item h3{
  font-size: 18px;
  color: var(--text-dark);
}

/* ========================================
   PRODUCTOS
======================================== */
.featured-products{
  padding: 60px 0;
  background-color: var(--bg-light);
}

.featured-products h2{
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--text-dark);
}

/* ========================================
   FOOTER
======================================== */
.site-footer{
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
}

.footer-main{
  padding: 60px 0 40px;
}

.footer-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-column h3{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.footer-links,
.footer-contact{
  list-style: none;
}

.footer-links li,
.footer-contact li{
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a{
  color: var(--text-light);
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover{
  color: var(--primary-color);
}

.social-icons{
  display: flex;
  gap: 15px;
}

.social-icon{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-light);
  color: var(--text-dark);
  transition: all 0.3s;
}

.social-icon:hover{
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom{
  background-color: var(--bg-light);
  padding: 25px 0;
  border-top: 1px solid var(--border-color);
}

.footer-bottom-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright{
  font-size: 14px;
  color: var(--text-light);
}

.footer-legal-links{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a{
  font-size: 14px;
  color: var(--text-light);
  transition: color 0.3s;
}

.footer-legal-links a:hover{
  color: var(--primary-color);
}

.designer-credit{
  font-size: 13px;
  color: var(--text-light);
}

.designer-credit a{
  color: var(--primary-color);
  font-weight: 500;
}


/* ========================================
   RESPONSIVE
======================================== */

/* En pantallas MUY grandes, sube un poquito más */
@media (min-width: 1400px){
  .page-template-diseo-php .hero-section{
    background-position: 58% 12% !important;
  }
}

@media (min-width: 1600px) {
    .page-template-diseo-php .hero-section {
        background-size: 55% auto !important; 
        background-position: 85% bottom !important;
    }
}

/* Tablet */
@media (max-width: 1024px){
  .header-search-ref{ max-width: 480px; }
  .page-template-diseo-php .hero-container{ padding: 90px 40px 60px; }
}

/* Mobile */
@media (max-width: 768px){

   /* acorta el espacio que queda en el movil */
  html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
  }

  .page-template-diseo-php {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  .topbar-ref {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #0b0b0b !important;
    z-index: 10001;
    min-height: 35px;
    width: 100%;
  }

  .mainbar-ref {
    position: relative;
    background: #fff !important;
    z-index: 10000;
    width: 100%;
  }

  .mainbar-inner {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }


  .search-field-ref {

    width: 100% !important;
    height: 42px;
    border-radius: 50px !important;
    padding-left: 45px !important;
    border: 1px solid #eee !important;
    background: #f4f4f4 !important;
    box-sizing: border-box;
  }


  .search-icon-inside {

    left: 15px; 
    top: 50%;
    transform: translateY(-50%);
  }

  /* Mostrar botón hamburguesa y carrito móvil */
  .mobile-menu-toggle {
    background: transparent !important;
    border: none !important;
    padding: 5px !important;
    box-shadow: none !important;
    display: flex !important; 
    cursor: pointer;
  }


  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus,
  .mobile-menu-toggle:active {
    background: transparent !important;
    color: inherit !important;
    outline: none !important;
  }

  .mobile-menu-toggle span, 
  .mobile-menu-toggle i {
    background-color: #333 !important; 
    color: #333 !important;
  }

  .mobile-cart-icon {
    display: flex;
    align-items: center;
  
  }

  /* Logo */
  .site-logo-ref {
    order: 1;
    flex: 0 0 auto;
  }

  .site-logo-ref img {
    max-height: 35px; 
    width: auto;
  }
 
  

  /* Buscador */
  .header-search-ref {
    order: 3;
    flex: 0 0 100%; 
    margin: 12px 0 5px 0 !important;
    box-sizing: border-box;
   
  }

  .search-input-wrapper {
    width: 100%;
  }
 

  /* Navegación móvil */
  .nav-ref{

    position: fixed;
    top: 0;
    right: -100%;
    width: min(85%, 360px) !important;
    height: 100vh;
    background: #ffffff !important;
    z-index: 100005 !important;
    transition: right 0.3s ease;
    padding-top: 60px;

    display: flex;
    flex-direction: column;
    overflow: hidden; /* el scroll lo tendrá el contenido interno */
  }

  .nav-ref.mobile-menu-open {
    right: 0;
  }

  /* Lista del menú: scrollea */
  .nav-menu-ref{
    
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 20px;

    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 18px;
  }

  .nav-menu-ref > li {
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
  }

  .nav-menu-ref > li > a {
    color: #333 !important;
    padding: 16px 20px;
    display: block;
    text-align: left;
    border-bottom: 1px solid #f5f5f5;
  }

  /* Ocultar carrito desktop */
  .cart-desktop-item {
    display: none;
  }

  /* Submenu toggle (flecha) */
  .menu-item.has-submenu {
    position: relative;
  }

  .submenu-toggle{

    position: absolute;        
    cursor: pointer;           

    width: 44px;
    height: 44px;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    display: grid;
    place-items: center;

    transition: transform 0.3s ease;
  }


  .submenu-toggle:focus,
  .submenu-toggle:active{
    outline: none !important;
  }

  .menu-item.submenu-open .submenu-toggle {
    transform: translateY(-50%) rotate(90deg);
  }

  .submenu-toggle svg {
    width: 16px;
    height: 16px;
    color: #666;
  }

  /* Mobile submenu (acordeón) */

  .mobile-actions-wrapper {
    order: 2;
    display: flex;
    align-items: center;
    gap: 15px; /* Espacio entre hamburguesa y carrito */
    margin-left: auto; 
  }

  .mobile-submenu {

    width: 100%;
    max-width: 100%;
    box-sizing: border-box;

    display: none;
    margin: 0;
    padding: 8px 0 12px 14px;

    background: #f9f9f9;
    border-left: 3px solid #eee;
  }

  .menu-item.submenu-open > .mobile-submenu{
    display: block;
  }

  .mobile-submenu li {
    border-bottom: none;
    width: 100%;
  }

  .mobile-submenu a {
    
    display: block;
    width: 100%;
    padding: 10px 10px 10px 8px;
    box-sizing: border-box;
    font-size: 14px;
    color: #666;
  }

  .mobile-submenu a:hover {
    color: var(--primary-color);
  }

  /* Overlay cuando menú está abierto */
  body.menu-open::before {
    background: rgba(146, 120, 166, 0.15); 
    backdrop-filter: blur(8px);
  
  }

  body.menu-open {
    overflow: hidden;
  }

  /* Productos destacados en menú móvil */
  .mobile-featured-products{
    display: block;
    padding: 24px 20px;
    background: #f9f9f9;

    flex: 0 0 auto;
    border-top: 1px solid #eee;

    max-height: 40vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-featured-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
  }

  .mobile-products-grid {

    display: grid !important;
    grid-template-columns: 1fr;  
    gap: 14px;
    
  }

  .mobile-product-card {

    width: 100%;
    max-width: 320px;      
    margin: 0 auto;        
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .mobile-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  }

  .mobile-product-link {

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 0 !important;
    text-decoration: none;
  }

  .mobile-product-image {

    width: 75% !important;
    height: 200px !important;   
    flex: none !important;
    border-radius: 0 !important;
    background: #f5f5f5;
    overflow: hidden;
    
  }

  .mobile-product-image img {
    width: 80%;
    height: 80%;
    object-fit: cover;          
    display: block;
  }

  .mobile-product-info {
    width: 100%;
    padding: 12px 14px;
  }

  .mobile-product-name {

    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0 0 6px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .mobile-product-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
  }

  .mobile-product-price .amount {
    font-size: 15px;
  }

  .cart-icon-img{ width: 24px; height: 24px; }



  /* HERO mobile */
  .page-template-diseo-php .hero-section{
    min-height: 60vh;
    background-size: cover !important;
    background-position: center center !important;
  }

  .page-template-diseo-php .hero-container{
    padding: 60px 25px;
    text-align: center;
  }
  .page-template-diseo-php .hero-overlay {
   
    background: linear-gradient(to top,rgba(232, 180, 217, 0.8) 0%, transparent 50%) !important;
    }

  .page-template-diseo-php .hero-title-new{ 
    font-size: 33px; 
    text-align: center;
    margin-top: 200px;
    padding: 0 20px;
  }


}

/* Extra small */
@media (max-width: 480px){
  .page-template-diseo-php .hero-title-new{ font-size: 34px; }
  .nav-menu-ref{ gap: 12px; }
  .nav-menu-ref a{ font-size: 12px; }
}

@media (min-width: 769px){
  .nav-menu-ref{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 22px;
  }
}

/* Nav que no empuje el search */
.nav-ref{
  flex: 0 0 auto;
}

.nav-menu-ref{
  flex: 0 0 auto;
  display:flex;
  gap: 18px;
  white-space: nowrap;
}

/* Contador carrito rosa */
.cart-count-ref{
  background:#E8B4D9 !important;
  color:#fff !important;
}
