/* "View All" card appended to the ecommerce products slider */
.ecommerce-products-view-all-slide {
    display: flex;
    align-items: stretch;
}

.ecommerce-products-view-all-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    height: 100%;
    padding: 24px 16px;
    border-radius: 12px;
    background: #ffffff !important;
    border: 1px dashed rgba(253, 75, 107, 0.3);
    text-decoration: none;
    color: var(--tp-heading-primary, #010f1c);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.ecommerce-products-view-all-card:hover,
.ecommerce-products-view-all-card:focus-visible {
    background: #ffffff !important;
    border-color: rgba(253, 75, 107, 0.55);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(253, 75, 107, 0.15);
}

.ecommerce-products-view-all-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    color: #c4c4c4;
    transition: color 0.3s ease;
}

.ecommerce-products-view-all-card:hover .ecommerce-products-view-all-grid,
.ecommerce-products-view-all-card:focus-visible .ecommerce-products-view-all-grid {
    color: #fd4b6b;
}

.ecommerce-products-view-all-label {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

.ecommerce-products-view-all-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fd4b6b;
    color: #fff;
    transition: transform 0.3s ease, background 0.3s ease;
}

.ecommerce-products-view-all-card:hover .ecommerce-products-view-all-icon,
.ecommerce-products-view-all-card:focus-visible .ecommerce-products-view-all-icon {
    transform: scale(1.1);
    background: #e63e5d;
}
