.woo-products-container-3cb13bae {
    margin: 20px 0;
}

/* Grid Layout styling */
.woo-products-container-3cb13bae.woo-layout-grid-3cb13bae {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Base Card Styling */
.woo-prod-card-3cb13bae {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woo-prod-card-3cb13bae:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.woo-prod-card-link-3cb13bae {
    text-decoration: none;
    color: inherit;
    display: block;
}

.woo-prod-card-img-wrapper-3cb13bae {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f7f7f7;
    position: relative;
    overflow: hidden;
}

.woo-prod-card-img-3cb13bae {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.woo-prod-card-3cb13bae:hover .woo-prod-card-img-3cb13bae {
    transform: scale(1.05);
}

.woo-prod-card-img-placeholder-3cb13bae {
    width: 100%;
    height: 100%;
    background: #e2e8f0;
}

.woo-prod-card-content-3cb13bae {
    padding: 15px;
    text-align: center;
}

.woo-prod-card-title-3cb13bae {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.woo-prod-card-price-3cb13bae {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
}

.woo-prod-card-footer-3cb13bae {
    padding: 0 15px 15px 15px;
    text-align: center;
}

.woo-prod-card-btn-3cb13bae {
    display: inline-block;
    width: 100%;
    padding: 10px 15px;
    background-color: #111111;
    color: #ffffff;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.woo-prod-card-btn-3cb13bae:hover {
    background-color: #333333;
    color: #ffffff;
}

/* List Layout Styling */
.woo-products-container-3cb13bae.woo-layout-list-3cb13bae {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.woo-products-container-3cb13bae.woo-layout-list-3cb13bae .woo-prod-card-3cb13bae {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.woo-products-container-3cb13bae.woo-layout-list-3cb13bae .woo-prod-card-link-3cb13bae {
    display: flex;
    flex-direction: row;
    width: auto;
    flex-grow: 1;
    align-items: center;
}

.woo-products-container-3cb13bae.woo-layout-list-3cb13bae .woo-prod-card-img-wrapper-3cb13bae {
    width: 120px;
    height: 120px;
    aspect-ratio: auto;
    flex-shrink: 0;
}

.woo-products-container-3cb13bae.woo-layout-list-3cb13bae .woo-prod-card-content-3cb13bae {
    text-align: left;
    padding: 15px 20px;
}

.woo-products-container-3cb13bae.woo-layout-list-3cb13bae .woo-prod-card-footer-3cb13bae {
    padding: 15px 25px;
    margin-left: auto;
    flex-shrink: 0;
}

/* Mobile responsive for List Layout */
@media (max-width: 767px) {
    .woo-products-container-3cb13bae.woo-layout-list-3cb13bae .woo-prod-card-3cb13bae {
        flex-direction: column;
        align-items: stretch;
    }
    .woo-products-container-3cb13bae.woo-layout-list-3cb13bae .woo-prod-card-link-3cb13bae {
        flex-direction: column;
        align-items: stretch;
    }
    .woo-products-container-3cb13bae.woo-layout-list-3cb13bae .woo-prod-card-img-wrapper-3cb13bae {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .woo-products-container-3cb13bae.woo-layout-list-3cb13bae .woo-prod-card-content-3cb13bae {
        text-align: center;
    }
    .woo-products-container-3cb13bae.woo-layout-list-3cb13bae .woo-prod-card-footer-3cb13bae {
        margin-left: 0;
        padding-top: 0;
    }
}
