/**
 * Theme Name: hello-elementor
 * Template:   hello-elementor
 * ...other header fields
 */

 .page-header .entry-title {

    display: none;

 }


/* კატეგორიების მენიუ  */


#cat_svg_menu .eael-simple-menu-container .eael-simple-menu-toggle svg {
    
    width: 160px !important;

}

#cat_svg_menu .eael-simple-menu-container .eael-simple-menu-toggle svg {
  transition: transform 0.2s ease, fill 0.2s ease !important;
}

/* Hover effect */
#cat_svg_menu .eael-simple-menu-container .eael-simple-menu-toggle:hover svg {
  transform: scale(1.1) !important;
}


/* პროდუქტის გვერდი  */


.star-rating{
    display: none !important;   
}

a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {

    display: none !important;
}


.variations_form.cart .single_variation_wrap{

    display: none !important;
}

li.reviews_tab {
    display: none !important;
}

.woocommerce div.product .woocommerce-product-rating{
    display: none !important;
}


.cart{

    display: none !important;
}

.woocommerce-loop-product__title{
    font-size: 1.2em !important;
    color: #000040;
}


.woocommerce-loop-product__title:hover{
     color: #0000bd;
}

a.button.product_type_variable.add_to_cart_button{
    display: none !important;
}

a.button.product_type_grouped {
      display: none !important;

}

a.button.product_type_external {

    display: none !important;
}

.woocommerce-ordering {
    display: none !important;
}
/* კონტაქტ ფორმა */

.wpcf7-form-control{

    margin-top: 10px !important;
}
/* სეარჩ შედეგები */


/* სეარჩ შედეგები */


.profiline-product-list-wrapper {
    display: flex;
    flex-direction: row; /* changed from column for side-by-side */
    flex-wrap: wrap; /* allows wrapping on smaller screens */
    gap: 30px;
    font-family: 'NATO Sans Georgia', sans-serif;
}

/* Individual Product Item */
.profiline-product-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profiline-product-item {
    display: flex;
    flex-direction: column; /* stack content vertically */
    background-color: #F4F5F7;
    padding: 20px;
    border-radius: 20px;
    gap: 15px;
    color: #000;
    box-sizing: border-box;
    width: 100%;
    max-width: 300px; /* keeps all items same width */
}
/* Product Image */
.profiline-product-image img {
    width: 100%; /* full width of container */
    height: 300px; /* uniform height */
    object-fit: cover; /* crop if necessary */
    border-radius: 20px;
    display: block;
}

/* Product Content */
.profiline-product-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    font-family: 'NATO Sans Georgia', sans-serif;
    color: #000;
}

/* Title */
.profiline-product-title a {
    font-size: 24px;
    color: #000;
    text-decoration: none;
    margin-bottom: 5px;
}

/* Category */
.profiline-product-category {
    margin-bottom: 10px;
}

.profiline-product-cat-link {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}



/* Excerpt */
.profiline-product-excerpt {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Price */
.profiline-product-price {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Button */
.profiline-product-button {
    margin-top: auto; /* pushes button to bottom of item */
    align-self: center; /* centers horizontally */
    display: inline-block;
    padding: 10px 20px;
    background-color: #000040;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-family: 'NATO Sans Georgia', sans-serif;
    font-size: 14px;
    text-align: center;
    transition: background 0.3s ease;
}

.profiline-product-button:hover {
    background-color: #d5d5d5 !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .profiline-product-item {
        flex: 1 1 45%; /* 2 items per row on medium screens */
    }
}

@media(max-width: 768px){
    .profiline-product-list-wrapper {
        flex-direction: column; /* stack items */
        align-items: center; /* center items horizontally */
    }

    .profiline-product-item {
        flex: 1 1 100%;
        max-width: 300px; /* optional: keeps items from stretching too wide */
        padding: 20px;
    }

    .profiline-product-image {
        text-align: center;
        width: 100%;
        margin-bottom: 15px;
    }

    .profiline-product-content {
        width: 100%;
    }

    .profiline-product-excerpt {
        text-align: justify;
    }
}

