@import url("https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=League+Spartan:wght@100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Pacifico&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+US+Modern:wght@100..400&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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-yellow: #f9be08;
  /* --modern-yellow: #ffce00; */
  --white: #ffffff;
  --off-white: #f9f8f4;
  --light-gray: #dfdfd9;
  --dark-black: #1a1a19;
  --dark-sky: #088178;
  --dark-gray: #555;

  --dark-green: #1d502d;
  --modern-yellow: #f8be16;
  --light-white: #fef9ff;

  /*use the color*/
  --blue-sky-light: #a2d2ff;
  --blue-powder: #bde0fe;
  --pink-soft: #ffafcc;
  --pink-blush: #ffc8dd;
  --lavender-soft: #cdb4db;
  --dark-gray: #555;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

button.normal {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}

button.white {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: #fff;
  background-color: transparent;

  cursor: pointer;
  border: 1px solid #fff;
  outline: none;
  transition: 0.2s;
}

body {
  width: 100%;
}

/*====================================================
  top-navbar 
======================================================*/
.top-header {
  background: var(--dark-green);
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: var(--white);
}

.top-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.top-left span {
  margin-right: 20px;
  color: var(--);
}

.top-left i {
  margin-right: 6px;
  color: var(--modern-yellow);
}

.top-right a {
  margin-left: 18px;
  text-decoration: none;
  font-weight: 500;
  color: var(--white);
}

.top-right a:hover {
  text-decoration: underline;
}

/*====================================================
  NavBar 
======================================================*/
.custom-navbar {
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.navbar-logo {
  width: 60px;
  height: auto;
}



.input-group .form-control {
  border: 1px solid var(--light-gray);
  border-right: none;
  padding: 10px 14px;
  border-radius: 30px 0 0 30px;
  font-size: 14px;
}

.input-group .form-control:focus {
  border-color: var(--modern-yellow);
  box-shadow: 0 0 0 2px rgba(255, 206, 0, 0.25);
}

.input-group .btn {
  border-radius: 0 30px 30px 0;
  padding: 0 18px;
  border: 1px solid var(--modern-yellow);
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: 12px;
  margin-top: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  display: none;
  overflow: hidden;
}

.search-suggestions.active {
  display: block;
}

.search-suggestions div {
  padding: 10px 14px;
  font-size: 14px;
  color: var(--dark-black);
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-suggestions div:hover {
  background: var(--off-white);
  color: var(--dark-sky);
}

.nav-link {
  font-size: 17px;
  font-weight: 500;
  color: #2c2929 !important;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--modern-yellow) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--modern-yellow);
  left: 50%;
  bottom: -1px;
  transition: 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 35%;
  left: 20%;
}

.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--dark-green);
  color: #fff;
  font-size: 11px;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
}

.cart-count {
  visibility: hidden;
}

.cart-count.show {
  visibility: visible;
}

.wish-icon i {
  color: var(--dark-gray);
  font-size: 20px;
}

.wish-icon i:hover {
  color: var(--modern-yellow);
}

.wishlist-count-badge {
  position: absolute;
  top: -12px;
  right: -16px;
  background: var(--dark-green);
  color: var(--white);
  font-size: 12px;
  /* font-weight: 600; */
  padding: 0px 6px;
  border-radius: 50%;
  display: none;
  min-width: 18px;
  line-height: 18px;
}

.wishlist-count-badge.show {
  display: inline-block;
}

.user-icon i {
  font-size: 28px;
  transition: 0.3s ease;
}

.user-icon i:hover,
.cart-icon i:hover {
  color: var(--modern-yellow);
}

@media (max-width: 768px) {
  .nav-link::after {
    display: none;
  }

  .navbar-nav {
    padding-top: 15px;
  }

  .cart-count {
    top: -4px;
    right: -6px;
  }
   .top-header-hide-mobile {
        display: none;
    }
}

#mobile {
  display: none;
  align-items: center;
}

#close {
  display: none;
}

/* CATEGORY DROPDOWN */
.category-dropdown {
  position: relative;
}

.category-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.category-dropdown {
  position: relative;
}

.category-dropdown {
  position: relative;
}

.category-dropdown {
  position: relative;
}

.category-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  padding: 10px 0;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.category-dropdown:hover .category-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.category-dropdown li {
  list-style: none;
}

.category-menu li a {
  display: block;
  padding: 10px 18px;
  color: #333;
  text-decoration: none;
}

.category-menu li a:hover {
  background: #f5f5f5;
  color: var(--primary-yellow);
}

.dropdown-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.category-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.navbar-toggler {
  border: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 2px;
  background-color: #333;
  position: relative;
  transition: background 0.2s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
  border: none;
}

.navbar-toggler-icon::before {
  top: -7px;
  border: none;
}

.navbar-toggler-icon::after {
  top: 7px;
  border: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/*==============================================================
    feature section
================================================================*/

/* Section */
.feature-section {
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

/* Feature box */
.feature-box {
  padding: 10px 0;
}

/* Icon circle */
.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--modern-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--dark-green);
}

/* Title */
.feature-title {
  margin: 0;
  font-weight: 600;
  color: var(--dark-black);
}

/* Text */
.feature-text {
  margin: 0;
  font-size: 14px;
  color: var(--dark-gray);
}

/*==============================================================
    card-design section
================================================================*/
.furniture-section {
  background: #f7f7f7;
}

.category-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  height: 100%;
}

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

.category-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.category-content .items {
  color: var(--modern-yellow);
  font-weight: 600;
  font-size: 14px;
}

.category-content p {
  font-size: 14px;
  color: var(--dark-gray);
  margin-bottom: 10px;
}

.category-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.category-content ul li {
  font-size: 14px;
  color: var(--dark-gray);
  margin-bottom: 3px;
}

.category-image img {
  max-height: 200px;
}

.chair-box .category-image img {
  max-height: 350px;
}

@media (max-width: 768px) {
  .category-box {
    flex-direction: column;
    text-align: center;
  }

  .category-content {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

/*==============================================================
    Category features 
================================================================*/
#feature {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px;
}

#feature .fe-box {
  width: 200px;
  height: 230px;
  background: #ffffff;
  border: 1px solid #cce7d0;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  transition: all 0.3s ease;

  display: flex;
  align-items: center;
  justify-content: center;
}

#feature .fe-box:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

#feature .fe-box a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

#feature .fe-box img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  background: #f5f5f5;
}

#feature .fe-box h6 {
  margin-top: 10px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 6px;
  color: #088178;
  background-color: #fddde4;
}

#feature .fe-box:nth-child(2) h6 {
  background-color: #cdebbc;
}

#feature .fe-box:nth-child(3) h6 {
  background-color: #d1e8f2;
}

#feature .fe-box:nth-child(4) h6 {
  background-color: #cdd4f8;
}

#feature .fe-box:nth-child(5) h6 {
  background-color: #f6dbf6;
}

#feature .fe-box:nth-child(6) h6 {
  background-color: #fff2e5;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  #feature {
    gap: 12px;
    padding: 15px;
  }

  #feature .fe-box {
    width: 160px;
    height: 190px;
  }

  #feature .fe-box img {
    height: 130px;
  }

  #feature .fe-box h6 {
    font-size: 13px;
    padding: 6px 10px;
  }
}

@media (max-width: 576px) {
  #feature .fe-box {
    width: 100%;
    max-width: 120px;
    height: 160px;
    padding: 4px;
  }

  #feature .fe-box img {
    height: 120px;
    padding: 2px;
  }

  #feature .fe-box h6 {
    font-size: 12px;
    padding: 4px 10px;
  }
}

#feature {
  overflow: hidden;
  position: relative;
}

.feature-tracks {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  justify-content: center;
}

.feature-wrapper {
  overflow: hidden;
  width: 100%;
}

.feature-tracks {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  transition: transform 0.4s ease;
}

.feature-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #088178;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}

.feature-btn.left {
  left: 0;
}

.feature-btn.right {
  right: 0;
}

.feature-btn:hover {
  background: #06665f;
}

/*==============================================================
      product cart  section 
================================================================*/

#product1 {
  text-align: center;
}

.pro {
  background: var(--white);
}

.pro a {
  text-decoration: none;
}

#product1 .pro {
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s ease;
  position: relative;
  height: 100%;
}

#product1 .pro:hover {
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

#product1 .pro img {
  width: 100%;
  border-radius: 10px;
}

#product1 .pro .des {
  text-align: start;
  padding: 10px 0;
}

#product1 .pro .des span {
  color: #606063;
  font-size: 12px;
}

#product1 .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}

#product1 .pro .des i {
  font-size: 12px;
  color: rgb(243, 181, 25);
}

#product1 .pro .des h4 {
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700;
  /* color: #088178; */
  color: var(--dark-green);
}

#product1 .pro .fa-indian-rupee-sign {
  /* color: #088178 !important; */
  color: var(--dark-green) !important;
}

#product1 .pro .cart {
  width: 40px;
  height: 40px;
  background-color: #e8f6ea;
  /* background-color: var(--white); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: #088178; */
  color: var(--dark-green);
  text-decoration: none;
  position: absolute;
  bottom: 20px;
  right: 10px;
  /* border: 1px solid #cce7d0; */
  border: 1px solid var(--dark-green);
}

.new-badge {
  position: absolute;
  top: 18px;
  left: 14px;
  background: var(--dark-green);
  padding: 3px 6px;
  /* color: var(--white); */
  color: var(--white);
  border-radius: 6px;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.pro {
  position: relative;
}

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;

  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.3s ease;
}

.pro:hover .wishlist-btn {
  opacity: 1;
  transform: translateY(0);
}

.wishlist-btn i {
  font-size: 16px;
  color: #e63946;

  transition: 0.25s ease;
}

.wishlist-btn:hover i {
  color: #e63946;
}

.wishlist-btn.active i {
  color: #e63946;
}

@media (max-width: 768px) {
  .wishlist-btn {
    opacity: 1;
    transform: translateY(0);
  }
}

/*==============================================================
  small banner 
================================================================*/

#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("../img/short-banner-1.png");
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--light-gray);
}

#banner h4 {
  /* color: #fff; */
  color: var(--dark-black);
  font-weight: 600;
  font-size: 16px;
}

#banner h2 {
  /* color: #fff; */
  color: var(--dark-black);
  font-size: 30px;
  padding: 10px 0;
}

#banner h2 span {
  color: #ef3636;
}

#banner button {
  border: 1px solid #088178;
  color: #088178;
  background: transparent;
}

#banner button:hover {
  background: #088178;
  color: #fff;
}

.banner-wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 15px;
}

.banner-row {
  display: flex;
  gap: 20px;
}

.banner-gap {
  height: 40px;
}

.two-banner .banner-box {
  flex: 1;
}

.three-banner .banner-box {
  flex: 1;
}

.banner-box {
  background-image: url("../img/short-banner-2.png");
  background-size: cover;
  background-position: center;
  padding: 30px;
  min-height: 250px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  border-radius: 8px;
  color: #000;

  border: 1px solid var(--light-gray);
}

@media (max-width: 768px) {
  .banner-row {
    flex-direction: column;
  }

  .banner-gap {
    height: 25px;
  }

  .banner-box {
    min-height: 220px;
    text-align: center;
    align-items: center;
  }
}

/*==========================================================
  faq section 
============================================================*/

/* WRAPPER */
.faq-wrapper {
  max-width: 1350px;
  margin: 60px auto;
  padding: 20px;
  background: var(--light-white);
}

.faq-main-heading {
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark-gray);
  font-weight: 600;
}

.half-heading {
  color: var(--dark-green);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;

  align-items: center;
}

.faq-side-card {
  background: var(--dark-green);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  align-self: center;
}

.faq-side-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: var(--white);
}

.faq-side-card p {
  font-size: 15px;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 20px;
}

.faq-card-btn {
  display: inline-block;
  padding: 10px 18px;
  background: var(--modern-yellow);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
}

.faq-section {
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 22px;
  font-weight: bold;
}

.faq-answer {
  display: none;
  padding-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

@media (max-width: 768px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
}

/*==========================================================
  Testimonials section 
============================================================*/

.testimonial-section {
  background: var(--off-white);
}


.testimonial-subtitle {
  font-size: 14px;
  color: var(--dark-gray);
}

.testimonial-title {
  font-weight: 700;
  color: var(--dark-black);
}


.testimonial-card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}


.testimonial-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 90px;
  height: 70px;
  background: var(--dark-green);
  border-bottom-right-radius: 80px;
  border-top-right-radius: 80px;
  z-index: 0;
}


.testimonial-header {
  position: relative;
  z-index: 2;
}


.client-img {
  margin-right: 12px;
}

.client-img img {
  position: absolute;
  left: 0;
  top: -20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
}



.client-info h6 {
  margin: 0;
  font-weight: 600;
  color: var(--dark-black);
}


.stars {
  color: var(--modern-yellow);
  font-size: 14px;
}


.quote-icon {
  color: var(--dark-green);
  font-size: 22px;
}


.testimonial-text {
  margin-top: 15px;
  color: var(--dark-gray);
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}


@media (max-width: 768px) {
  .testimonial-card {
    text-align: center;
  }

  .testimonial-header {
    flex-direction: column;
  }

  .client-img img {
    margin-bottom: 10px;
  }

  .quote-icon {
    margin-top: 10px;
  }
}

@media (min-width: 768px) {
  .client-info {

    position: absolute;
    left: 35%;
  }
}

/*==========================================================
  Footer section 
============================================================*/

#newsletter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-image: url("../img/banner/Indian\ Spices-2.png");
  background-repeat: no-repeat;
  background-position: 20% 30%;
  background-color: #041e42;
}

#newsletter h4 {
  font-size: 22px;
  font-weight: 700;
  /* color: #fff; */
  color: #1a1a1a;
}

#newsletter p {
  font-size: 14px;
  font-weight: 600;
  color: #818ea0;
}

#newsletter p span {
  color: #ffbd27;
}

#newsletter input {
  height: 3.125rem;
  padding: 0 1.25em;
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#newsletter button {
  background-color: #088178;
  color: #fff;
  white-space: nowrap;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

#newsletter .form {
  display: flex;
  width: 40%;
}

.footer-newsletter {
  padding: 40px 8%;
  background: var(--dark-green);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.newsletter-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.newsletter-text {
  max-width: 520px;
}

.footer-newsletter h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-newsletter p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.newsletter-form {
  min-width: 420px;
  background: var(--white);
  padding: 6px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  outline: 2px solid var(--modern-yellow);
}

.newsletter-form input {
  flex: 1;
  border: none;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 14px;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--primary-yellow);
  color: var(--dark-black);
  font-weight: 600;
  transition: 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--modern-yellow);
}

@media (max-width: 768px) {
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    min-width: 100%;
  }
}

.footer-section {
  background: var(--dark-green);
  color: #fff;
}

.footer-logo {
  max-width: 60px;
}

.footer-col p {
  margin-top: 0px;
}

.footer-section h5 {
  color: var(--modern-yellow);
  margin-bottom: 15px;
}

.footer-section p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #fff;
}

.footer-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: var(--modern-yellow);
  transform: translateX(6px);
}

.social-icons a {
  color: #fff;
  font-size: 22px;
  margin-right: 12px;
  display: inline-block;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--modern-yellow);
  transform: translateY(-5px) scale(1.1);
}

.footer-line {
  border-color: var(--gold-yellow);
  margin: 25px 0;
}

.footer-col {
  animation: fadeUp 0.8s ease-in-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.buttom-footer {
  background: var(--modern-yellow);
  align-items: center;
}

.buttom-footer a {
  color: var(--dark-green);
}

@media (max-width: 576px) {
  .footer-section {
    text-align: center;
  }

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

@media (max-width: 768px) {
  #navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: #e3e6f3;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
    padding: 80px 0 0 10px;
    transition: 0.3s;
  }

  #navbar .active {
    right: 0px;
  }

  #navbar li {
    margin-bottom: 25px;
  }

  #mobile {
    display: flex;
    align-items: center;
  }

  #mobile i {
    color: #1a1a1a;
    font-size: 24px;
    padding-left: 20px;
  }

  #close {
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #222;
    font-size: 24px;
  }

  #lg-bag {
    display: none;
  }

  #hero {
    height: 70vh;
    padding: 0 80px;
    background-position: top 30% right 30%;
  }

  #feature {
    justify-content: center;
  }

  #feature .fe-box {
    margin: 15px 15px;
  }

  #banner {
    height: 20vh;
  }

  #sm-banner .banner-box {
    min-width: 100%;
    height: 30vh;
  }

  #banner3 {
    padding: 0 40px;
  }

  #banner3 .banner-box {
    width: 28%;
  }

  #newsletter .form {
    width: 70%;
  }
}

@media (max-width: 547px) {
  #header {
    padding: 10px 30px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  #hero {
    padding: 0 20px;
    background-position: 55%;
  }

  #feature {
    justify-content: flex-start;
  }

  #feature .fe-box {
    width: 155px;
    margin: 0 0 15px 0;
  }

  #product1 .pro {
    width: 100%;
  }

  #banner {
    height: 40vh;
  }

  #sm-banner .banner-box {
    height: 40vh;
  }

  #sm-banner .banner-box2 {
    margin-top: 20px;
  }
}

/*=======================================================
    cart  
=========================================================*/

.cart-section {
  background: #f6f6f6;
  padding: 40px 15px;
}

.cart-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.cart-left {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

.cart-title {
  margin-bottom: 20px;
  font-size: 26px;
}

.cart-item {
  display: flex;
  gap: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.cart-img img {
  width: 110px;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-info {
  flex: 1;
}

.product-name {
  margin: 0 0 10px;
  font-size: 18px;
}

.cart-actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qty-box {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}

.qty-box button {
  border: none;
  background: #eee;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 16px;
}

.qty-box span {
  padding: 6px 14px;
  min-width: 30px;
  text-align: center;
}

.price {
  font-weight: 500;
  font-size: 14px;
}

.remove-item {
  display: inline-block;
  margin-top: 8px;
  color: red;
  cursor: pointer;
  font-size: 14px;
}

.cart-back {
  text-align: right;
  margin-top: 20px;
}

.cart-back a {
  text-decoration: none;
  color: #333;
  background: #eee;
  padding: 8px 14px;
  border-radius: 6px;
}

.cart-right {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  height: fit-content;
}

.cart-right h3 {
  margin-bottom: 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  font-size: 15px;
}

.summary-row.total {
  font-weight: bold;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.checkout-btn {
  width: 100%;
  margin-top: 20px;
  background: #0a7cff;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}

.cart-left p {
  font-size: 16px;
  color: #555;
}

@media (max-width: 768px) {
  .cart-container {
    grid-template-columns: 1fr;
  }

  .cart-item {
    flex-direction: column;
  }

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

  .cart-actions-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/*=======================================================
    product details 
=========================================================*/

.product-details {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.product-top {
  display: flex;
  gap: 20px;
}

.product-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-thumbs img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid #ddd;
}

.product-main-img img {
  width: 420px;
  border-radius: 10px;
}

.product-info {
  flex: 1;
}

.brand {
  color: gray;
}

.product-title {
  font-size: 26px;
  margin: 10px 0;
}

.rating {
  color: #f5a623;
}

.price {
  color: #088178;
  font-size: 24px;
  margin: 10px 0;
}

.cart-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.quantity {
  display: flex;
  border: 1px solid #ccc;
}

.quantity button {
  padding: 8px 12px;
  border: none;
  cursor: pointer;
}

.quantity input {
  width: 40px;
  text-align: center;
  border: none;
}

.add-to-cart {
  background: #088178;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.product-description {
  margin-top: 30px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.mobile-slider {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  scroll-snap-type: x mandatory;
}

.mobile-slider img {
  width: 100%;
  scroll-snap-align: center;
  border-radius: 10px;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .product-top {
    flex-direction: column;
  }

  .product-main-img img {
    width: 100%;
  }
}

.product-top {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.product-thumbs {
  display: flex;
  flex-direction: column;

  gap: 12px;
}

.product-thumbs img {
  width: 70px;
  height: 90px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.product-thumbs img:hover {
  border-color: #000;
}

.product-main-img img {
  width: 420px;
  max-width: 100%;
  border-radius: 12px;
  background: #eee;
}

@media (max-width: 992px) {
  .product-top {
    flex-direction: column;
  }

  .product-main-img {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .product-main-img img {
    width: 100%;
    max-width: 420px;
  }

  .product-thumbs {
    order: 2;
    flex-direction: row;
    justify-content: center;
    margin-top: 10px;
  }

  .product-info {
    order: 3;
  }
}

/* SIZE SELECTION */

.size-section {
  margin-top: 20px;
}

.size-title {
  font-size: 14px;
  margin-bottom: 10px;
}

.size-title .size-chart {
  color: #0a7cff;
  font-weight: 600;
  margin-left: 5px;
  text-decoration: none;
}

.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.size-btn {
  padding: 6px 14px;
  border: 2px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  border-radius: 6px;
  transition: 0.2s ease;
}

.size-btn:hover {
  border-color: #0a7cff;
}

.size-btn.active {
  border-color: #0a7cff;
  background: #e8f1ff;
  color: #0a7cff;
  font-weight: 600;
}

.size-info {
  background: #f2f2f2;
  padding: 10px 12px;
  font-size: 13px;
  border-radius: 6px;
  margin-top: 10px;
}

/* share products  */
.product-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.product-share a {
  text-decoration: none;
}

.share-label {
  font-weight: 500;
  margin-right: 6px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #000;
}

.share-btn.instagram {
  background: radial-gradient(circle at 30% 30%,
      #feda75 0%,
      #fa7e1e 25%,
      #d62976 50%,
      #962fbf 75%,
      #4f5bd5 100%);
}

/*=======================================================================
  contact us section 
=========================================================================*/
.contact-modern {
  background: linear-gradient(135deg, var(--off-white), var(--light-gray));
  padding: 80px 20px;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}

.contact-left {
  background: var(--white);
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.contact-left h2 {
  color: var(--dark-green);
  margin-bottom: 10px;
}

.contact-left p {
  color: var(--dark-gray);
  margin-bottom: 25px;
}

.contact-details div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--dark-black);
}

.contact-details i {
  color: var(--primary-yellow);
  font-size: 18px;
}

.contact-map {
  margin-top: 25px;
  border-radius: 14px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 260px;
  border: none;
}

.contact-right {
  background: var(--white);
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.contact-right h3 {
  margin-bottom: 20px;
  color: var(--dark-black);
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-right input,
.contact-right textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--light-gray);
  font-size: 15px;
}

.contact-right input:focus,
.contact-right textarea:focus {
  outline: none;
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 2px rgba(249, 190, 8, 0.25);
}

.contact-right button {
  background: var(--primary-yellow);
  color: var(--dark-black);
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.contact-right button:hover {
  background: var(--dark-green);
  color: var(--white);
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/*===============================================================
  blog section 
=================================================================*/
.fashion-blog {
  padding: 90px 8%;
  background: #fafafa;
  font-family: "Poppins", sans-serif;
}

.blog-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-header h2 {
  font-size: 36px;
  font-weight: 600;
}

.blog-header p {
  color: #777;
  margin-top: 10px;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-img img {
  width: 100%;
  /* height: 260px; */
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-tag {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.blog-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  margin-top: 18px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-header h2 {
    font-size: 28px;
  }
}

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

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

/*================================================================
  About section 
==================================================================*/
.about-hero {
  background: var(--dark-green);
  color: var(--light-white);
  padding: 80px 0;
  text-align: center;
}

.about-hero h1 {
  font-weight: 700;
  font-size: 42px;
}

.about-hero p {
  color: var(--light-gray);
  max-width: 700px;
  margin: auto;
}

.about-section {
  background: var(--light-white);
  padding: 80px 0;
}

.about-content h2 {
  color: var(--dark-black);
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--dark-gray);
  line-height: 1.8;
}

.about-img {
  /* width: 400px; */
  /* height: 300px; */
}

.about-img img {
  border-radius: 12px;
  width: 90%;
}

/* Mission Vision */

.mission-vision {
  padding: 80px 0;
  background: var(--light-white);
}

.mv-card {
  background: var(--white);
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.mv-card h3 {
  color: var(--dark-green);
  font-weight: 700;
  margin-bottom: 15px;
}

.mv-card p {
  color: var(--dark-gray);
}

.mv-icon {
  font-size: 35px;
  color: var(--modern-yellow);
  margin-bottom: 15px;
}

/*===========================================================
    faq section 
=============================================================*/
.faq-section {
  max-width: 800px;
  /* margin: 50px auto;  */
  padding: 20px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 22px;
  font-weight: bold;
}

.faq-answer {
  display: none;
  padding-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .icon {
  content: "-";
}

/*===========================================================
    count stat section 
=============================================================*/

.stat-section {
  /* background: #f3f4f5; */
  background: #cef4e5;
  /* background: linear-gradient(190deg, var(--pink-blush), var(--blue-powder)); */
}

.stat-box {
  padding: 20px;
}

.stat-icon {
  font-size: 30px;
  color: var(--dark-green);
  margin-bottom: 10px;
}

.stat-box h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--dark-green);
}

.stat-box p {
  font-size: 15px;
  color: var(--dark-gray);
  margin-bottom: 0;
}

/* .stat-box i {
  color: var(--dark-black);
} */

/*===========================================================
    newsletter section 
=============================================================*/

.newsletter-section {
  background: linear-gradient(135deg, #111, #2a2a2a);
  color: #fff;
  border-radius: 16px;
}

.newsletter-section .highlight {
  color: #f9be08;
  font-weight: 600;
}

.newsletter-input {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.newsletter-btn {
  background: #f9be08;
  color: #111;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: #111;
  color: #f9be08;
  border: 1px solid #f9be08;
}

.fade-left {
  animation: fadeLeft 1s ease forwards;
}

.fade-right {
  animation: fadeRight 1s ease forwards;
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 576px) {
  .newsletter-section {
    text-align: center;
  }
}