/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */
 img.logo.img-fluid {
    max-width: 100%;
    height: 90px;
}
#header .header-nav {
    display: none;
}
#index #footer,
#index #checkout-header {
    /*display: none;*/
}
#index header a {
    color: white;
}
header .col-logo a {
    font-size: 1.5em;
}
.stuck-header a {
    color: black;
}
#content-wrapper {
    padding-top: 30px;
}
#page, #main-page-content,#desktop-header {
    height: 50vh;
}
body {
    overflow: scroll;
}
.spinner-white {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    vertical-align: middle;
}
.products.row.products-list #categoryStarsMain {
    margin-top: 35px;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Overlay pantalla completa */
.yt-overlay {
	position: fixed;         /* relativo al viewport */
	inset: 0;                /* top:0; right:0; bottom:0; left:0 */
	background: rgba(0,0,0,.55);
	display: grid;
	place-items: center;     /* centra el contenido */
	z-index: 9999;
  }
  
  /* Contenedor centrado (por si quieres más contenido) */
  .yt-overlay__center {
	display: grid;
	gap: 12px;
	justify-items: center;
  }
  
  /* Loader circular */
  .yt-loader-general {
	width: 48px;
	height: 48px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #e8afb5;
	border-radius: 50%;
	animation: yt-spin 1s linear infinite;
  }
  
  @keyframes yt-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
  }
  
  /* (Opcional) texto bajo el loader */
  .yt-overlay__text {
	color: #fff;
	font: 500 14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }
  
  /* (Opcional) evitar scroll de fondo cuando el overlay está visible */
  .body--lock {
	/*overflow: hidden;*/
  }
  
#wrapper {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    top: 92px;
}
#footer {
    position: relative;
    top: 92px; 
}
#wrapper .breadcrumb {
    margin-top: 0;
}
#mobile-cart-toogle {
    position: relative;
}
#footer h5.block-title {
    text-transform: uppercase;
}
.products-grid .product-miniature-default .product-category-name {
    height: 35px;
}
#footer-container-main, #checkout-footer {
    padding-top: 0;
    padding-bottom: 0;
}
/* Mega Escritorio */
@media only screen and (min-width: 1600px){
	
}
/* Escritorio */
@media only screen and (min-width: 1200px){
    .is-mac-desktop .elementor-element-kc4ex7c {
        margin-top: 40px !important;
    }
    .is-mac-desktop .categoryStarsStr {
        margin-top: 7px;
      }
    #index #header, header#header {
        position: fixed !important;
        height: 72px;
    }
    section#main {
        min-height: 500px;
    }
	#index section.featured-products h4 {
        margin-top: 25px;
    }
}
/* Tablet */
@media only screen and (width: 768px){
	
}
/* Mobile */
@media only screen and (max-width: 767px){
    img.logo.img-fluid {
        max-width: 260px;
        height: auto;
    }
    .h3.product-title a {
        display: -webkit-box;
        -webkit-line-clamp: 2;   /* número máximo de líneas */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
      
    .h3.product-title {
        height: 35px;
    }
	#index #header, header#header {
        display: inline-block;
        width: 100%;
    }
    #wrapper {
        top: 15px !important;
    }
}
/* iPad landscape */
@media only screen and (min-width : 768px) and (max-width : 1024px) { 

}