/* 
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 DROPDOWNS
================================ */
.b-d {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.b-d select {
    min-width: 220px;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
}

/* ================================
   CATEGORY TITLE
================================ */
.crop-list-title {
    margin: 50px 0 20px;
    font-size: 22px;
    font-weight: 600;
    color: #1b1b1b;
}

/* ================================
   PRODUCT GRID
================================ */
.crop-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* ================================
   PRODUCT CARD
================================ */
.crop-item {
    border: 1px solid #e5e5e5;
    padding: 18px;
    text-align: center;
    transition: all 0.3s ease;
    background: #fff;
}

.crop-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.crop-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.crop-item h6 {
    font-size: 16px;
    margin: 10px 0;
    font-weight: 600;
}

/* ================================
   BUTTON
================================ */
.btn-cst {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    background-color: #0a7a3d;
    color: #ffffff !important;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-cst:hover {
    background-color: #055a2b;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .b-d {
        flex-direction: column;
    }

    .b-d select {
        width: 100%;
    }
}


