/* CSS Document */

.product-shop-carousel-section {
    background: #f8fafc;
    padding: 60px 0 80px 0;
}
.shop-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.shop-carousel-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--insac-dark);
    margin-bottom: 0;
}
.shop-header-actions {
    display: flex;
    align-items: center;
}
.btn-shop-see-more {
    font-size: 14px;
    font-weight: 700;
    color: var(--insac-primary);
    background: transparent;
    border: 2px solid var(--insac-primary);
    padding: 6px 18px;
    border-radius: 50px;
    text-decoration: none !important;
    margin-right: 15px;
    transition: all 0.3s ease;
}
.btn-shop-see-more:hover {
    background: var(--insac-primary);
    color: #ffffff !important;
}
/* Correccion de interfaz para botones de control interactivos */
.shop-arrow-btn-control {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--insac-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 6px;
    padding: 0;
}
.shop-arrow-btn-control:hover {
    background: var(--insac-primary);
    color: #ffffff;
    border-color: var(--insac-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.carousel-product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px 16px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carousel-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}
.discount-badge-flotante {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ef4444;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 10;
}
.product-img-box-wrap {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 10px;
}
.product-img-box-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.carousel-product-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #047857;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.carousel-product-card .short-description {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-stars-rating {
    font-size: 11px;
    color: #ef4444;
    margin-bottom: 15px;
}
.product-stars-rating span {
    color: #64748b;
    font-weight: 600;
    margin-left: 5px;
}
.price-container-box {
    margin-bottom: 18px;
}
.old-price-strike {
    font-size: 13px;
    text-decoration: line-through;
    color: #94a3b8;
    margin-right: 8px;
    font-weight: 600;
}
.current-price-bold {
    font-size: 15px;
    font-weight: 800;
    color: #000000;
}
.btn-add-to-cart-premium {
    background: transparent;
    border: 1px solid #047857;
    color: #047857;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
    width: 100%;
    transition: all 0.2s ease;
    text-align: center;
    text-decoration: none !important;
    display: block;
}
.btn-add-to-cart-premium:hover {
    background: #047857;
    color: #ffffff;
}
.product-shop-carousel-section .carousel-indicators {
    bottom: -45px;
}
.product-shop-carousel-section .carousel-indicators li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
}
.product-shop-carousel-section .carousel-indicators .active {
    background-color: var(--insac-primary);
    width: 20px;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .trust-video-section { padding: 60px 0; text-align: center; }
    .trust-video-title { font-size: 28px; }
}
@media (max-width: 575px) {
    .shop-carousel-header { flex-direction: column; align-items: flex-start; }
    .shop-header-actions { width: 100%; justify-content: space-between; margin-top: 12px; }
    .btn-shop-see-more { flex-grow: 1; text-align: center; }
}