/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */



/* ===== FILTER BAR WRAPPER ===== */
#trendingFilter {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 60px;
    border: 2px solid #dcecff;
    width: fit-content;
    margin: 0 auto 30px auto;
}

/* ===== FILTER DROPDOWNS ===== */
#trendingFilter select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding: 10px 40px 10px 18px;
    height: 45px;

    border: 2px solid #d0e5ff;
    border-radius: 50px;

    background-color: #ffffff;
    color: #212121;
    font-size: 14px;
    font-weight: 500;

    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%230077FF' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;

    cursor: pointer;
    transition: all 0.2s ease;
}

/* Hover effect */
#trendingFilter select:hover {
    border-color: #99c6ff;
}

/* Active focus */
#trendingFilter select:focus {
    outline: none;
    border-color: #0077FF;
}

/* ===== SUBMIT BUTTON (IF YOU WANT TO SHOW) ===== */
#trendingFilter button {
    padding: 10px 25px;
    background: #0077ff;
    color: #fff;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

#trendingFilter button:hover {
    background: #005fcc;
}

/* ===== PRODUCT GRID ===== */
.trending-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Product Card */
.item-card {
    padding: 20px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    text-align: center;
    transition: 0.3s;
}

.item-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

/* Buy Now Button */
.item-card .btn-buy {
    display: inline-block;
    padding: 10px 25px;
    background: #0077FF;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    margin-top: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.item-card .btn-buy:hover {
    background: #005fcc;
}



.short-desc {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
}

.skill-tag,
.age-tag {
    font-size: 13px;
    background: #eef5ff;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-block;
    margin: 4px 0;
}

.no-products-message {
    width: 100%;
    text-align: center;
    padding: 60px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.no-products-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.no-products-message {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-align: center;
}
/* FORCE a full-width row that breaks out of grid / flex child alignment */
.wc-no-results-row {
    width: 100%;
    grid-column: 1 / -1 !important; /* For grid layouts */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 60px 0;
}

/* Style the message */
.wc-no-results-box {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    text-align: center;
}
