* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;

}

h2 {
  font-size: 24px;
  font-weight: 600 !important;
  font-family: "Poppins", sans-serif;

}

body {
  /*font-family: "Montserrat", sans-serif;*/
  font-family: "Poppins", sans-serif !important;
  overflow-x: hidden;
  transition: 3s ease-in-out;
}

/* @font-face {
  font-family: 'MyCustomFont';
  src: url('/font/helvetica/helvetica-light-587ebe5a59211.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
} */
a {
  text-decoration: none;
}

p {
  font-size: 14px;
}

img {
  max-width: 100%;
}

.ttm-topbar-wrapper {
  background: #629d23;
}

.ttm-topbar-content {
  font-family: "Poppins", sans-serif;
  padding-top: 10px;
}

.navbar-light .navbar-nav .nav-link {
  font-family: "Poppins", sans-serif;
  padding-right: 20px;
  padding-left: 20px;
}


.navbar-nav .nav-link {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  right: 100%;
  /* start from right */
  bottom: -15px;
  width: 0;
  height: 2px;
  background-color: var(--nav-underline-color, #629d23);
  /* Default green */
  transition: all 0.4s ease;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
  color: #629d23 !important;
}

.navbar-nav .nav-link:hover::after {
  right: 0;
  width: 100%;
}

.nav-bar {
  line-height: 0;
  /*padding: 1rem 0;*/
}

.banner-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.slick-banner-slider img {
  position: relative;
  width: 100%;
  display: block;
}

/* Arrows */
.custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  background: transparent;
  border: none;
  font-size: 2.5rem;
  color: white;
  opacity: 0.6;
  transition: 0.3s ease;
}

.custom-arrow:hover {
  opacity: 1;
}

.slick-prev {
  left: 15px;
}

.slick-next {
  right: 15px;
}

/* Dots like your image */
.slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  gap: 8px;
}

.slick-dots li {
  list-style: none;
}

.slick-dots button {
  background-color: white;
  border: none;
  opacity: 0.4;
  width: 30px;
  height: 3px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.slick-dots .slick-active button {
  opacity: 1;
}

.custom-arrow span {
  font-size: 2.5rem;
  color: rgb(0, 0, 0);
  line-height: 1;
  display: inline-block;
}

button.slick-next.custom-arrow.slick-arrow {
  background-color: rgb(255, 255, 255);
  width: 3%;
  position: absolute;
  right: 0%;
  z-index: 999;
  height: 50px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

button.slick-prev.custom-arrow.slick-arrow {
  background-color: rgb(255, 255, 255);
  width: 3%;
  position: absolute;
  left: 0%;
  z-index: 999;
  height: 50px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.slick-next:before {
  content: none !important;
}

.slick-prev:before {
  content: none !important;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.product-card a {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.product-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.product-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  transition: 0.3s ease;
  flex-direction: column;
}

/* Text styling */
.overlay h5 {
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  margin: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

/* Arrow styling */
.arrow-icon {
  position: absolute;
  left: -50px;
  /* Start off screen */
  top: 50%;
  transform: translateY(-50%);
  background: #629d23;
  color: rgb(255, 255, 255);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 14px;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}

/* Hover Effects */
.product-card:hover .overlay h5 {
  opacity: 0;
  transform: translateY(-10px);
}

.product-card:hover .arrow-icon {
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.slick-product-slider .product-card {
  margin: 0 10px;
  /* horizontal spacing between slides */
}

.img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  /* standard product image ratio */
}

.img-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.buy-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.3s ease-in-out;
  /* border-radius: 12px; */

}

.img-wrapper:hover .buy-overlay {
  opacity: 1;
}

.buy-card-slider .slick-slide {
  padding: 0 10px;
  /* Horizontal spacing between cards */

}

.mens-card-slider .slick-slide {
  padding: 0 12px;
  /* Horizontal gap between cards */

}

/* FADE-IN ONCE SLICK IS INITIALIZED */
.buy-card-slider {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;

}

.buy-card-slider.slick-initialized {
  opacity: 1;
  visibility: visible;

}

.viewmore {
  --primary-color: #bed062;
  --secondary-color: #000000;
  --hover-color: #ffffff;
  --arrow-width: 10px;
  --arrow-stroke: 2px;
  border: 0;
  border-radius: 20px;
  color: rgb(255, 255, 255);
  padding: 8px 21px;
  background: var(--primary-color);
  font-weight: bold;

  font-size: 12px;
  font-family: "Poppins", sans-serif !important;
  transition: 0.6s ease-in-out;
}

.viewmore:hover {
  background-color: #fff;
  color: black;
}


.by-btn {
  background: #629d23;
  font-size: 11px;
  color: white;
  font-family: "Poppins", sans-serif !important;
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
  z-index: 1 !important;
}

.by-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  font-size: 11px;
  width: 100%;
  background: linear-gradient(90deg, #629d23 0%, #7bbf39 100%);
  transition: all 0.4s ease;
  z-index: -1 !important;
}

.by-btn:hover::before {
  left: 0;
}

.by-btn:hover {
  color: #fff;
}

.by-btn {
  position: relative;
  z-index: 2;
}

.by-btn span,
.by-btn i {
  position: relative;
  z-index: 2;
}

.buy-card {
  height: 100% !important;
  border-radius: 12px;
  overflow: hidden;

}

.card-title {
  font-size: 14px;
}

.main-card {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.hot-deals {
  padding-top: 60px !important;
}

.section-title {
  font-weight: 600;
  font-family: "Poppins", sans-serif !important;


}

.flicker-text {
  font-weight: bold;
  color: rgb(98, 157, 35);
  animation: flicker-green 2.5s infinite alternate;
  text-shadow:
    0 0 3px rgba(98, 157, 35, 0.5),
    0 0 6px rgba(98, 157, 35, 0.4),
    0 0 9px rgba(98, 157, 35, 0.3);
}

@keyframes flicker-green {
  0% {
    opacity: 1;
    text-shadow:
      0 0 3px rgba(98, 157, 35, 0.5),
      0 0 6px rgba(98, 157, 35, 0.4),
      0 0 9px rgba(98, 157, 35, 0.3);
  }

  50% {
    opacity: 0.7;
    text-shadow:
      0 0 1px rgba(98, 157, 35, 0.2);
  }

  100% {
    opacity: 1;
    text-shadow:
      0 0 3px rgba(98, 157, 35, 0.5),
      0 0 6px rgba(98, 157, 35, 0.4),
      0 0 9px rgba(98, 157, 35, 0.3);
  }
}

.slick-collections {
  margin: 40px auto;
  padding: 0 20px;
}

.slick-collections .collection-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.slick-collections .collection-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.collection-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  transition: background 0.4s ease;
}

.collection-content h5 {
  font-size: 14px;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
}

.collection-content h3 {
  font-size: 20px;
  margin: 8px 0 20px;
  font-weight: bold;
}

.collection-content a {
  border: 2px solid #fff;
  padding: 8px 18px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.collection-content a:hover {
  background-color: white;
  color: black;
}

.collection-item:hover img {
  transform: scale(1.08);
}

.collection-item:hover .collection-content {
  background: rgba(0, 0, 0, 0.6);
}

.slick-collections .col-md-4 {
  padding: 0 10px;
  /* 10px gap on left and right */
}

.new-b-rs {
  /*background-image: url(../images/b-ne.png);*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background: #ccc;
}

.point h6 {
  font-size: 15px;
  color: #404040 !important;
}

.point p {
  font-size: 12px;
  text-align: center;
}

.review-card {
  background-color: #fff !important;
  color: #111;
  border: none;
  margin: 0 10px;
  border-radius: 12px;
  /*min-height: 250px !important;*/
  /*max-height: 250px;*/
  overflow: visible;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: scale(1.03);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.review-card img {
  height: 100px;
  object-fit: cover;
  width: 100%;
  border-bottom: 2px solid #eee;
}

.review-card .card-body {
  padding: 15px;
  text-align: center;
}

.review-card .stars {
  color: #28a745;
  font-size: 18px;
  margin-bottom: 5px;
  text-align: left !important;
}

.review-card h6 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: left !important;
}

.review-card p {
  font-size: 11px;
  color: #333;
  line-height: 1.4;
  max-height: 50px;
  overflow: hidden;
  text-align: left !important;
}

.storiy-slider {
  margin: 0 -10px;
}

.footer-main {
  background-image: linear-gradient(135deg, #95b494 0%, #709184 100%);


}

.newsletter-wrapper {
  margin-top: -40px;
  z-index: 10;
  position: relative;
}

.footer-clean {
  background: linear-gradient(to top, #7ca08d, #90ae98);
}

.footer-line {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  width: 100%;
  max-width: 100%;
}

.footer-clean a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-clean a:hover {
  color: #fff;
  text-decoration: underline;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* 🎨 Background Colors */
.bg-facebook {
  background-color: #1877f2;
}

/* Official Facebook Blue */
.bg-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* Insta gradient */
.bg-twitter {
  background-color: #1da1f2;
}

/* Official Twitter Blue */
.bg-youtube {
  background-color: #ff0000;
}

/* Official YouTube Red */

/* 💥 Hover Effect */
.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: white;
}

.bg-warr-pe {
  padding: 42px;
  border-radius: 10px !important;
}

.nav-underline-green {
  position: relative;
  display: inline-block;
}

.nav-underline-green::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.nav-underline-green:hover::after {
  width: 100%;
}

button.slick-prev-one.custom-arrow.slick-arrow {
  background-color: #629d23;
  width: 3%;
  position: absolute;
  left: 47%;
  z-index: 999;
  bottom: 0 !important;
  color: white !important;
  height: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  bottom: 100%;
  top: 109%;

}

button.slick-next-one.custom-arrow.slick-arrow {
  background-color: #629d23;
  width: 3%;
  position: absolute;
  left: 50%;
  z-index: 999;
  bottom: 0 !important;
  height: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  bottom: 100%;
  top: 109%;

}

button.slick-prev-one.custom-arrow.slick-arrow span {
  color: white;
  position: absolute;
  top: -1px;
  font-size: 30px;
  left: 7px;
}

button.slick-next-one.custom-arrow.slick-arrow span {
  color: white;
  position: absolute;
  top: -1px;
  font-size: 30px;
  left: 17px;
}

button.slick-next-two.custom-arrow.slick-arrow {
  background-color: #629d23;
  width: 27px;
  position: absolute;
  left: 51%;
  z-index: 999;
  bottom: 0 !important;
  height: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  bottom: 100%;
  top: 109%;
}

button.slick-prev-two.custom-arrow.slick-arrow {
  background-color: #629d23;
  width: 3%;
  position: absolute;
  left: 48%;
  z-index: 999;
  bottom: 0 !important;
  color: white !important;
  height: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  bottom: 100%;
  top: 109%;
}

.main-check {
  color: white !important;
  position: absolute;
  top: -2px;
  font-size: 30px !important;
  left: 8px;
}

button.slick-prev-new.custom-arrow.slick-arrow {
  background-color: #ffffff;
  width: 3%;
  position: absolute;
  z-index: 999;
  bottom: 0 !important;
  color: white !important;
  height: 50px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  bottom: 100%;

}

button.slick-prev-new.custom-arrow.slick-arrow span {
  color: rgb(0, 0, 0) !important;
  top: 4px;
  right: 14px;
  position: absolute;
}

button.slick-next-new.custom-arrow.slick-arrow span {
  color: rgb(0, 0, 0) !important;
  top: 4px;
  right: 14px;
  position: absolute;
}

button.slick-next-new.custom-arrow.slick-arrow {
  background-color: #ffffff;
  width: 3%;
  position: absolute;
  right: 0;
  z-index: 999;
  bottom: 0 !important;
  color: white !important;
  height: 50px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  bottom: 100%;
}

#universal-search-bar {
  display: none;
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* When active */

.color-wrapper {
  position: fixed;
  top: 41%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;

}

.color-toggle {
  background: #fff;
  padding: 5px;
  border-radius: 50% 0 0 50%;
  cursor: pointer;
  border: 1px solid #629d23;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

}

.color-toggle img {
  width: 36px;
  animation: spin 10s linear infinite;

}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.color-palette {
  background: #111;
  color: #fff;
  padding: 10px;
  width: 150px;
  border-radius: 0 6px 6px 0;
  display: none;
  flex-direction: column;
  transition: left 0.5s ease-in-out;
}

.color-slide-box {
  position: fixed;
  top: 126px;
  right: -200px;
  /* initially hidden */
  width: 160px;
  height: 40vh;
  background: #f8f9fa;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
  /* ✅ smooth transition */
  z-index: 9998;
  padding: 15px;
  border-radius: 10px 0 0 10px;
}

/* Slide in on active */
.color-slide-box.active {
  right: 0;
  /* box slides in */
}


.color-palette h6 {
  font-size: 14px;
  margin-bottom: 10px;
  text-align: center;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.color-grid span {
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s;
}

.color-grid span:hover {
  transform: scale(1.1);
  border-color: #fff;
}


@media (max-width:576px) {
  .nav {
    display: flow !important;
    flex-wrap: wrap !important;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
  }
}

.btn1 {
  width: 100%;
  background-color: #629D23;
  border: none;
  outline: none;
  padding: 0.5rem 0.5rem;
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.product_con p {
  text-align: justify;
}

.checkout-box {
  background-color: #e2e8f0;
  padding: 25px;
  border-radius: 5px;
}

.order-summary {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #dee2e6;
  border-radius: 5px;
}

.payment-btn {
  background-color: #28a745;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 4px;
}

.payment-btn:hover {
  background-color: #218838;
  color: white;
}

.card-icons img {
  width: 40px;
  margin: 10px 5px 0;
}

.coupon_apply {
  display: inline-block;
  padding: 0.2rem 2.5rem;
  margin-bottom: 1.5rem;
}


.order-card {
  background-color: #ccc;
  border-radius: 8px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
  margin-top: 30px;
}

.product-img {
  width: 100px;
  height: auto;
  border-radius: 5px;
}

.invoice-btn {
  font-size: 20px;
  color: #fff;
  background-color: #222;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
}

.invoice-btn:hover {
  background-color: #444;
}

.text-orange {
  color: #cc6d1f;
}

/* ================= footer */

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.global_condition h2 {
  color: #2e7d32;
  margin: 0;
  font-size: 26px !important;
  padding-bottom: 0.5rem;
}

.global_condition h4 {
  margin: 0 !important;
  padding-bottom: 1.2rem !important;
  font-size: 20px !important;
}

.global_bottom h3 {
  font-size: 23px !important;
  margin: 0 !important;
  color: #28a745 !important;
}

.global_bottom p {
  color: #000 !important;
  font-size: 16px !important;
  text-align: justify !important;
}

.zoom-container img {
  height: 522px;
  width: 522px;
}


@media(max-width:576px) {
  .zoom-container img {
    height: auto;
    width: 100%;
  }

}

.profile_1 {
  margin-top: 3rem !important;
  width: 600px;
  margin: 0 auto;
  background: #ccc;
  padding: 1rem;
}