@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

:root {
  /* Primary Colors */
  --primary-color: var(--green);
  --green: #39ff14;
  --dark-green: #2dd60f;
  --neon-green: #39ff14;

  /* Neutral Colors */
  --black: #000000;
  --dark-bg: #0a0a0a;
  --darker-gray: #1a1a1a;
  --dark-gray: #2a2a2a;
  --medium-gray: #666666;
  --light-gray: #999999;
  --lighter-gray: #cccccc;
  --white: #ffffff;

  /* Accent Colors */
  --light-black: rgba(0, 0, 0, 0.89);
  --accent-red: #ff3333;
  --accent-orange: #ffa500;

  /* UI Colors */
  --border-color: #333333;
  --hover-bg: rgba(57, 255, 20, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.3);
}

.top-txt {
  background-color: var(--green);
}

.head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
  padding: 10px 0;
  font-size: 14px;
}

.head a {
  text-decoration: none;
  color: var(--black);
  margin: 0 10px;
  font-weight: 600;
}

.head {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.945);
  padding: 10px 0;
  font-size: 14px;
}

.head a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.945);
  margin: 0 10px;
}

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.navbar {
  box-shadow: 0 5px 4px rgb(146 161 176 / 15%);
  position: sticky;
  top: 0;
  background: var(--green);
  color: var(--black);
  z-index: 100;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.navbar img {
  margin-left: 3rem;
  width: 180px;
  height: auto;
  object-fit: contain;
}

.menu-items {
  order: 2;
  display: flex;
  margin-right: 3rem;
}

.menu-items li {
  list-style: none;
  margin-left: 1.5rem;
  font-size: 1.2rem;
}

.navbar-container ul a {
  text-decoration: none;
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-container ul a:hover {
  color: var(--darker-gray);
}

.navbar-container ul a:after {
  content: "";
  position: absolute;
  background: var(--black);
  height: 3px;
  width: 0;
  left: 0;
  bottom: -10px;
  transition: all 0.3s ease;
}

.navbar-container ul a:hover:after {
  width: 100%;
}

.cart-icon {
  position: relative;
  margin-right: 3rem;
  order: 3;
}

.cart-icon a {
  text-decoration: none;
  color: var(--black);
  font-size: 28px;
  position: relative;
  display: flex;
  align-items: center;
}

.cart-icon a:hover {
  color: var(--white);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--black);
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.logo {
  order: 1;
}

.head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.945);
  padding: 10px 0;
  font-size: 14px;
}

.head-txt {
  flex: 0 1 auto;
}

.sing_in_up {
  margin-left: auto;
}


@media (max-width: 768px) {
  .navbar {
    opacity: 0.95;
  }

  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    position: relative;
    height: 64px;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }

  .navbar-container .hamburger-lines {
    display: block;
    height: 28px;
    width: 35px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #333;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 100px;
    background: #fff;
    height: 100vh;
    max-width: 100%;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    /* margin-left: -40px;
        padding-left: 40px; */
    text-align: center;
    transition: transform 0.5s ease-in-out;
    /* box-shadow: 5px 0px 10px 0px #aaa; */
    overflow: scroll;
  }

  .navbar .menu-items li {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
  }

  .menu-items li,
  .navbar img {
    margin: 0;
  }

  .navbar .menu-items li:nth-child(1) {
    margin-top: 1.5rem;
  }

  .navbar-container .logo img {
    position: absolute;
    top: 10px;
    right: 15px;
    margin-top: 8px;
  }

  .navbar-container input[type="checkbox"]:checked~.menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
    transform: rotate(45deg);
  }

  .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
    transform: rotate(-45deg);
  }

  .navbar-container input[type="checkbox"]:checked~.home_page img {
    display: none;
    background: #fff;
  }
}

@media (max-width: 500px) {
  .navbar-container input[type="checkbox"]:checked~.navbar-container img {
    display: none;
  }

  .home_txt {
    top: 80px;
    left: 20px;
    right: 20px;
    max-width: calc(100% - 40px);
    padding: 20px;
  }

  .home_txt h2 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .home_txt .home_label p {
    font-size: 13px;
  }

  .navbar img {
    width: 140px;
  }
}

.home_page img {
  height: auto;
  width: 100%;
  background-position: center;
  position: relative;
  background-size: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

.home_txt {
  position: absolute;
  top: 100px;
  left: 20px;
  max-width: 600px;
  padding: 30px;

}

.home_txt p {
  color: var(--green);
  font-weight: 700;
  padding-bottom: 20px;
  letter-spacing: 1.5px;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.home_txt h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 3px;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 15px;
}

.home_txt .home_label p {
  color: var(--lighter-gray);
  font-size: 14px;
  padding-top: 10px;
  line-height: 1.6;
}

.home_txt a {
  text-decoration: none;
  color: var(--white);
}

.shop-now-btn {
  background-color: var(--green);
  color: var(--black);
  border: 2px solid var(--black);
  padding: 15px 30px;
  font-size: 14px;
  letter-spacing: 2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.shop-now-btn:hover {
  background-color: var(--black);
  color: var(--green);
  border-color: var(--green);
}

.shop-now-btn .bx-right-arrow-alt {
  font-size: 25px;
  padding-left: 5px;
}

/* Legacy button support - can be removed if not used elsewhere */
.home_txt button {
  background-color: var(--green);
  color: var(--black);
  border: 2px solid var(--black);
  padding: 15px 30px;
  font-size: 14px;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.home_txt button:hover {
  background-color: var(--black);
  color: var(--green);
  border-color: var(--green);
}

.home_txt .bx-right-arrow-alt {
  font-size: 25px;
  padding-left: 5px;
}

.collections {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 65px;
}

.content {
  width: 330px;
  margin: 20px;
  position: relative;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.871);
  z-index: 2;
  opacity: 0;
}

.content:hover::after {
  opacity: 1;
}

.content img {
  width: 100%;
  height: 300px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.img-content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  color: var(--white);
  text-align: center;
  font-size: 2.2rem;
  font-weight: bolder;
  z-index: 5;
  opacity: 0;
}

.img-content p {
  font-size: 1.6rem;
}

.img-content button {
  border: none;
  background-color: var(--green);
  color: var(--white);
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  pointer-events: none;
}

.img-content a {
  text-decoration: none;
  font-size: 1.1rem;
  color: var(--black);
  font-weight: 600;
  transition: 0.3s;
}

.img-content button:hover {
  background: var(--black);
  color: var(--green);
  transform: scale(1.05);
}

.img-content button:hover~.img-content a {
  color: var(--primary-color);
}

.img-content a:hover {
  color: var(--primary-color);
}

.content:hover .img-content {
  opacity: 1;
  top: 50%;
}

.content2 {
  width: 330px;
  margin: 20px;
  position: relative;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.content2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.871);
  z-index: 2;
  opacity: 0;
}

.content2:hover::after {
  opacity: 1;
}

.content2 img {
  width: 100%;
  height: 300px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.img-content2 {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  color: var(--white);
  text-align: center;
  font-size: 2.2rem;
  font-weight: bolder;
  z-index: 5;
  opacity: 0;
}

.img-content2 p {
  font-size: 1.6rem;
}

.img-content2 a {
  text-decoration: none;
  font-size: 1.1rem;
  color: var(--black);
  transition: 0.3s;
}

.img-content2 button {
  border: none;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  pointer-events: none;
}

.img-content2 button:hover {
  background: var(--white);
  color: var(--primary-color);
}

.img-content2 button:hover~.img-content2 a {
  color: var(--primary-color);
}

.img-content2 a:hover {
  color: var(--primary-color);
}

.content2:hover .img-content2 {
  opacity: 1;
  top: 50%;
}

.content3 {
  width: 330px;
  margin: 20px;
  position: relative;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.content3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.871);
  z-index: 2;
  opacity: 0;
}

.content3:hover::after {
  opacity: 1;
}

.content3 img {
  width: 100%;
  height: 300px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.img-content3 {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  color: var(--white);
  text-align: center;
  font-size: 2.2rem;
  font-weight: bolder;
  z-index: 5;
  opacity: 0;
}

.img-content3 p {
  font-size: 1.6rem;
}

.img-content3 a {
  text-decoration: none;
  font-size: 1.2rem;
  color: var(--black);
  transition: 0.3s;
}

.img-content3 button {
  border: none;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  pointer-events: none;
}

.img-content3 button:hover {
  background: var(--white);
  color: var(--primary-color);
}

.img-content3 button:hover~.img-content3 a {
  color: var(--primary-color);
}

.img-content3 a:hover {
  color: var(--primary-color);
}

.content3:hover .img-content3 {
  opacity: 1;
  top: 50%;
}

.content3:hover .img-content3 {
  opacity: 1;
  top: 50%;
}

.best-seller {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.best-seller .red {
  color: var(--primary-color);
  cursor: pointer;
}

.best-seller .blue {
  color: #8989ce;
  cursor: pointer;
}

.best-seller .white {
  color: var(--light-black);
  cursor: pointer;
}

.best-seller .grey {
  color: grey;
  cursor: pointer;
}

.best-seller .brown {
  color: rgb(175, 53, 53);
  cursor: pointer;
}

.best-seller .yellow {
  color: #ffff00;
  cursor: pointer;
}

.best-seller .orange {
  color: #ffa500;
  cursor: pointer;
}

.best-seller .green {
  color: #008000;
  cursor: pointer;
}

.seller h2 {
  margin-top: 65px;
  margin-bottom: 20px;
}

.seller .best-p1 {
  width: 250px;
  height: 370px;
  /* border: 2px solid black; */
}

.seller .best-p1 img {
  height: 250px;
  width: 250px;
  mix-blend-mode: multiply;
  /* max-width: 100%; */
  transition: all 0.3s;
  display: block;
  width: 100%;
  /* height: auto; */
  transform: scale(1);
}

.seller .best-p1 img:hover {
  transform: translate(0%, -10%) scale(1.1);
  border: #000;
}

.seller .best-p1 .price {
  display: flex;
  justify-content: space-between;
}

.seller .best-p1 .price .colors input[type="radio"] {
  color: #000;
  background-color: #000;
}

.best-seller .buy-now a {
  text-decoration: none;
  color: var(--white);
}

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

.best-seller .buy-now button,
.best-seller .add-cart button {
  padding: 10px 15px;
  margin-top: 5px;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  background-color: var(--green);
  color: var(--white);
  border: none;
  border-radius: 15px;
  font-weight: 500;
  border: 1px solid var(--green);
  transition: 0.5s;
}

.best-seller .buy-now button:hover,
.best-seller .add-cart button:hover {
  background-color: var(--black);
  color: var(--green);
  font-weight: 600;
}

.best-seller .buy-now button:hover a,
.best-seller .add-cart button:hover a {
  color: var(--green);
}


.deal_of_week {
  display: flex;
  justify-content: center;
  align-items: center;
}

.deal_of_week .names_of_brand p,
.deal_of_week .names_of_brand h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.deal_of_week .names_of_brand p {
  color: var(--grey);
}

.deal_of_week .countdown span {
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0.8rem 0 0 3rem;
}

.deal_of_week .countdown h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--light-black);
  line-height: 40px;
  margin: 0.8rem 0 0 3rem;
}

.deal_of_week .countdown p {
  margin: 0.8rem 0 0 3rem;
}

.deal_of_week .countdown a {
  text-decoration: none;
  color: var(--white);
  font-weight: 800;
}

.deal_of_week .countdown button {
  margin: 0.8rem 3rem;
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 10px;
  padding: 12px;
  transition: 0.4s;
}

.deal_of_week .countdown button:hover {
  background: var(--white);
  color: var(--primary-color);
}

.deal_of_week .countdown button:hover~.countdown a {
  background: var(--white);
  color: var(--primary-color);
}

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

#news {
  margin-bottom: 250px;
}

.news-heading p {
  text-align: center;
  font-size: 18px;
  color: var(--primary-color);
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 70px;
}

.news-heading h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: var(--light-black);
}

.l-news {
  padding-top: 45px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
}

.l-news img {
  height: 200px;
  width: 300px;
}

.l-news1 {
  position: relative;
  width: 280px;
  height: 230px;
}

.l-news1 .news1-conte {
  position: absolute;
  bottom: -60%;
  left: 7%;
  background: var(--white);
  padding: 25px;
}

.l-news2 {
  position: relative;
  width: 280px;
  height: 230px;
}

.l-news2 .news2-conte {
  position: absolute;
  bottom: -60%;
  left: 7%;
  background: var(--white);
  padding: 25px;
}

.l-news3 {
  position: relative;
  width: 280px;
  height: 230px;
}

.l-news3 .news3-conte {
  position: absolute;
  bottom: -60%;
  left: 7%;
  background: var(--white);
  padding: 25px;
}

.l-news1 .news1-conte .date-news1 p {
  color: var(--light-black);
  text-align: center;
  padding: 15px 0;
}

.l-news1 .news1-conte .date-news1 h4 {
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  padding-bottom: 15px;
}

.l-news1 .news1-conte .date-news1 a {
  text-decoration: none;
  text-align: center;
  padding: 0 50px;
  color: var(--primary-color);
  position: relative;
  font-weight: 600;
}

.l-news1 .news1-conte .date-news1 a::after {
  content: "";
  position: absolute;
  background: var(--green);
  height: 3px;
  width: 100%;
  left: 0;
  bottom: -10px;
  transition: 0.3s;
}

.l-news1 .news1-conte .date-news1 a:hover:after {
  width: 0%;
}

.l-news1 .news1-conte .date-news1 a:hover {
  color: var(--black);
}

.l-news2 .news2-conte .date-news2 p {
  color: var(--light-black);
  text-align: center;
  padding: 15px 0;
}

.l-news2 .news2-conte .date-news2 h4 {
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  padding-bottom: 15px;
}

.l-news2 .news2-conte .date-news2 a {
  text-decoration: none;
  text-align: center;
  padding: 0 60px;
  color: var(--primary-color);
  position: relative;
  font-weight: 600;
}

.l-news2 .news2-conte .date-news2 a::after {
  content: "";
  position: absolute;
  background: var(--green);
  height: 3px;
  width: 100%;
  left: 0;
  bottom: -10px;
  transition: 0.3s;
}

.l-news2 .news2-conte .date-news2 a:hover:after {
  width: 0%;
}

.l-news2 .news2-conte .date-news2 a:hover {
  color: var(--black);
}

.l-news3 .news3-conte .date-news3 p {
  color: var(--light-black);
  text-align: center;
  padding: 15px 0;
}

.l-news3 .news3-conte .date-news3 h4 {
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  padding-bottom: 15px;
}

.l-news3 .news3-conte .date-news3 a {
  text-decoration: none;
  text-align: center;
  padding: 0 60px;
  color: var(--primary-color);
  position: relative;
  font-weight: 600;
}

.l-news3 .news3-conte .date-news3 a::after {
  content: "";
  position: absolute;
  background: var(--green);
  height: 3px;
  width: 100%;
  left: 0;
  bottom: -10px;
  transition: 0.3s;
}

.l-news3 .news3-conte .date-news3 a:hover:after {
  width: 0%;
}

.l-news3 .news3-conte .date-news3 a:hover {
  color: var(--black);
}

footer {
  width: 100%;
  background: var(--green);
}

.footer-container .content_1 img {
  width: 120px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
}

.footer-container h4 {
  color: var(--white);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 25px;
  font-size: 18px;
}

.footer-container a {
  display: block;
  text-decoration: none;
  color: var(--black);
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-container .content_1 p,
.footer-container .content_4 p {
  color: var(--black);
  margin: 25px 0;
  font-size: 14px;
}

.footer-container .content_4 input[type="email"] {
  background-color: var(--green);
  border: none;
  color: var(--white);
  outline: none;
  padding: 15px 0;
}

.footer-container .content_4 .f-mail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-container .content_4 .bx {
  color: var(--white);
}

.f-design {
  width: 100%;
  color: var(--white);
  text-align: center;
}

.f-design .f-design-txt {
  border-top: 1px solid var(--black);
  padding: 25px 0;
  font-size: 14px;
  color: var(--black);
}

.contact {
  margin-top: 45px;
}

iframe {
  height: 72vh;
  width: 100%;
}

.form {
  display: flex;
  justify-content: space-between;
  margin: 80px 0;
}

.form .form-txt {
  flex-basis: 48%;
}

.form .form-txt h4 {
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 1.5px;
  font-size: 15px;
  margin-bottom: 15px;
}

.form .form-txt h1 {
  font-weight: 600;
  color: var(--black);
  font-size: 40px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  color: var(--light-black);
}

.form .form-txt span {
  color: var(--light-black);
  font-size: 14px;
}

.form .form-txt h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 15px 0;
  color: var(--light-black);
}

.form .form-txt p {
  color: var(--light-black);
  font-size: 14px;
}

.form .form-details {
  flex-basis: 48%;
}

.form .form-details input[type="text"],
.form .form-details input[type="email"] {
  padding: 15px 20px;
  color: var(--black);
  outline: none;
  border: 1px solid var(--black);
  margin: 35px 15px;
  font-size: 14px;
}

.form .form-details textarea {
  padding: 15px 20px;
  margin: 0 15px;
  color: var(--black);
  outline: none;
  border: 1px solid var(--black);
  font-size: 14px;
  resize: none;
}

.form .form-details button {
  padding: 15px 25px;
  color: var(--white);
  font-weight: 500;
  background: var(--black);
  outline: none;
  border: none;
  margin: 15px;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
}

@media (max-width: 500px) {
  .head {
    display: none;
  }

  .top-txt .head p,
  .top-txt .head a {
    font-size: 10px;
  }

  .home_txt h2,
  .home_txt .home_label p {
    display: none;
  }

  .home_txt {
    position: absolute;
    top: 20%;
    left: 5%;
    font-size: 12px;
  }

  .home_txt button {
    padding: 7px 7px;
    font-size: 10px;
  }

  .home_txt i {
    display: none;
  }

  .home_txt .home_social_icons {
    /* display: flex; */
    display: none;
  }

  .menu-items {
    margin-right: 0;
  }

  .best-seller {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .l-news {
    display: flex;
    flex-direction: column;
    margin-right: 30px;
  }

  .l-news .l-news1,
  .l-news .l-news2 {
    margin-bottom: 200px;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
  }

  .footer-container .content_1 {
    margin-bottom: 30px;
  }

  .best-seller img {
    padding-top: 40px;
  }
}

@media (min-width: 501px) and (max-width: 768px) {
  .head {
    display: none;
  }

  .top-txt .head p,
  .top-txt .head a {
    font-size: 10px;
  }

  .home_txt h2,
  .home_txt .home_label p {
    display: none;
  }

  .home_txt {
    position: absolute;
    top: 20%;
    left: 5%;
    font-size: 12px;
  }

  .home_txt button {
    padding: 7px 7px;
    font-size: 10px;
  }

  .home_txt i {
    display: none;
  }

  .home_txt .home_social_icons {
    /* display: flex; */
    display: none;
  }

  .menu-items {
    margin-right: 0;
  }

  .best-seller {
    display: flex;
    flex-direction: column;
  }

  .l-news {
    display: flex;
    flex-direction: column;
    margin-right: 30px;
  }

  .l-news .l-news1,
  .l-news .l-news2 {
    margin-bottom: 200px;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
  }

  .footer-container .content_1 {
    margin-bottom: 30px;
  }

  .best-seller img {
    padding-top: 40px;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .header {
    height: 90vmax;
  }
}

@media (max-width: 500px) {
  .form {
    display: flex;
    flex-direction: column;
  }

  .form .form-details button {
    margin-left: 0;
  }

  .form .form-details input[type="text"],
  .form .form-details input[type="email"],
  .form .form-details textarea {
    width: 100%;
    margin-left: 0;
  }

  .form .form-details input[type="text"] {
    margin-bottom: 0px;
  }
}

@media (min-width: 501px) and (max-width: 768px) {
  .form {
    display: flex;
    flex-direction: column;
  }

  .form .form-details button {
    margin-left: 0;
  }

  .form .form-details input[type="text"],
  .form .form-details input[type="email"],
  .form .form-details textarea {
    width: 100%;
    margin-left: 0;
  }

  .form .form-details input[type="text"] {
    margin-bottom: 0px;
  }
}

/* ===============================================
   ABOUT SECTION STYLES
   =============================================== */
#about {
  padding: 80px 0;
  background: #f9f9f9;
}

.about-heading {
  text-align: center;
  margin-bottom: 50px;
}

.about-heading p {
  color: var(--green);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
}

.about-heading h2 {
  font-size: 2.5rem;
  color: var(--black);
  margin-top: 10px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.about-text h3 {
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature-box {
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-box:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(57, 255, 20, 0.2);
}

.feature-box i {
  font-size: 40px;
  color: var(--green);
  margin-bottom: 15px;
}

.feature-box h4 {
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 10px;
}

.feature-box p {
  color: var(--medium-gray);
  font-size: 14px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-badges .badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-weight: 600;
}

.trust-badges .badge i {
  font-size: 24px;
  color: var(--green);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}


/* ===============================================
   BACK TO TOP BUTTON
   =============================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--green);
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
  background: var(--black);
  color: var(--green);
  border-color: var(--green);
  transform: translateY(-5px);
}


/* ===============================================
   LOADING SPINNER
   =============================================== */
.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  text-align: center;
}

.spinner-border {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(57, 255, 20, 0.2);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.spinner p {
  color: var(--green);
  font-size: 18px;
  font-weight: 600;
}

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


/* ===============================================
   TOAST NOTIFICATIONS
   =============================================== */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-success {
  border-left: 4px solid var(--green);
}

.toast-success i {
  color: var(--green);
  font-size: 24px;
}

.toast-error {
  border-left: 4px solid var(--accent-red);
}

.toast-error i {
  color: var(--accent-red);
  font-size: 24px;
}


/* ===============================================
   BREADCRUMB NAVIGATION
   =============================================== */
.breadcrumb-nav {
  padding: 15px 0;
  background: #f5f5f5;
  margin-bottom: 20px;
}

.breadcrumb-nav .container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-nav a {
  color: var(--medium-gray);
  text-decoration: none;
  transition: color 0.3s;
}

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

.breadcrumb-nav span {
  color: var(--light-gray);
}


/* ===============================================
   BLOG SECTION FIX - NO OVERLAPPING
   =============================================== */
.l-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.l-news1,
.l-news2,
.l-news3 {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.l-news1:hover,
.l-news2:hover,
.l-news3:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.news1-img,
.news2-img,
.news3-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.news1-img img,
.news2-img img,
.news3-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.l-news1:hover .news1-img img,
.l-news2:hover .news2-img img,
.l-news3:hover .news3-img img {
  transform: scale(1.05);
}

.news1-conte,
.news2-conte,
.news3-conte {
  padding: 25px;
}

.date-news1 p,
.date-news2 p,
.date-news3 p {
  color: var(--medium-gray);
  font-size: 13px;
  margin-bottom: 10px;
}

.date-news1 h4,
.date-news2 h4,
.date-news3 h4 {
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 15px;
  line-height: 1.4;
}

.news-preview {
  color: var(--medium-gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.news-full {
  color: var(--medium-gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more-btn {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  display: inline-block;
  margin-top: 10px;
}

.read-more-btn:hover {
  color: var(--black);
}

@media (max-width: 968px) {
  .l-news {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 568px) {
  .l-news {
    grid-template-columns: 1fr;
  }
}


/* ===============================================
   SOCIAL SHARE BUTTONS (For future implementation)
   =============================================== */
.share-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--black);
}

.share-btn:hover {
  background: var(--black);
  color: var(--green);
  border-color: var(--green);
  transform: scale(1.1);
}


/* ===============================================
   ABOUT SECTION STYLES
   =============================================== */
#about {
  padding: 80px 0;
  background: #f9f9f9;
}

.about-heading {
  text-align: center;
  margin-bottom: 50px;
}

.about-heading p {
  color: var(--green);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
}

.about-heading h2 {
  font-size: 2.5rem;
  color: var(--black);
  margin-top: 10px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.about-text h3 {
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature-box {
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-box:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(57, 255, 20, 0.2);
}

.feature-box i {
  font-size: 40px;
  color: var(--green);
  margin-bottom: 15px;
}

.feature-box h4 {
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 10px;
}

.feature-box p {
  color: var(--medium-gray);
  font-size: 14px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-badges .badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-weight: 600;
}

.trust-badges .badge i {
  font-size: 24px;
  color: var(--green);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}


/* ===============================================
   BACK TO TOP BUTTON
   =============================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--green);
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
  background: var(--black);
  color: var(--green);
  border-color: var(--green);
  transform: translateY(-5px);
}


/* ===============================================
   LOADING SPINNER
   =============================================== */
.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  text-align: center;
}

.spinner-border {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(57, 255, 20, 0.2);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.spinner p {
  color: var(--green);
  font-size: 18px;
  font-weight: 600;
}

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


/* ===============================================
   TOAST NOTIFICATIONS
   =============================================== */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-success {
  border-left: 4px solid var(--green);
}

.toast-success i {
  color: var(--green);
  font-size: 24px;
}

.toast-error {
  border-left: 4px solid var(--accent-red);
}

.toast-error i {
  color: var(--accent-red);
  font-size: 24px;
}


/* ===============================================
   BREADCRUMB NAVIGATION
   =============================================== */
.breadcrumb-nav {
  padding: 15px 0;
  background: #f5f5f5;
  margin-bottom: 20px;
}

.breadcrumb-nav .container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-nav a {
  color: var(--medium-gray);
  text-decoration: none;
  transition: color 0.3s;
}

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

.breadcrumb-nav span {
  color: var(--light-gray);
}


/* ===============================================
   BLOG SECTION FIX - NO OVERLAPPING
   =============================================== */
.l-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.l-news1,
.l-news2,
.l-news3 {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.l-news1:hover,
.l-news2:hover,
.l-news3:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.news1-img,
.news2-img,
.news3-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.news1-img img,
.news2-img img,
.news3-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.l-news1:hover .news1-img img,
.l-news2:hover .news2-img img,
.l-news3:hover .news3-img img {
  transform: scale(1.05);
}

.news1-conte,
.news2-conte,
.news3-conte {
  padding: 25px;
}

.date-news1 p,
.date-news2 p,
.date-news3 p {
  color: var(--medium-gray);
  font-size: 13px;
  margin-bottom: 10px;
}

.date-news1 h4,
.date-news2 h4,
.date-news3 h4 {
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 15px;
  line-height: 1.4;
}

.news-preview {
  color: var(--medium-gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.news-full {
  color: var(--medium-gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more-btn {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  display: inline-block;
  margin-top: 10px;
}

.read-more-btn:hover {
  color: var(--black);
}

@media (max-width: 968px) {
  .l-news {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 568px) {
  .l-news {
    grid-template-columns: 1fr;
  }
}


/* ===============================================
   SOCIAL SHARE BUTTONS (For future implementation)
   =============================================== */
.share-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--black);
}

.share-btn:hover {
  background: var(--black);
  color: var(--green);
  border-color: var(--green);
  transform: scale(1.1);
}


/* ===============================================
   NEWS SECTION - REBUILT WITH CLEAN LAYOUT
   =============================================== */
#news {
  padding: 80px 0;
  background: white;
}

.news-heading {
  text-align: center;
  margin-bottom: 60px;
}

.news-heading p {
  color: var(--green);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
}

.news-heading h2 {
  font-size: 2.5rem;
  color: var(--black);
  margin-top: 10px;
}

.l-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(57, 255, 20, 0.15);
  border-color: var(--green);
}

.news-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

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

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-content {
  padding: 25px;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--medium-gray);
  font-size: 13px;
  margin-bottom: 12px;
}

.news-date i {
  font-size: 16px;
  color: var(--green);
}

.news-title {
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.news-text {
  color: var(--medium-gray);
}

.news-excerpt {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
  color: var(--medium-gray);
}

.dots {
  display: inline;
}

.more-text {
  display: none;
}

.read-more-link {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 12px;
}

.read-more-link:hover {
  color: var(--black);
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .l-news {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .l-news {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .news-image {
    height: 220px;
  }
}


/* Fix for equal height news cards */
.news-card {
  height: 100%;
}

.news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-text {
  flex: 1;
}

/* Fix section spacing */
#about {
  margin-bottom: 0;
}

#news {
  padding-top: 80px;
  margin-top: 0;
}


/* ===============================================
   COMPACT FOOTER - SYMMETRICAL DESIGN
   =============================================== */
footer {
  background: var(--green);
  padding: 25px 0 10px;
  margin-top: 80px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.footer-left,
.footer-right {
  flex: 1;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-left p {
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-left i {
  font-size: 18px;
}

.footer-center {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: var(--black);
  font-size: 24px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
}

.footer-social a:hover {
  background: var(--black);
  color: var(--green);
  transform: translateY(-3px);
}

.footer-bottom {
  background: var(--black);
  padding: 12px 0;
  margin-top: 20px;
}

.footer-bottom p {
  color: var(--green);
  font-size: 13px;
  text-align: center;
  margin: 0;
}

.footer-bottom a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    justify-content: center;
  }

  .footer-left {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }
}


/* ===============================================
   HEADER LOGO STYLING - ROUNDED BORDER
   =============================================== */
.navbar img {
  margin-left: 3rem;
  width: auto;
  height: 50px;
  padding: 7px 10px;
  background:black;
  border-radius: 50px;
  border: 3px solid var(--black);
  box-shadow: 0 2px 8px rgb(0, 0, 0);
  transition: all 0.3s ease;
  border-color: rgba(245, 245, 245, 0.829) ;
}

.navbar img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(254, 254, 254, 0.883);
  border-color:black;
  background:white;
}


/* Align logo vertically with nav items */
.navbar-container {
  align-items: center;
}