/*
Theme Name: BakeryPro Child
Description: This is a child theme for BakeryPro Theme.
Author: Web-Bakery
Author URI: https://web-bakery.de
Template: bakerypro-wp-theme
Version: 1.0
*/


/*************** ADD YOUR CUSTOM CSS IN THIS AREA ***************/
.wb-catalogs-tab-content {
    padding: 15px 0;
}

.wb-catalog-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wb-catalog-list li {
    margin-bottom: 10px;
}

.wb-catalog-list a {
    color: #0073aa;
    text-decoration: underline;
}

.wb-catalog-list a:hover {
    color: #005885;
}

.swiper-slide{
    width: 100%;
    max-width: 250px;
}

ul.products.columns-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    list-style: none;
}
.wb-product-swiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.swiper-wrapper {
    margin-bottom: 1em;
}

.custom-product-card {
    display: flex;
    flex-direction: column;
    width: 200px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
}

.custom-product-card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.wb-product-img-wrap {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 10px;
}

.wb-product-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.wb-product-info-wrap {
    padding: 10px;
}

.wb-product-info-wrap h2 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 5px;
}

.wb-product-info-wrap .woocommerce-loop-product__description {
    font-size: 13px;
    color: #666;
    margin: 0;
    max-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hidden-fields-container{
    display : none
}

.show-password-input {
    display: none !important;
}

.wb-videos-tab-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.wb-videos-tab-content .wb-video-wrapper {
    width: 100%;
}

.wb-videos-tab-content iframe {
    width: 100%;
    height: 315px;
    border: none;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .wb-videos-tab-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bakerypro-first-breadcrumb{
    display: none
}