/*
Theme Name: BeGlide-Child
Author: Dexign Zone
Version: 1.0.0
Author URI: http://themeforest.net/user/dexignzone
Theme URI: http://beglide.dexignzone.com/demo
Description: This is The BeGlide Agency WordPress theme
Tags: one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, rtl-language-support, sticky-post, translation-ready, microformats
Text Domain: beglide-child
Template: beglide
*/



/* Custom Product List Styles */
.custom-product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.custom-product-item.card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-product-item.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-product-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
}

/* .custom-product-title {
    font-size: 18px;
    margin: 10px 0;
    font-weight: bold;
} */

.custom-product-description {
    color: #666;
    font-size: 0.6em;
    display: flex;
    align-items: top;
    height: 100%;
    justify-content: center;
}

.custom-product-description p {
    margin: 0 !important;
}

.custom-product-categories {
    margin: 10px 0;
}

.product-category-link {
    color: #0073aa;
    text-decoration: none;
    font-size: 0.8em;
    margin-right: 5px;
}

.product-category-link:hover {
    text-decoration: underline;
}

.custom-product-button {
    display: inline-block;
    /* padding: 8px 16px; */
    /* margin-top: 15px; */
    color: #fff;
    background-color: #0073aa;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.custom-product-button:hover {
    background-color: #005d8d;
}
