@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;
  --secondary-yellow: #ffce00;
  --white: #ffffff;
  --off-white: #f9f8f4;
  --light-gray: #dfdfd9;
  --dark-black: #1a1a19;
  --dark-sky: #8e6f1c;
  --dark-gray: #555;

  /*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%;
}

/*====================================================
  NavBar 
======================================================*/
.custom-navbar {
  background: #f1f1f1;
  /*box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);*/
  padding: 10px 0;
}

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

.logo-animate {
  /* animation: logoPop 1.8s infinite ease-in-out; */
}

/* @keyframes logoPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
} */

.search-btn-glass {
  /* border: 1px solid #212121; */
  background-color: #ffffff;
}

.search-btn-glass:hover {
  /* border: 1px solid #212121; */
}

.fa-magnifying-glass {
  color: #1a1a1a;
}

.input-group .form-control {
  /* border: 2px solid #8e6f1c; */
  /* border-right: none; */
  padding: 10px 14px;
  border-radius: 30px 0 0 30px;
  font-size: 14px;
}

.input-group .form-control:focus {
  /* box-shadow: 0 0 0 2px rgba(255, 206, 0, 0.25); */
  /* box-shadow: none; */
}

.input-group .btn {
  border-radius: 0 30px 30px 0;
  padding: 0 18px;
  border: 1px solid linear-gradient(135deg,
      #80452B 0%,
      #AE762C 15%,
      #B47D29 30%,
      #E9D07B 50%,
      #C5984A 70%,
      #AE7F39 85%,
      #80452B 100%);
}

.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: #0d0d0f;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-suggestions div:hover {
  /* background: rgb(221, 210, 194); */
  /* color: var(--dark-sky); */
}


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

.nav-link:hover,
.nav-link.active {
  /* color: #8e6f1c !important; */
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  /* background: #8e6f1c; */

  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: red; */
  /* color: red; */
  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;
}

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

/* .user-icon a:hover,
.cart-icon a:hover {
  color: red;
} */

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

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

  .cart-count {
    top: -4px;
    right: -6px;
  }
}

#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: #1a1a19;
  text-decoration: none;
}

.category-menu li a:hover {
  background: rgb(235, 234, 228);
  /* color: #8e6f1c; */
}

.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: #cbc164;
  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: #cbc164;
  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;
}

/*=======================================================
  video section-1 
=========================================================*/
.video-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 8%;
}

.video-box {
  flex: 1;
  max-width: 450px;
  aspect-ratio: 1 / 1;
  /* Square */
  overflow: hidden;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-box {
  flex: 1;
}

.content-box h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.content-box p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .video-section {
    flex-direction: column;
    text-align: center;
  }

  .content-box h2 {
    font-size: 30px;
  }

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




.video-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.video-box {
  flex: 1;
  max-width: 550px;
  aspect-ratio: 1 / 1;
  padding: 7px;
  border-radius: 20px;
}

/* Actual video container */
.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}



@media (max-width: 768px) {
  .video-section {
    flex-direction: column;
    gap: 25px;
  }
}




.content-box h2 {
  position: relative;
  display: inline-block;
  font-size: 32px;
  font-weight: 600;
  padding: 8px 20px;
  /* color: #ffffff; */
  color: #0d0d0f;

}



.collection-heading {
  text-align: center;
  margin: 40px 0;
}


.collection-heading h2 {
  display: inline-block;
  /* padding: 5px 30px; */
  border-radius: 6px;
  color: #1a1a1a;
  font-weight: 600;
}

.collection-heading p {
  font-size: 16px;
  color: #333;
}

/*==============================================================
    Category features 
================================================================*/

/* #feature {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 15px;
}

#feature .fe-box {
    width: 180px;
    text-align: center;
    padding: 4px 4px;
    border: 1px solid #cce7d0;
    border-radius: 5px;
    margin: 15px 0;
}

#feature .fe-box:hover {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

#feature .fe-box h6 {
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #088178;
    background-color: #fddde4;
}

#feature .fe-box img {
    width: 100%;
    margin-bottom: 10px;
}

#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;
} */

/* ============================= */
/* FEATURE CATEGORY SECTION */
/* ============================= */

#feature {
  position: relative;
  overflow: hidden;
  padding: 0px 0px;

  background: linear-gradient(135deg,
      #80452B 0%,
      #AE762C 15%,
      #B47D29 30%,
      #E9D07B 50%,
      #C5984A 70%,
      #AE7F39 85%,
      #80452B 100%);
}

/* WRAPPER */
.feature-wrapper {
  overflow: hidden;
  touch-action: pan-y;
  padding-top: 20px;
}

/* TRACK */
.feature-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

/* ITEM */
.fe-box {
  flex-shrink: 0;
  text-align: center;
}

.fe-box a {
  text-decoration: none;
  color: inherit;
}

/* IMAGE */
.circle-img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  transition: all 0.4s ease;
}

.circle-img img {
  width: 88%;
  height: 88%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* HOVER ZOOM + GLOW */
.fe-box:hover .circle-img {
  box-shadow: 0 0px 10px rgba(142, 111, 28, 0.9);
  transform: scale(1.08);
}

.fe-box:hover img {
  transform: scale(1.10);
}

/* TEXT */
.fe-box h6 {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  /* color: #444; */
  color: #000;
  white-space: nowrap;
}

.fe-box:hover h6 {
  transform: scale(1.2);
  /* color: #c9a24d; */
}

/* ARROWS (DESKTOP ONLY) */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #0d0d0f;
  background: linear-gradient(135deg,
      #80452B 0%,
      #AE762C 15%,
      #B47D29 30%,
      #E9D07B 50%,
      #C5984A 70%,
      #AE7F39 85%,
      #80452B 100%);
  ;
  color: #0d0d0f;
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
}

.nav-arrow.left {
  left: 10px;
}

.nav-arrow.right {
  right: 10px;
}

.nav-arrow:hover {
  background: #c9a24d;
  color: #fff;
}

/* MOBILE: ARROWS HIDE */
@media(max-width:768px) {
  .nav-arrow {
    display: none;
  }

  .feature-wrapper {
    padding: 0px;
    overflow: hidden;
  }

  .feature-track {

    /* gap kam kiya */
    display: flex;


    /* width: max-content; */
    /* will-change: transform; */

    gap: 5px;
  }

  .fe-box:hover img {
    transform: none;
  }

  .fe-box:hover h6 {}

  .circle-img {
    width: 80px;
    /* circle chhota */
    height: 80px;

  }

  .fe-box:hover .circle-img {
    transform: none;
  }

  .fe-box h6 {
    font-size: 12px;
  }

  .fe-box:hover h6 {
    transform: none;
  }

}




/*==============================================================
      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: 0px;
  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: 0px;
} 

#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;
}

#product1 .pro .fa-indian-rupee-sign {
  color: #088178 !important;
}

#product1 .pro .cart {
  width: 200px;
  height: 35px;
  background-color: #e8f6ea;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  color: #088178;
  text-decoration: none;
  position: absolute;
  bottom: 22px;
  right: 10px;
  border: 1px solid #cce7d0;
}

#product1 .pro .cart:hover i {
  transform: scale(1.2);
  transition: 0.25s ease;
}

#product1 .pro .cart .new-badge {
  position: absolute;
  top: 18px;
  left: 14px;
  background: var(--dark-sky);
  padding: 3px 6px;
  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;
  bottom: 18px;
  left: 8px;
  width: 38px;
  height: 38px;
  border: none;
  background: #fff;
  
  cursor: pointer;
  
  
  transition: all 0.3s ease;
}

.wishlist-btn:hover {
  opacity: 100;
  transform: scale(1.2);
  transition: all 0.3s ease;
}

.wishlist-btn i {
  font-size: 22px;
  color: #e63946;
  transition: 0.25s ease;
}

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

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


.wishlist-btn .fa-solid {
  display: none;
}


.wishlist-btn:hover .fa-regular {
  display: none;
}

.wishlist-btn:hover .fa-solid {
  display: inline-block;
  color: red;
  
}

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

/* PRODUCT CARD */
.pro {
  position: relative;
  /* background: #fff; */
  /* border-radius: 6px; */
  overflow: hidden;
  /* border: 1px solid #e0e0e0; */
  transition: box-shadow 0.3s ease;
  height: 100%;

  border: 2px solid transparent;
  border-radius: 0px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg,
      #80452B,
      #AE7F39,
      #E9D07B,
      #C5984A,
      #AE762C,
      #B47D29) border-box;
}

.pro:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* IMAGE WRAPPER */
.pro a {
  text-decoration: none;
  color: inherit;
}

/* IMAGE */
.pro img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}

/* IMAGE ZOOM ON HOVER */
.pro:hover img {
  transform: scale(1.1);
}

/* DESCRIPTION */
.pro .des {
  padding: 10px 12px;
}

/* PRODUCT NAME */
.pro .des h5 {
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  margin-bottom: 6px;
  line-height: 1.4;
  height: 38px;
  overflow: hidden;
}

/* PRICE */
.pro .des h4 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}

/* STAR RATING */
.star {
  display: flex;
  gap: 3px;
}

.star i {
  color: #fbc02d;
  font-size: 13px;
}

/* WISHLIST HEART */
.wishlist-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #fff;
  border-radius: 50%;
  border: none;
  padding: 6px 8px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.wishlist-btn i {
  font-size: 16px;
}

/* DEFAULT HEART */
.wishlist-btn .fa-solid {
  display: none;
  color: #df0522;
}

/* ACTIVE HEART */
.wishlist-btn.active .fa-regular {
  display: none;
}

.wishlist-btn.active .fa-solid {
  display: inline-block;
}

/* ADD TO CART BUTTON */
.cart {
  width: calc(100% - 20px);
  margin: 10px;
  /* background: #0d0d0f; */
  border: none;
  color: #d0bd6a;
  font-size: 16px;
  font-weight: 300;
  /* padding: 10px; */
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: background 0.3s ease;
}

.cart:hover {
  color: #ffffff;
}

/* MOBILE */
@media (max-width: 576px) {
  .pro img {
    height: 170px;
  }

  .cart {
    font-size: 13px;
    padding: 9px;
  }
}



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


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


/*==========================================================
  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: #8e6f1c;
}

#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: #8e6f1c;
  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: #ffffff;
  border-bottom: 1px solid #8e6f1c;
  border-top: 1px solid #8e6f1c;
}

.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: #1a1a1a;
  margin-bottom: 6px;
}

.footer-newsletter p {
  font-size: 14px;
  color: #212121 !important;
}

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

.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: linear-gradient(135deg,
      #80452B 0%,
      #AE762C 15%,
      #B47D29 30%,
      #E9D07B 50%,
      #C5984A 70%,
      #AE7F39 85%,
      #80452B 100%);
  color: var(--dark-black);
  font-weight: 600;
  transition: 0.3s ease;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg,
      #80452B 0%,
      #AE762C 15%,
      #B47D29 30%,
      #E9D07B 50%,
      #C5984A 70%,
      #AE7F39 85%,
      #80452B 100%);
}

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

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

.footer-section {
  background: #212121;
  color: #fff;
}

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

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

.footer-section h5 {
  /* color: #d0bd6a; */
  color: #8e6f1c;
  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: #d0bd6a;
  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: #8e6f1c;
  transform: translateY(-2px) scale(1.5);
}

.footer-line {
  /* border-color: var(--gold-yellow); */
  border-color: #8e6f1c;
  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);
  }
}

@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;
  }
}

/*================== all products heading with horizonatal ================*/

/* Wrapper – center everything */
.pro-heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 25px;
}

/* H2 Heading */
.pro-heading {
  position: relative;
  font-size: 28px;
  font-weight: 600;
  padding: 0 20px;
  margin-bottom: 6px;
  color: #1a1a1a !important;
}





/* Sub heading */
.pro-subheading {
  font-size: 14px;
  color: #444;
}

/* Mobile responsive */
@media (max-width: 576px) {
  .pro-heading {
    font-size: 22px;
    padding: 0px 12px;
  }

  .pro-heading::before,
  .pro-heading::after {
    display: none;
  }

  .faq-item .faq-question {
    text-align: left;
  }

  .faq-section {
    margin: 0px !important;
  }

  .pro-heading-wrap {
    margin-bottom: 0px;
  }


}


/*=======================================================
    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;
  }
}

/*=======================================================
    marquee section 
=========================================================*/

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 40px;
  white-space: nowrap;
}

.marquee-item img {
  width: 40px;
  height: auto;
}

.marquee-item span {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

/* Animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Mobile responsive */
@media (max-width: 576px) {
  .marquee-item img {
    width: 28px;
  }

  .marquee-item span {
    font-size: 14px;
  }

  .marquee-track {
    animation-duration: 60s;
  }
}


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

/* Center wrapper */
.view-all-wrap {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

/* Button style */
.view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  background: linear-gradient(135deg,
      #80452B 0%,
      #AE762C 15%,
      #B47D29 30%,
      #E9D07B 50%,
      #C5984A 70%,
      #AE7F39 85%,
      #80452B 100%);
  color: #0d0d0f;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  /* border-radius: 30px; */
  transition: all 0.3s ease;
}

/* Hover effect */
.view-all-btn:hover {
  background: linear-gradient(135deg,
      #80452B 0%,
      #AE762C 15%,
      #B47D29 30%,
      #E9D07B 50%,
      #C5984A 70%,
      #AE7F39 85%,
      #80452B 100%);
  color: #ffffff;
}

/* Mobile responsive */
@media (max-width: 576px) {
  .view-all-btn {
    padding: 10px 28px;
    font-size: 14px;
  }
}


/*=======================================================
    testimonial-section
=========================================================*/





/*=======================================================
    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: #c9a24d;
  font-size: 25px;
}

.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: rgb(221, 210, 194);
  color: #1a1a1a;
  padding: 8px 20px;
  cursor: pointer;
  box-shadow: 2px solid #1a1a1a;
  border-radius: 5px;
  font-weight: 600;
}

.add-to-cart:hover {
  background-color: rgb(173, 166, 155);
  /* color: #ffffff; */
  color: #000;
  font-weight: 500;
}

.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-black);
  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(--secondary-yellow);
}

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

/*===============================================================
  contact page 
=================================================================*/
.contact-box {
  background: #f1f1f1;
  box-shadow: none;
}

.contact-modern {
  /* background: red; */
  background-color: #fff;
}

.contact-box button {
  color: #fff;
}

.contact-box button:hover {
  color: #ffffff;
}

/*===============================================================
  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; */
  color: #fff;
  background: #fff;
  /* background: #0d0d0f; */
  
}

.golden-heading {
  display: inline-block;
  /* padding: 12px 40px; */
  /* border-radius: 8px; */
  font-weight: 600;
  color: #1a1a1a;
}

.blog-section .container div p {
  color: #333;
}

/*================================================================
  About section 
==================================================================*/
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

/* ================= HERO ================= */
/* .about-hero {
  height: 60vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2)),
    url("../img/banner/short-banner.png") center / cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
} */

.about-hero-content {
  animation: fadeUp 1s ease forwards;
}

.about-hero-content h1 {
  font-size: 52px;
  color: var(--secondary-yellow);
  margin-bottom: 12px;
}

.about-hero-content p {
  font-size: 18px;
  color: var(--light-gray);
}

.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 20px;
}

/* Background Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  color: #000;
  max-width: 800px;
  width: 600px;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 20px;
}

/* Heading Responsive */
.hero-content h1 {
  font-size: 48px;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 0;
}

/* Paragraph Responsive */
.hero-content p {
  font-size: 18px;
  margin-top: 0;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {

  .about-hero {
    height: 50vh;
    min-height: 300px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }
}

/* ================= ABOUT SECTION ================= */
.about-fashion {
  padding: 100px 8%;
  background: var(--white);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-content {
  flex: 1;
  animation: fadeUp 1s ease forwards;
}

.about-tag {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8e6f1c;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark-black);
}

.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #2c2929;
  margin-bottom: 15px;
}


/* ================= STATS ================= */
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.about-stats div {
  transition: transform 0.4s ease;
}

.about-stats div:hover {
  transform: translateY(-6px);
}

.about-stats h3 {
  font-size: 30px;
  margin-bottom: 5px;
  color: #8e6f1c;
  font-weight: 550;
}

.about-stats span {
  font-size: 13px;
  color: #131315;
}

/* ================= IMAGE ================= */
.about-image {
  flex: 1;
  animation: fadeUp 1.2s ease forwards;
  padding: 6px;
  /* border thickness */
  border-radius: 0px;
  background: linear-gradient(145deg,
      #BF953F,
      #FCF6BA,
      #B38728,
      #FBF5B7,
      #AA771C);
}

.about-image img {
  width: 100%;
  /* border-radius: 30px; */
  object-fit: cover;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease;
}

.about-image img:hover {
  transform: scale(1.04);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.25);
}



/* ================= VALUES ================= */
.brand-values {
  padding: 60px 8%;
  background: #f3f4f5;
  text-align: center;
}

.brand-values h2 {
  font-size: 36px;
  color: var(--dark-black);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-box {
  background: var(--white);
  padding: 45px 30px;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  transition: 0.5s ease;
}

.value-box:hover {
  transform: translateY(-14px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.value-box i {
  font-size: 34px;
  margin-bottom: 18px;
  /* color: #8e6f1c; */
  color: #c9a24d;
}

.value-box h4 {
  margin-bottom: 10px;
  color: var(--dark-black);
}

.value-box p {
  font-size: 14px;
  color: #666;
}

/* ================= WHY US ================= */
.why-us {
  padding: 90px 8%;
  background: var(--white);
}

.why-container h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--dark-black);
  text-align: center;
}

.why-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.why-container ul {
  list-style: none;
  max-width: 500px;
  padding: 0;
}

.why-container li {
  font-size: 16px;
  margin-bottom: 18px;
  color: #555;
  transition: transform 0.3s ease;
}

.why-container li:hover {
  transform: translateX(8px);
  color: var(--dark-sky);
}

.why-container ul li span {
  color: var(--dark-sky);
  margin-right: 8px;
}

.why-image {
  max-width: 480px;
  padding: 6px;
  /* border thickness */
  border-radius: 0px;
  background: linear-gradient(145deg,
      #BF953F,
      #FCF6BA,
      #B38728,
      #FBF5B7,
      #AA771C);
}

.why-image img {
  width: 100%;
  /* border-radius: 20px; */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  .why-content {
    flex-direction: column;
    text-align: center;
  }

  .why-container ul {
    margin: auto;
  }
}


/* ================= JOURNEY ================= */
.journey {
  padding: 60px 8%;
  background: #f3f4f5;
  text-align: center;
}

.journey h2 {
  font-size: 36px;
  color: #AA771C;
}

.timeline {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.time-box {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 20px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); */
  transition: 0.4s ease;
}

.time-box:hover {
  transform: translateY(-10px);
}

.time-box span {
  font-size: 26px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  color: #2b2b2b;
}

.time-box p {
  color: #2b2b2b;
}

/* ================= CTA ================= */
.about-cta {
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("../img/products/about-footer.png") center / cover no-repeat;
  padding: 100px 8%;
  color: var(--white);
  text-align: center;
}

.about-cta h2 {
  font-size: 60px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #8e6f1c;
}

.about-cta a {
  display: inline-block;
  padding: 15px 45px;
  background: linear-gradient(135deg,
      #80452B 0%,
      #AE762C 15%,
      #B47D29 30%,
      #E9D07B 50%,
      #C5984A 70%,
      #AE7F39 85%,
      #80452B 100%);

  color: var(--dark-black);
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.4s ease;
}

.about-cta a:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    gap: 25px;
  }

  .about-hero-content h1 {
    font-size: 34px;
  }

  .about-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .about-hero {
    height: 50vh;
  }

  .timeline {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .about-hero-content p {
    font-size: 14px;
  }

  .about-stats {
    flex-direction: column;
    gap: 15px;
  }

  .brand-values h2,
  .why-container h2,
  .journey h2,
  .about-cta h2 {
    font-size: 26px;
  }

  .brand-values {
    padding: 30px 8%;
  }

  .values-grid {
    margin-top: 10px;
    gap: 10px;
  }
}

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

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

.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;
  color: #1a1a1a;
}

.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;
  margin-bottom: 20px;
}

.stat-box {
  padding: 20px;
}

.stat-icon {
  font-size: 30px;
  color: #1a1a1a;
  margin-bottom: 10px;
}


.stat-box h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #131315;
}

.stat-box p {
  font-size: 15px;
  color: #2c2929;
  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: #8e6f1c;
  color: #111;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.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;
  }

  .stat-icon i {
    font-size: 30px;
  }

  .stat-icon h2 {
    font-size: 20px;
  }
}

/* =============================================
mobile responsive
=============================================== */
@media (max-width: 576px) {
  .navbar>.container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .stat-box {
    padding: 0px;
  }

  .fe-box {
    margin: 0px !important;
  }

  /* Golden Gradient Border */
  .about-image {
    padding: 6px;
    /* border thickness */
    border-radius: 0px;
    background: linear-gradient(135deg,
        #80452B,
        #AE7F39,
        #E9D07B,
        #C5984A,

        #B47D29);
    display: inline-block;
  }

  .about-image img {
    display: block;
    width: 100%;
    border-radius: 0px;
    /* thoda kam rakho padding se */
    object-fit: cover;
  }

  .about-fashion {
    padding: 20px 8%;
  }

  .value-box {
    padding: 10px 20px;
  }

  .why-us {
    padding: 30px 8%;
  }

  .why-container li {
    font-size: 14px;
  }

  .why-container h2 {
    margin-bottom: 10px;
  }

  /* Gradient Border Wrapper */
  .why-image {
    display: inline-block;
    padding: 5px;
    /* border thickness */
    border-radius: 25px;
    background: linear-gradient(135deg,
        #80452B,
        #AE7F39,
        #E9D07B,
        #C5984A,
        #AE762C,
        #B47D29);
  }

  /* Image Styling */
  .why-image img {
    display: block;
    width: 100%;
    border-radius: 20px;
    /* padding se thoda kam */
    object-fit: cover;
  }

  .why-content {
    gap: 10px;
  }

  .contact-modern {
    padding: 20px 20px;
  }

  .contact-left {
    padding: 15px;
  }

  .contact-right {
    padding: 15px;
  }
}

/* ===== Mobile Horizontal Stats Fix ===== */
@media (max-width: 768px) {

  .category-link {
    display: none;
  }

  .about-stats {
    display: flex;
    flex-direction: row;
    /* horizontal */
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
    /* line break band */
    margin-top: 20px;
  }

  .about-stats div {
    flex: 1;
    /* sab equal width */
    text-align: center;
  }

  .about-stats h3 {
    font-size: 18px;
    /* number size mobile ke liye */
    margin-bottom: 2px;
  }

  .about-stats span {
    font-size: 11px;
    /* text chhota */
    display: block;
  }

}

@media (max-width: 768px) {

  .feature-track {
    display: flex;
    gap: 6px;
    /* categories ke beech ka gap */
  }

  .fe-box {
    flex: 0 0 85px;
    /* 👈 yaha width control hoti hai */
    max-width: 85px;
    padding: 6px 4px;
  }

  .circle-img {
    width: 65px;
    height: 65px;
    margin: 0 auto;
  }

  .fe-box h6 {
    font-size: 11px;
    margin-top: 4px;
  }

  .collection-heading {
    padding: 0px 10px;
  }





  /* Category Filter Small Size */
  #categoryFilter {
    font-size: 12px;
    /* text chhota */
    padding: 4px 8px;
    /* andar ka space kam */
    height: 32px;
    /* box height kam */
  }

  /* Mobile me aur chhota karna ho to */
  @media (max-width: 768px) {
    #categoryFilter {
      font-size: 11px;
      padding: 3px 6px;
      height: 28px;
    }
  }

  /* Product Sort Small Size */
  #productSort {
    font-size: 12px;
    /* text chhota */
    padding: 4px 8px;
    /* andar ka space kam */
    height: 32px;
    /* box height kam */
  }

  /* Mobile me aur chhota */
  @media (max-width: 768px) {
    #productSort {
      font-size: 11px;
      padding: 3px 6px;
      height: 28px;

    }
  }
}



.btn-forest {
  color: #eeebeb;
}

.btn-forest:hover {
  color: #99999b;
}

.blog-card {
  background: #1a1a1a;
  border-radius: 0px;
  border: 3px solid #d0bd6a;
}