:root {
  --color-beige: #f2e5d5;
  --color-bronze: #ddbea9;
  --color-olive: #8ea48b;
  --color-brownish: #d9e4d7;
  --color-green : #477023;
  --color-greenwhite : #98c9ae;
}

/* line */
.line {
  width: 90px !important;
  height: 1px;
  background-color: var(--color-green);
  border-radius: 2px; 
}

/*  */
body,
section,.ast-woo-sidebar-widget,.ast-woocommerce-container,.woocommerce-product-gallery,.ast-article-single,.ast-grid-common-col,.ast-row,.ast-separate-container .ast-article-single:not(.ast-related-post), .woocommerce.ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content, .ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .ast-archive-description, .ast-separate-container .comments-area .comment-respond, .ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .comments-area .comments-title{
  background: #fffff0!important;
}
.site-header {
  position: relative;
  transition: all 0.4s ease-in-out;
  transform: translateY(-10px); 
}
.site-header:hover {
  background-color: #98c9ae !important;
  transform: translateY(0); 
}

.hover-a {
  color: #000;
}

.hover-a:hover {
  color: var(--color-green);
}

.swiper {
  width: 100%;
  height: 300px;
}

.swiper-slide {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;


}

.herosection {
  height: 600px !important;
  cursor: grab;
}

.herosection:active {
  cursor: grabbing;
}


@media (max-width: 575.98px) {
  .herosection {
    height: 300px !important;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .herosection {
    height: 400px !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .herosection {
    height: 500px !important;

  }
}

@media (min-width: 992px) {
  .herosection {
    height: 700px !important;
  }
}

.heroslide {
  background-size: cover;
  background-position: center;
  height: 750px;
}

/* images */
@media (max-width: 575.98px) {
  .heroslide {
    height: 300px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .heroslide {
    height: 400px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .heroslide {
    height: 500px;
  }
}

@media (min-width: 992px) {
  .heroslide {
    height: 700px;
  }
}

/* end */
.swiper-button-prev,
.swiper-button-next {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  background: var(--color-olive);
  color: #000 !important;
  transition: all 0.3s ease;
    border: 1px solid #000 !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 10px !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  width: 46px !important;
  height: 46px !important;
  border: 1px solid #000 !important;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-bronze) !important;
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background-color: var(--color-beige) !important;
  opacity: 1 !important;
  margin: 0 6px !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
    border: 1px solid #000 !important;
}

.swiper-pagination-bullet-active {
  width: 30px !important;
  height: 10px !important;
  border: 1px solid #000 !important;
  background-color: var(--color-olive) !important;
  border-radius: 5px !important;
}

@media (max-width: 768px) {

  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}

/* botton btn1 */
.btn1 {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: auto !important;
  padding: 5px 30px !important;
  border: 1px solid #000;
  border-radius: 15px;
  text-decoration: none;
  color: #000;
  background: #ffffff;
  transition: all 0.3s ease-in-out;
}

.btn1::after {
  content: '';
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  transition: bottom 0.3s ease-in-out;
  z-index: 0;
  color: #000;
}

.btn1:hover::after {
  bottom: 0;
  color: #000 !important;
}
h1,h2{
  color:  var(--color-green) !important ;
}
.btn1 span,
.btn1 i {
  position: relative;
  z-index: 1;
}
a:hover {
  color: var(--color-green) !important;
  text-decoration: none;
}
/* loader */
#loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fffff0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader .circle {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 5px solid transparent;
  border-top-color: var(--color-green);
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

#loader .circle2 {
  width: 80px;
  height: 80px;
  border: 5px solid transparent;
  border-bottom-color: var(--color-greenwhite);
  animation: spin-reverse 2s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

/* category img */
.category-img-wrapper {
  text-align: center;
  margin: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-img-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(35, 67, 31, 0.349);
}

.category-img {
  height: 250px !important;
  width: 250px !important;
  object-fit: cover;
  /* border: 0.5px solid #000; */
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.category-img-wrapper p {
  margin-top: 10px;
  font-weight: bold;
  text-transform: capitalize;
  font-family: sans-serif;
}

/* end  */
/* cmnt */
.cart-cmnt {
  width: 100%;
  height: auto;
  background: transparent;
  border: 1px solid #000;
  border-radius: 10px;
  color: #000;
  padding: 10px 20px;

}

.cart-cmnt:hover {
  width: 100%;
  height: auto;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #000;
  border-radius: 10px;
  color: #000;
  padding: 10px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/*  */
/* section 3  */

/* Section style */
.custom-section {
  background-color: #fdfdfd;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

/* Image initially centered */
.image-content {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.6s ease-in-out;
}

.main-image {
  max-width: 80%;
  transition: all 0.6s ease-in-out;
}

/* Text content hidden initially */
.text-content {
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s ease-in-out;
  visibility: hidden;
}

/* Activated classes (on hover via JS) */
.custom-section.active .main-image {
  transform: translateX(-50px);
}

.custom-section.active .text-content {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

/* Mobile: show content normally */
@media (max-width: 768px) {
  .text-content {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    text-align: center;
    margin-top: 2rem;
  }

  .main-image {
    transform: none !important;
    max-width: 100%;
  }
}

/* zoom out image */

/* checkout-button button alt wc-forward */
.checkout-button button,
.alt,
.wc-forward {
padding: 15px 30px !important;
  border: 1px solid #000!important;
  border-radius: 15px!important;
  text-decoration: none!important;
  color: #000!important;
  background:#ffffff!important;
  transition: all 0.3s ease-in-out!important;
  cursor: pointer!important;
}

.checkout-button button:hover,
.alt:hover,
.wc-forward:hover {
  background-color: var(--color-greenwhite) !important;
  color: var(--color-green) !important;
}



/* cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
}

.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #000;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}

.image-box {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
  }

  .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .image-box:hover img {
    transform: scale(1.1);
    /* Zoom In */
  }

  .image-text {
    position: absolute;
    top: 70%;
    left: 2%;

    color: white;
    font-size: 1rem;
    z-index: 2;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    margin: 0;
  }
@media (max-width: 768px) {
  .custom-cursor,.custom-cursor-dot{
    display: none !important;
  }
  .woocommerce-ordering {
    text-align: left !important;
    margin-left: 0 !important;
    display: none !important;
  }

  .woocommerce-ordering select {
    display: inline-block;
  }
 
}

