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

:root {
  --primary-color: #335230;
  --background-color: #FFFAE6;
  --text1-color: #354E2A;
  --text2-color: #FEFBE8;
  --button-color: #FCC977;
  --discount-color: #F88D27;
  --footer-color: #FBF5DB;
  --font3-color: #808080;
}

body {
  background: var(--background-color);
  font-family: "SUSE Mono", monospace;

}


/* Layout */
.container {
  max-width: 80%;
  margin: auto;
}

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

/* Language */
.language {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--text1-color);
  font-size: 14px;
  font-weight: 500;

}

.language img {
  width: 12px;
}

.dropdown {
  position: absolute;
  top: 30px;
  left: 0;
  background: var(--background-color);
  list-style: none;
  width: 120px;
  display: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.dropdown li {
  padding: 8px 10px;
}

.dropdown li:hover {
  background: var(--button-color);
}


/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo img {
  width: 40px;
}

.logo-txt {
  text-align: center;
}

.logo-txt span {
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-txt p {
  font-size: 8px;
  letter-spacing: 3px;
}

/* Social */
.social-media-icons {
  display: flex;
  gap: 15px;

}

.social-media-icons img {
  width: 18px;
  height: auto;
  cursor: pointer;
}

.line {
  border-bottom: 1px solid rgba(185, 184, 184, 0.265);

}



.nav-container {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-bottom: 1rem;
  position: relative;
  align-items: center;
}

.nav-left {
  border: 1px solid var(--font3-color);
  width: 150px;
  height: 35px;
  display: flex;
  padding: 5px;
}

.mobile-menu-items {
  display: none;
}

.input {
  display: flex;
  gap: 1rem;

}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--text1-color);
}

.input img {
  width: 15px;
  height: 15px;
}

.input-txt h2 {
  font-size: 13px;
  color: var(--text1-color);

}

.filter-img {
  width: 15px;
  height: 15px;
  opacity: 0.55;
}

.divider {
  width: 1px;
  height: 16px;
  background-color: #e6e6e6;
}


.menus ul {
  display: flex;
  gap: 15px;
  align-items: center;

}

.menus ul li {
  list-style: none;
  position: relative;
}

.menus ul li a {
  text-decoration: none;
  color: var(--text1-color);
  font-size: 16px;
  font-weight: 500;
}

.icons {
  display: flex;
  gap: 15px;

}

.icon {
  position: relative;
}

.icon img {
  width: 20px;
}

/*btn*/
.btns button {
  outline: none;
  border: none;



}

.btn-register {
  text-decoration: none;
  background: var(--primary-color);
  padding: 10px;
  width: 100px;
  border-radius: 10px;
  color: var(--text2-color);
}

.new-icon {
  background: var(--discount-color);
  width: 35px;
  height: 20px;
  padding: 3px;
  position: absolute;
  top: -20px;
  left: 110px;
  border-top-left-radius: 40%;
  border-top-right-radius: 40%;
  border-bottom-right-radius: 30%;
  color: var(--text2-color);
  font-size: 12px;
  text-align: center;
  line-height: 1;
}

.icon-2 {
  background: var(--discount-color);
  width: 20px;
  height: 20px;
  padding: 3px;
  position: absolute;
  top: -20px;
  right: -15px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 40%;
  color: var(--text2-color);
  font-size: 11px;
  text-align: center;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*hero*/
.hero {
  display: flex;
  max-width: 100%;
  height: 490px;
  margin-bottom: 3rem;

}

.hero-left {
  width: 30%;
}

.border-shape {
  position: absolute;
  right: 10px;
  bottom: 0;
  top: 150px;
  width: 580px;
  height: 450px;
  border: 1px solid rgba(171, 171, 171, 0.247);
  border-radius: 100% 0% 40% 30%;
  z-index: 1;
}



.txt h2 {
  font-size: 4rem;
  width: 400px;
  font-weight: 700;
  color: var(--text1-color);
  line-height: 1.2;
}

/* Crafted box */
.crafted {
  position: relative;
  padding: 6px 20px;
  color: var(--text1-color);
  border: 2px solid var(--button-color);
}

/* all 4 corners */
.crafted::before,
.crafted::after,
.crafted span::before,
.crafted span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #3f6b4a;
}

/* top-left */
.crafted::before {
  top: -5px;
  left: -5px;
}

/* top-right */
.crafted::after {
  top: -5px;
  right: -5px;

}

/* bottom-left */
.crafted span::before {
  bottom: -5px;
  left: -5px;
}

/* bottom-right */
.crafted span::after {
  bottom: -5px;
  right: -5px;
}


.bt {
  outline: none;
}

.btn-exclusive {
  border: none;
  background: var(--button-color);
  width: 150px;
  height: 40px;
  padding: 10px;
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 550;
  box-shadow: 2px 2px;
}

.person {
  display: flex;
  gap: 5px;
  position: absolute;
  right: 440px;
  top: 70px;

}

.person-txt {
  width: 200px;
  color: var(--text1-color);
}

.person img {
  width: 40px;
  height: 40px;
  border-radius: 50%;

}

.arrow {
  position: absolute;
  top: 120px;
  left: -100px;
  transform: rotate(40deg);


}

/* RIGHT */
.hero-right {
  position: relative;
  width: 50%;



}

.green-shape {
  position: absolute;
  right: 1px;
  bottom: 0;
  top: 30px;
  width: 570px;
  height: 400px;
  border-radius: 100% 15% 55% 30%;
  background: #335230;
  z-index: 1;

}

.background img {
  position: absolute;
  bottom: 0;
  right: 100px;
  top: 90px;
  width: 500px;
  height: 400px;
  z-index: 2;
}

.lamp img {
  height: 170px;
  position: absolute;
  left: 300px;
  top: 0;
  z-index: 1;

}

.discount {
  position: absolute;
  top: 120px;
  right: 120px;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  background: var(--button-color);
  color: var(--discount-color);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.2;
  clip-path: polygon(50% 10%,
      55% 25%,
      61% 35%,
      75% 40%,
      98% 35%,
      80% 50%,
      68% 57%,
      75% 75%,
      79% 91%,
      60% 80%,
      50% 70%,
      40% 80%,
      21% 91%,
      25% 75%,
      32% 57%,
      20% 50%,
      2% 35%,
      25% 40%,
      39% 35%,
      45% 25%);
  box-shadow: 0 6px 16px rgba(252, 201, 119, 0.5);

}

.discount:hover {
  transform: scale(1.1);
}


/*product*/
.wrapper {

  margin: auto;
}

h2 {
  color: #2f4f2f;
  font-size: 30px;
  margin-bottom: 30px;
}

.product-color {
  background: #2f4f2f;
  width: 80%;
  padding: 40px;
  height: 630px;
  position: relative;
}

.product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;

}

.text {
  color: #eaeaea;
  width: 45%;
}

.text h3 {
  font-size: 26px;
}

.text span {
  color: #b5cbb5;
  font-size: 14px;
}

.text p {
  margin: 15px 0;
  line-height: 1.6;
}

.read-more a {
  color: #b5cbb57d;
  letter-spacing: 3px;
}

.lamp-box {
  background: var(--primary-color);
  width: 200px;
  height: 285px;
  position: absolute;
  left: 610px;
  top: -30px;
}

.lamp-bg2 {
  background: #446b40;
  width: 120px;
  height: 80px;
  position: absolute;
  left: 40px;
  top: 205px;

}

.two {
  left: 85px;
  top: 7px;
}

.lamp-bo {
  border: 1px solid #b5cbb57d;
  width: 180px;
  height: 260px;
  margin: 10px;
}

.img-box {
  width: 45%;
  position: relative;
  display: flex;
  justify-content: center;
}

.add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f4b26a;
  cursor: pointer;
  width: 150px;
  height: 40px;
  border-radius: 1px;
  position: absolute;
  left: -120px;
  top: 220px;
}

.add-btn a {
  display: flex;
  align-items: center;
  gap: 6px;

  color: var(--text1-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
}

.add-btn a img {
  width: 18px;
  height: 18px;
}

.add2 {
  left: 160px;
  top: 190px;
}



.price {
  position: absolute;
  top: -25px;
  right: -130px;
  background: #f89c2a;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.pri2 {
  top: -25px;
  right: 55px;
}

.price small {
  font-size: 10px;
}

.lamp-img {
  position: absolute;
  left: -170px;
  width: 450px;
  height: 300px;
  z-index: 1;
}

.lamp2 {
  background: var(--primary-color);
  width: 200px;
  height: 280px;
  position: absolute;
  left: 0;
  top: 380px;
}

.txt2 {
  position: absolute;
  left: 450px;
  top: 350px;
}

.chair-img {
  width: 240px;
  height: 280px;
  position: absolute;
  left: -40px;
  top: 10px;
}

/* MAIN SECTION */
.products {
  padding: 60px;
  margin-top: 4rem;
}

/* SIDEBAR */
.sidebar {
  position: relative;
}

.product-txt {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 2rem;

}

h2 {
  font-size: 36px;
  color: #355f45;
  margin-bottom: 30px;
}

.product-txt p {
  color: var(--text1-color);
  font-size: 17px;
  font-weight: 550;
  margin-bottom: 10px;
}

.read-more-color a {
  color: var(--text1-color);

}

.sidebar ul {
  list-style: none;
  margin-bottom: 30px;
}

.sidebar ul li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #777;
  cursor: pointer;
}

.sidebar ul li.active {
  font-weight: bold;
  color: #355f45;
}

.highlight {
  background: var(--button-color);
  width: 120px;
  height: 9px;
  position: absolute;
  bottom: 347px;
  z-index: -1;
  right: 130px;

}

.go-shop {
  margin-left: 2rem;
}

.arrow-shop-btn {
  position: absolute;
  top: 340px;
  left: -35px;
  transform: rotate(-35deg);

}

.productss {
  display: flex;
  gap: 4rem;
}

/* PRODUCT LIST */
.product-list {
  display: flex;
  gap: 10px;
}

/* PRODUCT CARD */
.product-card {
  width: 303px;
  position: relative;
  text-align: center;
}

.product-card img {
  width: 220px;
  height: 220px;
  margin-bottom: 20px;
}

/* PRICE */
.card-price {
  top: 55px;
  right: 40px;
  background: var(--button-color);
  padding: 5px 10px;
  color: var(--text1-color);
  font-weight: bold;
  font-size: 18px;

}


.product-card-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* TEXT */
.product-card-txt h3 {
  font-size: 20px;
  color: #355f45;
  margin-bottom: 5px;
}

.product-card-txt p {
  font-size: 13px;
  width: 250px;
  margin-bottom: 15px;
}

/* COLORS */
.color-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;

}

.left {
  position: absolute;
  left: 230px;
  top: 150px;
}

.right {
  position: absolute;
  left: 250px;
  top: 150px;
}


.bar {
  height: 8px;
}


.b1 {
  width: 10px;
  background: #e3c1a3;
  margin-left: 7px;
}

.b2 {
  width: 14px;
  background: #dd6050;
  margin-left: 6px;
}

.b3 {
  width: 18px;
  background: #8bc34a;
  margin-left: 4px;
}

.b4 {
  width: 30px;
  background: #3f51b5;
}

.r1 {
  width: 10px;
  background: #2f4f4f;
  margin-left: 7px;
}

.r2 {
  width: 14px;
  background: #f4b26a;
  margin-left: 6px;
}

.r3 {
  width: 18px;
  background: #8bc34a;
  margin-left: 4px;
}

.r4 {
  width: 30px;
  background: #3f51f5;
}


.no-bg button {
  background: none;
}

/*intro-section*/

.intro-section {
  position: relative;
  display: flex;
  padding: 50px;
  background: var(--primary-color);
  color: var(--text2-color);
  margin-top: 5rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 160px);
  gap: 15px;
  position: relative;

}


.grid-image1 {
  width: 120px;
  position: absolute;
  top: -20px;
}

.grid-image2 {
  width: 100px;
  height: 140px;
  position: absolute;
  left: 150px;


}

.grid-image3 {
  width: 100px;
  height: 140px;
  position: absolute;
  top: 180px;

}

.grid-image4 {
  width: 120px;
  position: absolute;
  left: 120px;
  top: 160px;

}

.intro-images {
  position: relative;
}

.top-img {
  width: 120px;
  position: absolute;
  top: -50px;
  left: 125px;

}

.bottom-img {
  width: 100px;
  height: 10px;
  position: absolute;
  top: 336px;
  left: 0;
}

.intro-content {
  max-width: 420px;
}

.intro-content h1 {
  font-size: 38px;
  margin-bottom: 20px;
}

.intro-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.decor-plant {
  position: absolute;
  right: 15px;
  bottom: -15px;
  width: 170px;
}

/* TESTIMONIAL */
.testimonial-section {
  display: flex;
  justify-content: space-between;
  padding: 80px;
  margin-top: 3rem;
}

.number {
  font-size: 35px;
  color: #c2c2a3;
}

.testimonial-title h2 {
  font-size: 32px;
  color: #355f45;
}

.testimonial-content {
  max-width: 450px;
  text-align: center;
}

/* avatar images */
.avatar-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.big-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.big-img1 {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: white;
  opacity: 0.4;
}

.big-img2 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  opacity: 0.4;
}

.testimonial-content h4 {
  margin-top: 15px;
}

.testimonial-content small {
  color: #777;
}

.rating-stars {
  color: #f4b26a;
  margin: 10px 0;
}

.testimonial-content p {
  font-size: 20px;
  color: var(--text1-color);
}


/* FOOTER */
.footer {
  margin-top: 3rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  background: #f7f3dc;
  padding: 60px 50px 30px;
  color: #2e4d3d;
}

.footer-newsletter h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.newsletter-box {
  display: flex;
  width: 260px;
  border: 1px solid var(--primary-color);
}

.newsletter-box input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  background: transparent;
}

.newsletter-box button {
  width: 45px;
  border: 1.3px solid var(--primary-color);
  background: #f4b26a;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 1px 1px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
  font-size: 14px;
  cursor: pointer;
}

.footer-col p {
  font-size: 14px;
  margin-bottom: 8px;

}

.footer-b {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.footer-p {
  font-size: 10px;
  margin: 0;
}

.social {
  display: flex;
}

.social img {
  width: 16px;
  height: 16px;
  cursor: pointer;
}


.footer-bottom {
  background: #fff9e6;
  padding: 12px 20px;
  font-family: Arial, sans-serif;
}

.footer-bottom-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* STORE BUTTONS */
.store-buttons {
  display: flex;
  gap: 10px;
}

.store {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 13px;
  background: #fff;
  cursor: pointer;
  border: 1px solid var(--primary-color);
  box-shadow: 1px 1px;
}

.playstore-img {
  width: 20px;

}

.store.play {
  background: #ffd77a;
}

.store.app {
  background: none;
}


/* TRUSTPILOT */
.trust {
  display: flex;
  align-items: center;
  gap: 6px;

}

/* stars container */
.trust {
  display: flex;
  flex-direction: column;
}

small span {
  color: #00b67a;

}

/* star box mid mid */
.stars span {
  background: #00b67a;
  color: #fff;
  font-size: 12px;
  padding: 4px 5px;
  border-radius: 2px;
  line-height: 1;
}

/* trustpilot text */
.trust small {
  font-size: 16px;
  font-weight: 600;
}




@media(max-width: 768px) {
  .social-media-icons {
    display: none;

  }

  .hamburger {
    display: block;
    z-index: 1001;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-container {
    margin-top: 0;
    padding-bottom: 0;
  }

  .nav-left,
  .icons,
  .btns {
    display: none;
  }

  .menus {
    position: fixed;
    left: -100%;
    top: 0;
    height: 55vh;
    width: 50%;
    background-color: var(--background-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
    z-index: 1000;
    box-shadow: none;
  }

  .menus.active {
    left: 0;
  }

  .menus ul {
    flex-direction: column;
    gap: 2rem;
  }

  .mobile-menu-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .mobile-btns {
    margin-bottom: 1rem;
  }

  .mobile-social {
    display: none;
  }


  /* Hero Section */
  .hero {
    height: auto;
    min-height: 390px;
  }


  .border-shape {

    display: none;
  }



  .txt h2 {
    font-size: 2.5rem;
    width: 300px;

  }

  .crafted {
    padding: 6px 10px;
  }

  .person {
    right: 260px;
    top: 40px;

  }

  .person-txt {
    width: 120px;

  }



  .arrow {

    top: 80px;
    left: -90px;

  }

  .btn-exclusive {
    border: none;
    width: 150px;
    height: 50px;
    padding: 10px;

  }

  /* RIGHT */
  .hero-right {
    position: relative;
    width: 50%;
  }

  .green-shape {
    top: 70px;
    width: 390px;
    height: 270px;
  }

  .background img {
    right: 20px;
    top: 90px;
    width: 400px;
    height: 300px;

  }



  .discount {
    top: 130px;
    right: 30px;
    width: 70px;
    height: 70px;

  }

  .lamp img {
    left: auto;
    right: 10%;
    top: 20px;
    height: 120px;
    display: block;
  }

  /*product*/
  h2 {

    font-size: 20px;

  }

  .product-color {
    width: 93%;
    padding: 10px;
    margin-bottom: 4rem;

  }



  .text {
    color: #eaeaea;
    width: 40%;
  }

  .text h3 {
    font-size: 18px;
  }



  .lamp-box {
    width: 180px;
    height: 270px;
    left: 380px;
    top: -30px;
  }

  .lamp-bg2 {
    width: 100px;
    height: 60px;
    position: absolute;
    left: 40px;
    top: 200px;

  }

  .two {
    left: 80px;
    top: 7px;
  }

  .lamp-bo {
    border: 1px solid #b5cbb57d;
    width: 160px;
    height: 250px;
    margin: 10px;
  }

  .img-box {
    width: 40%;
    position: relative;
    display: flex;
    justify-content: center;
  }

  .add-btn {
    width: 130px;
    height: 40px;
    left: -70px;
    top: 220px;
  }



  .add-btn a img {
    width: 18px;
    height: 18px;
  }

  .add2 {
    left: 160px;
    top: 190px;
  }


  .lamp-img {
    top: 20px;
    left: -130px;
    width: 350px;
    height: 240px;
    z-index: 1;
  }

  .lamp2 {
    background: var(--primary-color);
    width: 200px;
    height: 270px;
    position: absolute;
    left: 0;
    top: 380px;
  }

  .txt2 {

    left: 300px;
    top: 300px;
  }

  .card-price {
    top: 55px;
    right: 0;


  }

  /* Products List */

  .productss {
    gap: 2rem;
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 2rem;
  }

  .sidebar ul {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
  }

  .sidebar ul li {
    margin-bottom: 0;
    white-space: nowrap;
  }

  .sidebar .highlight,
  .sidebar .btns,
  .sidebar .arrow-shop-btn {
    display: none;
  }

  .products {
    padding: 2rem 1rem;
    margin-top: 0;
  }

  .product-card {
    width: 80%;
    max-width: 200px;
    margin: 0 auto;
  }

  .product-txt {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .read-more-color {
    margin-top: 1rem;
  }

  .none {
    display: none;
  }

  .color-bars {

    gap: 0px;

  }

  .right {

    left: 180px;

  }

  .left {

    left: 180px;
    top: 150px;
  }



  /* Intro Section */
  .intro-section {
    padding: 0px;
    gap: 0rem;
    text-align: center;
  }

  .intro-images {
    height: 400px;
    width: 50%;
    display: flex;
    justify-content: center;
  }

  .image-grid {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .grid-image1,
  .grid-image2,
  .grid-image3,
  .grid-image4 {
    position: absolute;
    transform: scale(0.8);
  }

  .grid-image1 {
    width: 140px;
    top: 10px;
    left: -5px;
  }

  .grid-image2 {
    width: 120px;
    top: 50px;
    left: 50%;
  }

  .grid-image3 {
    width: 120px;
    top: 220px;
    left: -5px;
  }

  .grid-image4 {
    width: 140px;
    top: 180px;
    left: 45%;
  }

  .bottom-img,
  .top-img {

    display: none;
  }

  .intro-content {
    max-width: 50%;
  }

  .intro-content h1 {
    font-size: 20px;
  }

  .decor-plant {
    position: absolute;
    right: 15px;
    bottom: -13px;
    width: 130px;
  }

  /* Testimonial */
  .testimonial-section {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .testimonial-title {
    margin-bottom: 2rem;
  }


  /* FOOTER */
  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;

  }

  .footer-newsletter h2 {
    font-size: 20px;

  }

  .newsletter-box {

    width: 220px;

  }

  .footer-b {
    flex-direction: column;
    gap: 10px;
  }
}


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

  .container {
    max-width: 90%;
  }

  .hero {
    height: 0px;
  }

  .hero-left,
  .arrow,
  .person,
  .border-shape,
  .green-shape {
    display: none;
  }

  .hero-right {
    width: 100%;
  }

  .background img {
    right: 20px;
    top: 80px;
    width: 380px;
    height: 300px;

  }

  .lamp img {
    height: 150px;
    position: absolute;
    left: 200px;
    top: 0;
    z-index: 1;

  }


  /*our PRODUCTS */
  .product-color {
    width: 100%;
    padding: 10px;
    height: auto;
    display: flex;

  }

  .text {
    width: 40%;
    text-align: center;
  }

  .text h3 {
    font-size: 10px;
  }

  .text span {
    font-size: 10px;
  }

  .text p {
    font-size: 10px;
  }

  .lamp-box {
    position: relative;
    left: 0;
    top: 0;
    width: 50%;
    height: 80%;
    margin: 10px 0;
  }

  .lamp-bo {
    border: 1px solid #b5cbb57d;
    width: 160px;
    height: 200px;
    margin: 10px;
  }

  .lamp-img {
    left: -80px;
    top: 0;
    width: 250px;
  }

  .lamp-bg2 {
    width: 100px;
    height: 70px;
    position: absolute;
    left: 30px;
    top: 170px;

  }

  .add-btn {
    position: relative;
    top: 0;
    width: 80%;

  }

  .price {
    position: relative;
    top: -50px;
    left: 110px;
    margin: 10px auto;
  }

  .txt2 {

    display: none;
  }

  .lamp2 {

    display: none;
  }



  /* PRODUCT LIST */
  .productss {
    flex-direction: column;
    gap: 20px;
  }

  .product-list {
    flex-direction: column;
    gap: 15px;
  }

  .product-card {
    width: 100%;
    text-align: center;
  }

  .product-card img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  .card-price {
    top: 50px;
    left: 50px;


  }

  /* SIDEBAR */
  .product-txt {
    grid-template-columns: 1fr;
  }

  .sidebar {
    width: 100%;
    margin-bottom: 20px;
  }

  .highlight {
    display: none;
  }

  /* INTRO SECTION */
  .intro-section {
    display: grid;
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 160px);
    gap: 15px;
    position: relative;

  }


  .grid-image1 {
    width: 180px;
    position: absolute;
    top: -20px;
  }

  .grid-image2 {
    width: 150px;
    height: 160px;
    position: absolute;
    left: 170px;
    top: -5px;


  }

  .grid-image3 {
    width: 160px;
    height: 160px;
    position: absolute;
    top: 240px;

  }

  .grid-image4 {
    width: 170px;
    left: 150px;
    top: 150px;

  }

  .intro-images {
    position: relative;
  }

  .bottom-img,
  .top-img,
  .decor-plant {
    display: none;

  }

  .intro-content {
    max-width: 420px;
  }

  .intro-content h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .intro-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  /* TESTIMONIAL */
  .testimonial-section {
    flex-direction: column;
    padding: 20px;
  }

  .avatar-group {
    gap: 4px;
  }

  .big-img {
    width: 40px;
    height: 40px;
  }

  .big-img1,
  .big-img2 {
    width: 30px;
    height: 30px;
  }

  .testimonial-content p {
    font-size: 16px;
  }


  /* FOOTER */
  .footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    padding: 40px 10px 10px;

  }

  .footer-newsletter h2 {
    font-size: 18px;

  }

  .newsletter-box {
    width: 200px;
  }

  .newsletter-box button {
    width: 20px;
    font-size: 15px;

  }

  .footer-col h4 {
    font-size: 16px;
  }


  .footer-col ul li {
    font-size: 8px;
  }

  .footer-col p {
    font-size: 8px;

  }

  .store-buttons {
    display: flex;
    gap: 10px;
  }

  .store {
    padding: 4px 7px;
    font-size: 10px;
  }

  .stars span {
    font-size: 12px;
    padding: 2px 3px;

  }

  .trust small {
    font-size: 15px;

  }




}



/* DARK MODE */
body.dark-mode {
  --background-color: #121212;
  --text1-color: #e0e0e0;
  --text2-color: #f0f0f0;
  --footer-color: #1e1e1e;
  --primary-color: #335230;
  /* Keep primary but ensure contrast */
}

/* Toggle Button */
.theme-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle svg {
  width: 22px;
  height: 22px;
  stroke: var(--text1-color);
  fill: none;
  transition: all 0.3s ease;
}

body.dark-mode .theme-toggle svg {
  fill: var(--text1-color);
  /* Fill moon in dark mode */
}

/* Dark Mode Overrides for Hardcoded Colors */
body.dark-mode .product-color {
  background-color: #1a2a1a;
}

body.dark-mode h2,
body.dark-mode .logo-txt span,
body.dark-mode .product-card-txt h3,
body.dark-mode .sidebar ul li.active,
body.dark-mode .testimonial-title h2,
body.dark-mode .intro-content h1,
body.dark-mode .product-card-txt p {
  color: #8bc34a;
  /* Lighter green for text on dark bg */
}

body.dark-mode .intro-section {
  background-color: #152515;
}

body.dark-mode .footer-container {
  background-color: var(--footer-color);
  color: #cccccc;
}

body.dark-mode .newsletter-box input {
  color: #ffffff;
}

body.dark-mode .sidebar ul li {
  color: #aaaaaa;
}

body.dark-mode .text {
  color: #e0e0e0;
}

body.dark-mode .text span {
  color: #a0bca0;
}

/* Invert icons for visibility */
body.dark-mode .icon img,
body.dark-mode .social-media-icons img,
body.dark-mode .search-img img,
body.dark-mode .filter-img img,
body.dark-mode .shop-add-cart img,
body.dark-mode .footer-b img,
body.dark-mode .logo img {
  filter: invert(1);
}

/* Fix specific backgrounds */
body.dark-mode .menus {
  background-color: var(--background-color);
}