/* 
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 */


.category-slider .category-item {
    text-align: center;
}
.category-slider .category-item a{text-decoration:none;}
.category-slider .category-item a img {
    /*width: 100px;
    height: 100px;*/
    object-fit: contain;
    margin: 0 auto 10px;
    border-radius: 50%;
    border: 2px solid #eee;
    padding: 5px;
    background: #fff;
    transition: transform 0.3s ease;
}
.category-slider .category-item img:hover {
    transform: scale(1.1);
}
.category-slider .category-item h4 {
    font-size: 14px;
    margin: 0;
    color: #333;
}

/* product category sec */

.category-products {
  margin-bottom: 20px;
}

.category-products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.category-products-header h2.cat-title{font-size:18px;font-weight:700;}
.category-products-header .view-all{background:#ff7530;color:#FFF;font-size:14px;font-weight:600;text-decoration:none;padding: 5px 10px;
    border-radius: 5px;}
.category-products-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.category-products-list::-webkit-scrollbar {
  display: none; /* hide scrollbar for cleaner UI */
}

.category-product-item {
  flex: 0 0 calc(16.66% - 20px); /* 6 items per row */
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  
  /* ✅ Equal height */
  height: 100%;
}
.category-product-item .onsale{display:none;}
.category-product-item img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
}

.category-product-item h3 {
  font-size: 14px;
  margin: 10px 0;
  flex-grow: 1; /* pushes button down */
}

.category-product-item .price {
  font-weight: bold;display:none;
  margin: 10px 0;
}

.category-product-item .button {
  margin-top: auto; /* ✅ ensures button stays at bottom */
}

.category-slider .owl-nav{display:inline-block !important;position: absolute;top: calc(50% - 20px);width:100%;}
.category-slider .owl-nav .owl-prev, .category-slider .owl-nav .owl-next{width: 48px;height: 48px;background: #FFF !important;border-radius: 50%;    border: 1px solid #DDD !important;position:relative;top:50%;}
.category-slider .owl-nav .owl-prev{left:0;}
.category-slider .owl-nav .owl-next{right:0;position: absolute;top: 0;}
#categories-menu-sec{display:none;position: absolute;top: 49px;left: 10px;}