/*
Theme Name: Your Theme Name
Theme URI: https://yourwebsite.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: Custom WordPress theme
Version: 1.0
*/

body {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
.container{
	padding-left:0px !important ;
		padding-right:0px !important ;

}
li {
    list-style: none;
}

ul {
    margin: 0px !important;
    padding: 0px !important;
}

a {
    text-decoration: none !important;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
}
/* Breadcrumb Css starts here  */
.custom-breadcrumb {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
}

.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* light black overlay */
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}
/* End here  */
header {
    background-color: #000000;
}
.dropdown-menu {
    display: none;
    position: absolute;
width :220px !important;	
}
.current-menu-item > a {
    color: #fdbf41 !important;
    font-weight: 700 !important;
}
.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
}
.top-header {
    background-color: #000000;
    padding: 15px 0px !important;
}

.right-header ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-item a {
    color: #000000 ;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0px !important;
}

.nav-item a:hover {
    color: #ffffff !important;
}

.custom-navbar {
    background: linear-gradient(90deg, #FDBF41 36%, #FEDC98 54%, #FEDC98 100%);
    padding: 10px 0;
}
.current-menu-item > a {
    color: #5c5c5c !important;
    font-weight: 700 !important;
} .right-header {
    display: flex;
    justify-content: right;
}

.right-header ul li a img {
    width: 26px;
    height: 26px;
    margin-right: 10px;
    vertical-align: middle;
}

.right-header ul li {
    margin-right: 20px;
}

.right-header ul li:last-child {
    margin-right: 0;
}

.right-header ul li a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.right-header ul li a:hover {
    color: #FDBF41;
}

.logo-header img,
.custom-logo {
    width: 66px !important;
    height: auto !important;
    max-width: 100% !important;
}

.logo-header-mobile {
    display: none;
}

/* WordPress Search Form */
.search-form {
    display: flex;
    max-width: 400px;
}

.search-form input[type="search"] {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    flex-grow: 1;
    font-family: "Poppins", sans-serif;
}

.search-form button[type="submit"] {
    background: #FDBF41;
    border: none;
    padding: 8px 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    color: #000000;
    font-weight: 600;
}

.search-form button[type="submit"]:hover {
    background: #FEDC98;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    background-color: #000000 !important;
    border: 1px solid #FDBF41;
    border-radius: 4px;
}

.dropdown-menu a {
    color: #ffffff !important;
    padding: 10px 20px !important;
}

.dropdown-menu a:hover {
    background-color: #FDBF41 !important;
    color: #000000 !important;
}

/* Mega menu Css Starts here 
 */
/* Mega Menu Styles - Fixed Full Width */
/* Mega Menu Background */
.mega-menu-content {
  background: #000;
}

/* Parent Category List */
.parent-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Parent Category Item */
.parent-cat-item {
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 600;
  color: #FEDC98;
  transition: all 0.3s ease;
}

.parent-cat-item:hover,
.parent-cat-item.active {
  background: #FEDC98;
  color: #000;
}

/* Sub Categories Container */
.sub-cat-group {
  display: none;
}

.sub-cat-group.active {
  display: block;
}

/* Sub Category Links */
.sub-cat-link {
  display: inline-block;
  padding: 8px 14px;
  margin: 6px;
  border: 1px solid #FEDC98;
  border-radius: 6px;
  text-decoration: none;
  color: #FEDC98;
  background: transparent;
  transition: all 0.3s ease;
  font-size: 14px;
}

/* Sub Category Hover */
.sub-cat-link:hover {
  background: #FEDC98;
  color: #000;
}

/* Optional: smooth fade animation */
.sub-cat-group {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile friendly */
@media (max-width: 768px) {
  .parent-cat-item {
    padding: 10px;
  }

  .sub-cat-link {
    display: block;
    margin: 6px 0;
  }
}

.navbar-nav .mega-menu {
    position: static !important;
}

.mega-menu-content {
    position: absolute !important;
    width: 100vw !important; /* Use viewport width instead of 100% */
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding: 30px 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    margin-top: 0 !important;
    background: #000 !important;
    border-top: 3px solid #fff  !important;
    max-height: 70vh;
    overflow-y: auto;
    z-index: 1050; /* Ensure it's above other elements */
}

/* Container inside mega menu */
.mega-menu-content .container {
    max-width: 1200px;
    padding: 0 15px;
}

/* Row adjustments for better spacing */
.mega-menu-content .row {
    margin: 0 -15px;
}

/* Column styling */
.mega-menu-column {
    padding: 0 15px;
    border-right: 1px solid #f0f0f0;
}

.mega-menu-column:last-child {
    border-right: none;
}

/* Category styling */
.category-item {
    margin-bottom: 25px;
}

.category-item:last-child {
    margin-bottom: 0;
}

.category-item .category-title {
    display: flex;
    align-items: center;
    padding: 10px 0;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.category-item .category-title:hover {
    color: #007bff;
    border-bottom-color: #ffffff ;
}

.category-image {
    width: 58px !important;
    height: 58px !important;
    object-fit: contain;
    margin-right: 15px;
}

.category-name {
    flex-grow: 1;
    font-weight: 600;
	text-transform: capitalize !important;
}

.product-count {
    font-size: 12px;
    color: #666;
    background: #f8f9fa;
    padding: 3px 10px;
    border-radius: 15px;
    margin-left: 10px;
}

/* Subcategories */
.subcategories-list {
    list-style: none;
    padding: 15px 0 0 50px;
    margin: 0;
}

.subcategories-list li {
    margin-bottom: 8px;
    position: relative;
}

.subcategories-list li:before {
    content: "→";
    position: absolute;
    left: -15px;
    color: #007bff;
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
}



.subcategories-list a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    transition: all 0.2s ease;
}

.subcategories-list a:hover {
    color: #007bff;
    padding-left: 5px;
}

.subcategories-list .count {
    font-size: 8px;
    color: #888;
    background: #f8f9fa;
    padding: 2px 4px;
    border-radius: 2px;
}

.subcategories-list .view-all {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px dashed #e0e0e0;
}

.subcategories-list .view-all a {
    color: #007bff !important;
    font-weight: 600;
    font-size: 14px;
    padding: 0;
}

.subcategories-list .view-all a:hover {
    text-decoration: underline;
    padding-left: 0;
}



/* Finish here  */
/* Navbar Toggler Customization */
.navbar-toggler {
    border: 2px solid #FDBF41 !important;
    padding: 5px 10px !important;
}

.navbar-toggler-icon {
    background-image: url('https://jcblagri.com/wp-content/uploads/2026/01/download-1.png') !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(253, 191, 65, 0.25) !important;
}

/* Navbar CSS end here  */

/* Fibo Bar Css here starts  */

.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {

    border-radius: 10px !important;
}
 .mobile-fibo{
	display : none !important;
} 
ul.navbar-nav li {
    margin: 0px 50px;
}
/* .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    justify-content: space-between !important;
    width: 100%;
} */
   #dgwt-wcas-search-input-1 {
    height: 50px !important;
}
.dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
    left: 15px;
    top: 12px !important;
}

/*************************************************** End here  **********************************************/
/* Blog Page CSS here */

.blogx-container {
  width: 90%;
  margin: 40px auto;
  font-family: Arial, sans-serif;
}

/* Recent Blog */
.blogx-recent-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.blogx-recent-img {
  width: 40%;
}

.blogx-recent-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.blogx-recent-content {
  width: 60%;
  padding: 20px;
}

.blogx-title {
  color: #000;
  margin-bottom: 10px;
}

.blogx-desc {
  color: #333;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Button */
.blogx-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #F7A707;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.blogx-btn:hover {
  background: #000;
  color: #F7A707;
}

/* Grid */
.blogx-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.blogx-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.blogx-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* Pagination */
.blogx-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.blogx-pagination a,
.blogx-pagination span {
  padding: 10px 15px;
  border: 2px solid #F7A707;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.blogx-pagination .current,
.blogx-pagination a:hover {
  background: #F7A707;
}
/*  Blog CSS end here  */
/* Footer CSS starts here  */

/* FOOTER BASE */
.site-footer {
  background: #000000;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

/* TOP HIGHLIGHTS */
.footer-highlights {
  background: #f7a707;
  padding: 25px 0;
}

.footer-highlights-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.icon-circle {
  background: #ffffff;
  color: #000000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MAIN FOOTER */
.footer-main {
  padding: 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;;
  gap: 15px;
}

/* BRAND */
.footer-brand img {
  max-width: 120px;
  margin-bottom: 10px;
}

.footer-tagline {
    font-size: 12px;
    margin-right: 70px;
}

.footer-contact li {
  list-style: none;
  margin-bottom: 12px;
  font-size: 14px;
}

/* COLUMNS */
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  color: #f7a707;
  margin-bottom: 20px;
	font-size : 18px;
	font-weight : 600 ;
}

.footer-col ul {
  padding: 0;
  margin: 0;
}

.footer-col ul li {
    list-style: none;
    margin-bottom: 25px;
}

.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
	font-weight : 600;
}

.footer-col ul li a:hover {
  color: #f7a707;
}
/* MAP */
.footer-map iframe {
  width: 100%;
  height: 160px;
  border: 0;
  margin-bottom: 15px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-social a:hover {
  background: #f7a707;
  border-color: #f7a707;
  color: #000000;
}

/* COPYRIGHT */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
}
.footer-contact li img{width:25px;height:25px;margin:0px;}
.elementor-icon-box-description a {
    color: #ffffff !important;
    font-weight: 400 !important;
}
/* *********************** End Here ****************************************************** */



/* Hero Slider JS starts here  */
/* Hero Slider Styles */
/* Hero Slider with Background Images */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 520px;
    height: 60vh;
    max-height: 700px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}
.hero-slide.slick-active {
    opacity: 1;
}

.hero-slide.animate-in {
    opacity: 1;
}

/* Background Images with fallback colors */
.slide-1 {
    background-image: url('https://jcblagri.com/wp-content/uploads/2026/01/Slide-1.jpg'); /* Fallback */
}

.slide-2 {
    background-image: url('https://jcblagri.com/wp-content/uploads/2026/01/Slide-2.jpg'); /* Fallback */
}

.slide-3 {
    background-image: url('https://jcblagri.com/wp-content/uploads/2026/01/Slide-3.jpg'); /* Fallback */
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 1;

}

.hero-slider-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    width: 100%;
}
.slick-slide,.slick-track{
	height : 80vh !important;
}
.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}
.slide-content {
    position: relative;
    max-width: 1020px;
    color: white;
    padding: 60px 0 0 0 ;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.slide-subtitle {
    display: block;
    font-size: 18px;
color : #ffffff ;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out 0.5s both;
}

.slide-title {
    font-size: 52px;
    font-weight: 800;
    line-height:64px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out 0.7s both;
    
    /* Your custom gradient colors */
    background: linear-gradient(
        90deg,
        #FDE0A5 3%,    /* Your color at 3% */
        #FCC049 33%,   /* Your color at 33% */
        #FFCD69 84%    /* Your color at 84% */
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-size: 200% auto;
    animation: titleGradient 5s ease infinite;
}


.slide-description {
    font-size: 14px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0;
	font-style:italic;
	font-weight : 400;
    animation: fadeInLeft 0.8s ease-out 0.9s both;
}
.slide-features {
    display: flex;
    justify-content: flex-start;
    gap: 15px !important;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 12px;
    border-left: 4px solid #F7A707;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
    background: rgba(74, 222, 128, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text strong {
    display: block;
    font-size: 14px;
    color: white;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.slide-buttons {
    display: flex;
    gap: 25px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.3s both;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 2px solid transparent;
    min-width: 170px;
    text-align: center;
}
.slide-title .white-highlight-text {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
}
.btn-primary {
    background: #F7A707;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px #F7A707;
     background:  #ffffff; color: #000000 ;
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    box-shadow: 0 5px 15px #F7A707;
    transform: translateY(-3px);
    border-color: #F7A707;
    color: #F7A707;
}

.slider-navigation {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    z-index: 3;
}

.slider-navigation .hero-slider-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    backdrop-filter: blur(10px);
}

.slider-prev:hover,
.slider-next:hover {
    background: #4ade80;
    transform: scale(1.1);
    color: #1a472a;
}

.slider-dots {
    display: flex;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.slider-dots li {
    width: 14px;
    height: 14px;
}

.slider-dots li button {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 0;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots li.slick-active button {
    background: #4ade80;
    border-color: #4ade80;
    transform: scale(1.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Shoplentor CSS stars here  */
.ht-products .ht-product .ht-product-inner .ht-product-content {
    padding: 15px !important;
}
.ht-product-title a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ht-product-title a {
  display: block;
  line-height: 1.4;
}
.ht-products
  .ht-product
  .ht-product-inner
  .ht-product-image-wrap
  .ht-product-image
  img {
   
    clip-path: inset(2px 2px 2px 2px) !important;
}
.woolentor-columns-3 .woolentor-product-grid .woolentor-products-wrapper > [class*="woolentor-columns-"] {
    grid-template-columns: repeat(5, 1fr) !important;
}
.woolentor-action-btn-area li:first-child {
    display : none !important ;
}
/* Product Description Css here starts  */

.spec-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 580px;
 
}
.spec-table thead tr th {
    font-size: 10px !important;
    text-align: left ;
}.spec-table td {
  padding: 8px 12px;
  border: 1px solid #ccc;
}

.spec-table tr td:first-child {
  background: #4a4a4a;
  color: #fff;
  font-weight: bold;
  width: 40%;
}
.ht-products
  .ht-product.ht-product-action-bottom-content
  .ht-product-inner
  .ht-product-action {
    
    justify-content: flex-end !important;

}
.elementor-63 .elementor-element.elementor-element-f58775c .ht-products .ht-product .ht-product-inner .ht-product-action ul li {
    padding: 0px !important;
    margin: 0px 0px 0px 0px;
}
.spec-table tr td:last-child {
  background: #f2f2f2;
}
 .flex-control-nav {
    margin: 10px 75px !important;
}
.woocommerce-product-gallery__image a img {
    width: 75% !important;
    height: auto !important;
    object-fit: contain;
    margin: auto auto !important;
}
/* End here CSS productt des */
figure.woocommerce-product-gallery__wrapper  a img {
    width: 60% !important;
    height: auto;
    margin: auto !important;
}

.woolentor-cart a {
    font-size: 10px !important;
	line-height:20px !important;
    padding: 0px !important;
	font-weight:400 !important;
   
}
.woolentor-cart {
    border-radius: 0px !important;
    border-bottom: 1px solid #000000 !important;
}
.ht-product-inner {
    border-radius: 10px !important;
}
.black-highlight{
	color : #000000 !important;
}
.slick-prev{left :0px !important;}
.slick-next{right :0px !important;}
.ht-row{overflow-x:hidden !important;}
.woolentor-action-btn-area{box-shadow : unset !important}  

/* Map global CSS here  */

.map-img {
  position: relative;
  text-align: center;
}

.map-img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

.country-list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 10px;
  border-radius: 8px;
  list-style: none;
  display: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 10;
}

.map-img:hover .country-list {
  display: block;
}

.country-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
}

.county-list-icon {
  width: 24px;
  height: auto;
}


/* Categories page css starts here  */
.categories-wrapper {
	 max-width: 1140px;
    width: 100%;
    margin: 0 auto; /* center */
    padding: 60px 10px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    border: 1px solid #f7a707;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background: #fff;
    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.cat-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.category-card h3 {
    font-size: 20px;
    margin: 15px 0;
    font-weight: 600 !important;
	text-transform : capitalize !important;
}

.view-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #f7a707;
    color: #000000;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
	font-size : 14px;
	
}



.custom-pagination {
    margin-top: 40px;
    text-align: center;
}

.custom-pagination a {
    margin: 0 6px;
    padding: 10px 15px;
    border-radius: 10px;
    background: #f7a707;
    color: #000;
    text-decoration: none;
}

.custom-pagination a.active {
    background: #000000;
    color: #f7a707;
}
/*  Categories Page CSS starts here  */

/* fillter */
.custom-filter-form {
	margin : 20px 0px ;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    max-width:1140px;
}

.custom-filter-form input, .custom-filter-form button {
    padding: 8px;
    width: 100%;
    border: 1px solid #f7a707;
	border-radius : 5px;
}
.custom-filter-form button {
    padding: 8px;
    width: 100%;
    background: #f7a707;
	font-weight : 600;
    border: 1px solid #f7a707;
}