.home-wrapper{
    max-width:1300px;
    margin:auto;
    padding:30px 20px;
}

.home-category{
    margin-bottom:40px;
    background:#f5f5f5;
    border-radius:25px;
    padding:15px;
}

.section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.section-header h2{
    font-size:20px;
    margin:0;
}
.featured-box .banner-content h2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 700;
}
.section-header a {
    text-decoration: none;
    color: #111;
    font-size: 13px;
    font-weight: bold;
    background: #fff;
    padding: 5px 15px;
    border-radius: 50px;
}



.home-products-slider .swiper-slide{
    height:auto;
}

.home-products-slider .swiper-button-next,
.home-products-slider .swiper-button-prev{
    width:45px;
    height:45px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 0 10px rgba(0,0,0,.1);
    color:#111;
}

.home-products-slider .swiper-button-next:after,
.home-products-slider .swiper-button-prev:after{
    font-size:16px;
    font-weight:bold;
}

/* =========================================================
CATEGORÍAS HOME
========================================================= */

.home-categories-slider-wrap{
    margin-bottom:40px;
    background:#f5f5f5;
    border-radius:25px;
    padding:20px 15px;
    overflow:hidden;
}

.home-categories-slider{
    position:relative;
}

.home-category-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-decoration:none;
    color:#111;
    gap:12px;
}

.home-category-thumb{
    width:140px;
    height:140px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    transition:.3s;
}

.home-category-thumb img{
    width:75%;
    height:75%;
    object-fit:contain;
    transition:.3s;
}

.home-category-item span{
    font-size:14px;
    font-weight:500;
    text-align:center;
    line-height:1.3;
}

.home-category-item:hover .home-category-thumb{
    transform:translateY(-4px);
}

.home-category-item:hover img{
    transform:scale(1.05);
}

.cat-placeholder{
    font-size:40px;
    color:#999;
}

.home-categories-slider .swiper-button-next,
.home-categories-slider .swiper-button-prev{
    width:45px;
    height:45px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 0 10px rgba(0,0,0,.1);
    color:#111;
}

.home-categories-slider .swiper-button-next:after,
.home-categories-slider .swiper-button-prev:after{
    font-size:16px;
    font-weight:bold;
}

@media(max-width:768px){

    .home-category-thumb{
        width:100px;
        height:100px;
    }

    .home-category-item span{
        font-size:12px;
    }

}
	
/* =========================================================
SECCIÓN DESTACADA
========================================================= */

.home-featured-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:10px;
    margin-bottom:40px;
    background:#f5f5f5;
    border-radius:20px;
    align-items:stretch;
}

.featured-left{
    overflow:hidden;
    border-radius:25px;
    height:100%;
}

.featured-left .swiper,
.featured-left .swiper-wrapper,
.featured-left .swiper-slide{
    height:100%;
}

.banner-slide {
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    text-decoration: none;
    color: var(--text-global);
    background: #fff;
    margin: 10px;
}
.featured-left .banner-slide {
    height: 95%;
    padding: 0;
    margin-top: 10px;
    margin: 0px;
    margin-top: 10px;
    margin-left: 10px;
}
.banner-content {
    max-width: 47%;
    padding-left: 50px;
    position: relative;
}

.banner-content h2{
    font-size:25px;
    line-height:1;
    margin:0 0 20px;
    font-weight:700;
}
.featured-box .banner-content {
    padding-left: 0px;
}
.banner-content span{
    background:var(--btn-bg);
    color:var(--btn-text);
    padding:14px 24px;
    border-radius:50px;
    font-weight:bold;
    display:inline-block;
}
.featured-box .banner-slide {
    display: flex;
}
.banner-image{
    width:50%;
}
.featured-box .banner-image img {
    height: 100%;
    max-height: 120px;
}
.featured-box .banner-slide span {
    font-size: 12px;
    padding: 6px 9px;
    font-weight: 500;
}
.banner-image img{
    width:100%;
    max-height:240px;
    object-fit:contain;
}

.featured-right{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin:10px 10px 10px 0;
}
.featured-box {
    flex: 1;
    display: flex;
    align-items: center;
}
.featured-box{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    height:100%;
}

.featured-box .banner-slide{
    height:100%;
}

.home-banner-slider{
    position:relative;
}

.home-banner-slider .swiper-button-next,
.home-banner-slider .swiper-button-prev{
    width:45px;
    height:45px;
    background:#f5f5f5;
    border-radius:50%;
    color:#111;
}

.home-banner-slider .swiper-button-next:after,
.home-banner-slider .swiper-button-prev:after{
    font-size:16px;
    font-weight:bold;
}

.home-banner-slider .swiper-pagination{
    bottom:15px !important;
}

.home-banner-slider .swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#fff;
    opacity:.5;
}

.home-banner-slider .swiper-pagination-bullet-active{
    opacity:1;
}

.featured-box .product-image{
    height:180px;
}

@media(max-width:992px){
.home-wrapper {
    padding: 30px 10px;
}
.featured-right {
    display: none;
}
    .home-featured-grid{
        grid-template-columns:1fr;
    }
.banner-image img {
    width: 100%;
    max-height: 170px;
    object-fit: contain;
}
    .banner-slide {
        min-height: auto;
        padding-bottom: 52px !important;
        padding-top: 10px !important;
        margin-right: 10px !important;
        display: flex;
        align-items: center;
        gap: 7px !important;
        height: auto !important;
        flex-direction: column-reverse;
    }
	    .banner-content {
        max-width: 100%;
        padding: 0;
			text-align: center;
    }
.banner-content span {
    background: #ffcc00;
    color: #111;
	padding: 8px 14px;
	}
    .banner-content h2 {
        font-size: 15px;
        max-width: 400px;
    }


}


@media(max-width:768px){

    .section-header h2{
        font-size:24px;
    }

    .price-current{
        font-size:28px;
    }


}