.hero{
    cursor: pointer;
}
.whatsapp {
    position: fixed;
    bottom: 40px;
    right: 10px;
    z-index: 100;
}
.whatsapp-icon {
    margin-top: 13px;
}
.foo a{
    color: #ffffff;
}
.txt-1 a{
    color: #000000;
}
.btn {
     color: #ffffff;
}

.foo2 a{
    color: #000000;
}

.banner-1-header h2 span {
        font-size: 48px;
}


.ubicacion img{
    margin-top: 30px;
}

.theme-product-details-style-07 .theme-quick-view-container .theme-product-quick-view-inner .theme-product-detail-container {
      display: block;
      padding: 25px 0px;
      border-top: 0px;
      max-height: 600px;
      /*overflow-y: hidden; */
}

.theme-store-front-container .theme-category-image-description-conatainer .theme-category-name-description {
      background: none;
      padding: 30px;
      width: 80%; 
}

.theme-store-front-container .theme-category-image-description-conatainer .theme-category-name {
      line-height: 1;
      font-size: 48px; 
      text-align: center;
}


.video-responsive {
position: relative;
padding-bottom: 56.25%; /* 16/9 ratio */
padding-top: 30px; /* IE6 workaround*/
height: 0;
overflow: hidden;
}

.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

/* Loader pantalla completa */
.loader-overlay {
	position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
/* Logo centrado con animación */
.loader-logo {
    height: 150px;         /* Ajustamos por altura */
    width: auto;           /* Mantiene proporción */
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
	0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}