* {
  margin: 0;
  padding: 0;
}

body, html {
	margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif; 
  background-color: #fcf5e5;
}

h1 {
	font-size: 36px;
}

h2{
	
}

p{
	font-size: 16px;
	line-height: 28px;
}
h1 span{
	font-weight: bold;color: #195148;
}

.rowgap{
	margin-top: 50px;
}

.rowgap2{
	margin-top: 80px;
}

.rounded-button {
      display: inline-block;
      padding: 12px 30px;
      font-size: 16px;
      font-weight: normal;
      color: #ffffff;
      background-color: #195148; 
      border: none;
      border-radius: 25px;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .rounded-button:hover {
      background-color: #387d6f;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      transform: translateY(-2px);
    }

    .rounded-button:active {
      transform: translateY(2px);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

.btncolor{
	background-color: #fab236 !important;
}


.headerwrap{
	width: 100%;
	height: 800px;
	 background-image: url('../images/main-bg.jpg'); 
  background-size: cover; 
  background-position: center center; 
  background-repeat: no-repeat;
}

header{
	width: 100%;
	height: 95px;
}

header .header-top{
	width: 100%;
	height: 45px;
	padding-top: 10px;
	background: #195148;
}

header .header-top i, header .header-top span, header .header-top a{
	color: #fff;
	font-size: 14px;
}

header .header-top i{
	color: #fab236;
	font-size: 14px;
}

header .logowrap{
	position: relative;
	width: 100%;
	height: auto;
	z-index: 99;
}

header .logo{
	position: absolute;
	top:-10px;
	left: 0;
	width: 150px;
	height: 150px;
}

header .navwrap{
	margin: 15px 0;
}

/* Align main navigation menu to the right */
header .navwrap nav {
	display: flex;
	justify-content: flex-end;
  margin-top: 10px;

}

header .header-btm{
	position: relative;
}


header .header-social{
	position: absolute;
	top: 420px;
	left: 10px;
  z-index: 999;
}


/* Main Slider */

 /* Full-page slider styling */
    #main-slider {
      position: relative;
      width: 100%;
      height: 705px; /* 100vh */
    }

 #main-slider .owl-carousel {
    position: relative;  
}

    #main-slider .owl-carousel .item {
      height: 750px;  /* Full viewport height */ /* 100vh */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    #main-slider .owl-carousel .item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

     #main-slider .slider-text {
      margin:170px 0 0 120px;
      /*text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);*/
    }

    .slider-text h2{
      font-size: 96px;
      color: #fab236;
      font-weight: bold;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    }

    .slider-text h3{
      font-size: 48px;
      color: #000;
      font-weight: bold;
    }

     .owl-nav button.owl-prev, 
    .owl-nav button.owl-next {
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      font-size: 30px;
      border-radius: 50%;
      padding: 10px;
    }


/* custom dot */
 #main-slider .owl-carousel .owl-dot {
    display: none;  
}

.custom-dots {
    position: absolute;
    bottom: 30px;  
    left: 50%;
    transform: translateX(-50%);  
    text-align: center;
    z-index: 10;  
}

.custom-dots .dot {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 5px;
    background-color: transparent;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.custom-dots .dot i {
    font-size: 20px;
    color: #195148;  
    text-align: center;
    line-height: 30px;
}

.custom-dots .dot:hover i {
    color: #FF5733;  
    transform: scale(1.2);  
}

.custom-dots .dot.active i {
    color: #FF5733; 
    transform: scale(1.2); 
}

.custom-dots .dot.active:hover i {
    color: #FFF;  
    transform: scale(1.2); 
}

/* End Main Slider */

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 15px; 
  transform: translateY(-50%);
}

.social-icon {
  font-size: 24px; 
  color: #555; 
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.social-icon .fa-facebook-f { color: #1877F3; }
.social-icon .fa-instagram { color: #E4405F; }
.social-icon .fa-tiktok { color: #000000; }

.social-icon:hover {
  transform: scale(1.2); 
}

.social-icon:hover .fa-facebook-f { color: #145db2; }
.social-icon:hover .fa-instagram { color: #bc2a8d; }
.social-icon:hover .fa-tiktok { color: #25F4EE; }

.iconanimate1{
	position: absolute;
	bottom: -50px;
	right: 50px;
	width: 150px; 
    height: 150px; 
    animation: small-movement 2s infinite ease-in-out;
}

@keyframes small-movement {
      0% {
        transform: translateY(0); /* Start position */
      }
      50% {
        transform: translateY(-10px); /* Moves up slightly */
      }
      100% {
        transform: translateY(0); /* Returns to start */
      }
    }

/* Category section */

#category{
	padding: 50px 0;
	 background-image: url('../images/category-bg.jpg'); 
  background-size: cover; 
  background-position: center center; 
  background-repeat: no-repeat;
}

#category .description{
	font-size: 18px;
	margin: auto;
	padding-top: 30px;
}
	
	.rounded-box {
      border-radius: 15px;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 300px;
	  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.75);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      color: white;
      position: relative;
      overflow: hidden;
    }
    .rounded-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
		color: #fab236;
    }
    .rounded-box::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0);
      z-index: 1;
    }
    .rounded-box span {
      position: relative;
      z-index: 2;
      font-size: 20px;
      font-weight: bold;
		transition: all 0.3s ease;
    }

 a {
      text-decoration: none;
    }

#category .categoryname{
	margin-top: 20px;
	text-align: center;
	font-size: 20px;
	font-weight: normal;
}

#category .btn{
	display: flex;
    justify-content: center;
    align-items: center;
	margin-top: 20px;
	text-align: center;
}

#category .aboutcntwrap{
	position: relative;
	width: 100%;
	height: auto;
}

#category .abouheading{
	position: absolute;
	top: -80px;
	left: -50px;
	width: 100%;
	height: auto;
	font-size: 36px;
	color: #195148;
}

#category .abouttext{
	margin-left: 50px;
	margin-top: 150px;
}

.abouheading span{
	font-weight: bold;color: #000;
}

.aboutcntwrap .aboutmorebtn{
 margin-left: 50px;
	margin-top: 30px;
}

/* End Category section */

/* Latest Products */

#latestproducts{
	padding: 50px 0 0 0;
	background-image: url('../images/product-bg.jpg'); 
  background-size: cover; 
  background-position: center center; 
  background-repeat: no-repeat;
}

#latestproducts .description{
	font-size: 18px;
	padding-top: 30px;
}


/* Main container for the carousel */
    .swiper-container {
		position: relative;
      width: 100%;
      height: 700px;
      padding: 20px;
      overflow: hidden; 
		padding-bottom: 100px;
    }

    /* Swiper wrapper */
     .swiper-container .swiper-wrapper {
      display: flex;
    }

    /* Each slide */
    .swiper-container .swiper-slide {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 10px;
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      position: relative;
      overflow: hidden;
      margin-top: 30px; 
    }

    /* Hover Effect */
    .swiper-container .swiper-slide:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    /* Image style */
     .swiper-container .swiper-slide img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
		 transition: transform 0.3s ease;
    }

.sales-label {
      position: absolute;
      top: 40px;
      left: 20px;
      background-color: #f44336;
      color: white;
      padding: 5px 10px;
      font-size: 0.9em;
      font-weight: bold;
      border-radius: 5px;
      z-index: 10;
    }

    /* Title and description */
     .swiper-container h3 {
      font-size: 18px;
      margin-top: 30px;
		 text-align: center;
    }

    .swiper-container  p {
      font-size: 16px;
      color: #fab236;
      text-align: center;
    }



 .swiper-container .swiper-pagination {
  position: absolute;
  bottom:  20px !important; 
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 10;
	
}

 .swiper-container .swiper-pagination-bullet {
background: #195148 !important;	
	width: 20px;
	height: 20px;
}

/* Navigation buttons styling */
 .swiper-container .swiper-button-next,
 .swiper-container .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #195148;
  padding: 10px;
  cursor: pointer;
}

 .swiper-container .swiper-button-next {
  right: 10px;
	top: 50px;
}

 .swiper-container .swiper-button-prev {
  left: 1000px;
	top: 50px;
}


/* End Latest products */

/* By Season */

#buyseasons{
	padding: 50px 0 0 0;
	background-image: url('../images/category-bg.jpg'); 
  background-size: cover; 
  background-position: center center; 
  background-repeat: no-repeat;
}

#buyseasons .description{
	font-size: 18px;
	padding-top: 30px;
}

/* End by season */

/* Brands */

#brands {
  margin: auto;
  max-width: 1600px;
  padding: 10px 0;
}

#brands .swiper-container {
  width: 100%;
  padding: 20px 0;
  height: 150px;
  overflow: hidden; 
	padding-bottom: 0px;
}
#brands .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border-radius: 10px;
  padding: 20px;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: none;
  overflow: hidden;
}
#brands .swiper-slide img {
  max-width: 100%;
  height: auto;
  border-radius: 0px;
	transition: transform 0.3s ease;
}

/* End brands */

/* Footer */

footer {
	padding: 150px 0 80px 0;
	 background-image: url('../images/footerbg.png'); 
  background-size: cover; 
  background-position: top center; 
  background-repeat: no-repeat;
}

footer h5{
	
}

footer h5 {
    position: relative;
    display: inline-block; 
    font-weight: bold; 
    margin-bottom: 1rem; 
	color: #fab236;
  }

  footer h5::after {
    content: '';
    display: block;
    width: 40px; 
    height: 2px;
    background-color: #f8d210; 
    margin-top: 15px; 
    border-radius: 3px;
  }

footer .footer-about p{
	font-size: 16px;
	line-height: 24px;
}

.footeraboutwrap {
      display: flex;
      align-items: center; 
      justify-content: space-between; 
      gap: 20px; 
      padding: 0px; 
    }

   .footeraboutwrap .image {
      flex: 0 0 auto; 
    }

   .footeraboutwrap .image img {
      max-width: 100%; 
      height: auto;
    }

    .footeraboutwrap .content {
      flex: 1; 
    }

footer .footer-links a{
	line-height: 30px;
}

footer .footer-contact a{
	line-height: 30px;
	color: #fff;
}
 footer .footer-contact li > a:after {
    content: ' ';
}

/* End Footer */

/* blank page */
#pagebody {
  margin: auto;
  max-width: 1600px;
  padding: 80px 0;
}

#main-breadcrumb{
  margin: auto;
  max-width: 1600px;
  padding: 100px 0 20px 0px;
}

.headerwrap-other{
	width: 100%;
	height: 370px;
	/* background-image: url('../images/main-bg-other.jpg'); 
  background-size: cover; 
  background-position: center center; 
  background-repeat: no-repeat;*/
  background-color: #195148;
}

.social-links-next{
  display: inline-block ;
}

/* Responsive section */

/* 1400 */
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1140px;  /* 1320px */
    }
}

/* 1200 */
@media (max-width: 1199px) {
  #main-slider .owl-carousel .item {
    height: 690px;
}
}

/* 1024 */
@media (max-width: 1024px) {
  
  .slider-text h2{
    font-size: 60px;
    color: #fab236;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  }

  .slider-text h3{
    font-size: 40px;
    color: #000;
    font-weight: bold;
  }


 
}


/* 992 */
@media (max-width: 991px) {

  #main-slider .slider-text {
    margin:400px 0 0 100px;
    /* text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); */
}

#main-slider {
  position: relative;
  width: 100%;
  height: 1250px; /*  */
}

#main-slider .owl-carousel .item {
  height: 1200px;  /* Full viewport height */ /* 100vh */
  display: flex;
  justify-content: center;
  align-items: center;
}

#main-slider .owl-carousel .item img {
  max-height: 450px;
}

#category .abouttext {
  margin-left: 10px;
  margin-top: 150px;
}

#category .abouheading {
  position: absolute;
  top: -80px;
  left: 10px;
  width: 100%;
  height: auto;
  font-size: 36px;
  color: #195148;
}

}

/* 991 */
@media all and (max-width : 991px) {

  footer {
    padding: 150px 0 80px 0;
}

}

/* 768 */
@media (max-width: 768px) {
    .swiper-container .swiper-container {
        padding: 10px;
    }
    footer {
      padding: 190px 0 80px 0;
  }
}

/* 600 */
@media (max-width: 600px) {

  #main-slider .slider-text {
    margin:250px 0 0 100px;
    /* text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); */
}

  .swiper-container .swiper-slide {
    width: 100% !important;
  }
}


/* 576 */
@media (max-width: 576px) {
  
  .slider-text h2{
    font-size: 48px;
    color: #fab236;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  }

  .slider-text h3{
    font-size: 32px;
    color: #000;
    font-weight: bold;
  }

  #main-slider .slider-text {
    margin:250px 0 0 50px;
    /* text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); */
}

#main-slider {
  position: relative;
  width: 100%;
  height: 900px; /*  */
}

#main-slider .owl-carousel .item {
  height: 900px;  /* Full viewport height */ /* 100vh */
  display: flex;
  justify-content: center;
  align-items: center;
}

#main-slider .owl-carousel .item img {
  max-height: 330px;
}

.headerwrap{
	width: 100%;
	height: 800px;
	 background-image: url('../images/main-bg.jpg'); 
  background-size: cover; 
  background-position: -300px center; 
  background-repeat: no-repeat;
}

header .logo {
  position: absolute;
  top: 0px;
  left: 0;
  width: 150px;
  height: 150px;
}

 
}

/* 500 */
@media (max-width: 500px) {
    header .logo {
        position: absolute;
        top: 20px;
        left: 0;
        width: 150px;
        height: 150px;
    }

    .social-links-next{
      display: none !important;
    }

}


/* 379 */
@media (max-width: 379px) {

  .hide-on-375 {
    display: none !important;
  }

    header .logo {
        position: absolute;
        top: -30px;
        left: 0;
        width: 150px;
        height: 150px;
    }
}


/* 330  */

@media all and (max-width : 330px) {

}



/* Woocommerce styles */

.custom-product {
  margin-bottom: 20px;
}

.product-image img {
  width: 100%;
  height: auto;
}

.product-title {
  font-size: 24px;
  margin-top: 20px;
  color: #195148 !important;
}

.product-title a{
  color: #195148 !important;
}

.product-price {
  font-size: 18px;
  color: #333;
}

.add-to-cart-button {
  margin-top: 20px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button{
  background-color: #195148 !important;
  color: #fff !important;
  padding: 20px 20px !important;
}


.posted_in a {
  color: #195148 !important;
  text-decoration: none;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt{
  background-color: #195148 !important;
  color: #fff !important;
}

.wc-block-components-button:not(.is-link) {
  background: #195148 !important;
  color: #fff !important;
}

.wc-block-grid__product-title {
  color: #195148 !important;
}


/* Navbar styles */

.hazel-nav {
  position: relative;
  z-index: 99;
  display: block;
}

.hazel-nav ul,
.hazel-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hazel-nav a {
  text-decoration: none;
}

.lfh-mobile-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: #195148;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
}

.lfh-menu-root {
  display: flex;
  align-items: stretch;
  background: #195148;
  border-radius: 10px;
}

.lfh-menu-item {
  position: relative;
}

.lfh-menu-link {
  display: block;
  color: #fff;
  padding: 16px 20px;
  font-size: 14px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lfh-menu-item:hover > .lfh-menu-link,
.lfh-menu-item:focus-within > .lfh-menu-link,
.lfh-menu-item.is-open > .lfh-menu-link {
  background: #1f665b;
  color: #fab236;
}

.lfh-submenu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.lfh-submenu {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 230px;
  background: #2f6f62;
  border: 1px solid rgba(250, 178, 54, 0.15);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lfh-submenu .lfh-menu-link {
  padding: 12px 16px;
}

.lfh-submenu .lfh-menu-item + .lfh-menu-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lfh-submenu--depth-2 {
  top: 0;
  left: calc(100% - 6px);
}

.lfh-menu-item:hover > .lfh-submenu,
.lfh-menu-item:focus-within > .lfh-submenu,
.lfh-menu-item.is-open > .lfh-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 950px) {
  header .navwrap .hazel-nav {
    display: block;
    width: 100%;
  }

  .lfh-mobile-toggle {
    display: flex;
    margin-left: auto;
    width: max-content;
  }

  .lfh-menu-root {
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #195148;
    border-radius: 12px;
    margin-top: 10px;
    overflow: hidden;
  }

  .hazel-nav.is-open .lfh-menu-root {
    display: flex;
  }

  .lfh-menu-link {
    padding: 14px 16px;
  }

  .lfh-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .lfh-menu-item:last-child {
    border-bottom: 0;
  }

  .lfh-menu-item-has-children {
    display: grid;
    grid-template-columns: 1fr 46px;
    align-items: center;
  }

  .lfh-menu-item-has-children > .lfh-menu-link {
    grid-column: 1;
    grid-row: 1;
  }

  .lfh-submenu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    grid-column: 2;
    grid-row: 1;
    height: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .lfh-submenu-toggle i {
    transition: transform 0.2s ease;
  }

  .lfh-menu-item.is-open > .lfh-submenu-toggle i {
    transform: rotate(180deg);
  }

  .lfh-submenu,
  .lfh-submenu--depth-2 {
    position: static;
    top: auto;
    left: auto;
    min-width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    background: #3a7b6e;
  }

  .lfh-menu-item.is-open > .lfh-submenu {
    max-height: 1000px;
  }

  .lfh-submenu .lfh-menu-link {
    padding-left: 26px;
  }

  .lfh-submenu .lfh-submenu .lfh-menu-link {
    padding-left: 36px;
  }
}


/* Modern WooCommerce Select Styles */
.woocommerce select, 
.woocommerce-ordering select, 
.woocommerce .select2-container--default .select2-selection--single {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 12px 40px 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    height: auto;
    line-height: 1.5;
    width: 100%;
    max-width: 100%;
    vertical-align: middle;
}

/* Focus state */
.woocommerce select:focus, 
.woocommerce-ordering select:focus {
    outline: none;
    border-color: var(--woocommerce-theme-color, #a46497);
    box-shadow: 0 0 0 2px rgba(164, 100, 151, 0.1);
}

/* Custom dropdown arrow */
.woocommerce select, 
.woocommerce-ordering select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

/* Hover state */
.woocommerce select:hover, 
.woocommerce-ordering select:hover {
    border-color: #b5b5b5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .woocommerce select, 
    .woocommerce-ordering select {
        padding: 10px 35px 10px 12px;
        font-size: 13px;
    }
}

/* For Select2 dropdowns (if used) */
.woocommerce .select2-container--default .select2-selection--single {
    height: auto;
    padding: 10px 15px;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 8px;
}


/* Modern Quantity Input with Number Spinner */
.woocommerce .quantity .qty {
  width: 100px !important;
  padding: 12px;
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background-color: #fff;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  height: 44px;
  line-height: 1.5;
  margin: 0 5px;
  appearance: auto; /* Keeps the number spinner */
  -moz-appearance: number-input; /* For Firefox */
}

/* Focus state */
.woocommerce .quantity .qty:focus {
  outline: none;
  border-color: var(--woocommerce-theme-color, #a46497);
  box-shadow: 0 0 0 2px rgba(164, 100, 151, 0.1);
}

/* Quantity buttons container */
.woocommerce .quantity {
  display: inline-flex;
  align-items: center;
  position: relative;
}

/* Style the number spinner arrows */
.woocommerce .quantity .qty::-webkit-inner-spin-button {
  opacity: 1;
  width: 24px;
  height: 44px;
  cursor: pointer;
}

/* Quantity buttons */
.woocommerce .quantity .plus,
.woocommerce .quantity .minus {
  width: 36px;
  height: 44px;
  padding: 0;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  color: #555;
  font-size: 16px;
  font-weight: normal;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover state for buttons */
.woocommerce .quantity .plus:hover,
.woocommerce .quantity .minus:hover {
  background: #f0f0f0;
  color: var(--woocommerce-theme-color, #a46497);
}

/* Focus state for buttons */
.woocommerce .quantity .plus:focus,
.woocommerce .quantity .minus:focus {
  outline: none;
  border-color: var(--woocommerce-theme-color, #a46497);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .woocommerce .quantity .qty {
      width: 70px;
      padding: 10px;
      height: 40px;
  }
  
  .woocommerce .quantity .plus,
  .woocommerce .quantity .minus {
      width: 32px;
      height: 40px;
  }
  
  .woocommerce .quantity .qty::-webkit-inner-spin-button {
      height: 40px;
  }
}

/* For Firefox - ensure spinner remains visible */
@-moz-document url-prefix() {
  .woocommerce .quantity .qty {
      padding-right: 12px;
  }
}


/* Modern WooCommerce Filters Sidebar */
/* Modern WooCommerce Filters Sidebar - Light Version */
.shop-filters {
    background: #f9f8f5 !important; /* Very light warm gray */
    padding: 25px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Category Levels Styling */
.shop-filters ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.shop-filters ul li {
    margin-bottom: 8px !important;
    position: relative;
}

/* Base Link Style */
.shop-filters ul li a {
    display: block !important;
    padding: 8px 15px !important;
    color: #555 !important;
    text-decoration: none !important;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    width: 100%;
    border-bottom: 1px solid #dcd8c7
}

/* Level 0 (Root Categories) */
.shop-filters ul li.level-0 > a {
    padding-left: 15px !important;
    font-weight: 600;
    color: #195148 !important;
    background: rgba(25, 81, 72, 0.05);
    border-left: 2px solid #195148;
}

/* Level 1 (First Child) */
.shop-filters ul li.level-1 > a {
    padding-left: 25px !important;
    border-left: 2px solid rgba(25, 81, 72, 0.3);
    margin-left: 10px;
}

/* Level 2 (Second Child) */
.shop-filters ul li.level-2 > a {
    padding-left: 35px !important;
    border-left: 2px solid rgba(25, 81, 72, 0.2);
    margin-left: 20px;
}

/* Level 3+ (Nested Children) */
.shop-filters ul li.level-3 > a {
    padding-left: 45px !important;
    border-left: 2px solid rgba(25, 81, 72, 0.1);
    margin-left: 30px;
}

/* Active/Hover States */
.shop-filters ul li a:hover {
    background: rgba(25, 81, 72, 0.03) !important;
    color: #195148 !important;
}

.shop-filters ul li a.active,
.shop-filters ul li.current-cat > a {
    background: rgba(25, 81, 72, 0.08) !important;
    color: #195148 !important;
    font-weight: 500;
}

/* Count Styling */
.shop-filters .count {
    float: right !important;
    color: #999 !important;
    font-weight: normal !important;
    font-size: 0.85rem;
}

/* Parent Category Indicators */
.shop-filters li.parent-category > a:after {
    content: "›";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(25, 81, 72, 0.5);
    font-size: 1.1rem;
}

.shop-filters li.parent-category.active > a:after {
    content: "⌄";
}

/* Child Lists */
.shop-filters ul.children {
    margin-top: 5px;
    transition: all 0.3s ease;
}

/* Make the indentation more subtle on mobile */
@media (max-width: 768px) {
    .shop-filters ul li.level-1 > a {
        padding-left: 20px !important;
        margin-left: 5px;
    }
    
    .shop-filters ul li.level-2 > a {
        padding-left: 25px !important;
        margin-left: 10px;
    }
    
    .shop-filters ul li.level-3 > a {
        padding-left: 30px !important;
        margin-left: 15px;
    }
}