@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300..900&display=swap');

/* font-import */
@font-face {
  font-family: 'myfont';
  src: url(./font/FrankRuhlLibre-Black.ttf);
}

@font-face {
  font-family: 'myfont-bold';
  src: url(./font/FrankRuhlLibre-Bold.ttf);
}

@font-face {
  font-family: 'myfont-light';
  src: url(./font/FrankRuhlLibre-Light.ttf);
}

@font-face {
  font-family: 'myfont-medium';
  src: url(./font/FrankRuhlLibre-Medium.ttf);
}

@font-face {
  font-family: 'myfont-regular';
  src: url(./font/FrankRuhlLibre-Regular.ttf);
}

html,
body {
  overflow-x: hidden;
  /* font-family:myfont; */
}

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

header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}


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

.top-header {
  background-color: #543628;
  padding: 20px 0;
}

.top-header-left a span {
  margin-right: 10px;
}

.top-header i {
  color: #fff;
  font-size: 20px;
}

.top-header-right {
  display: flex;
}

.icon-sec {
  display: flex;
  align-items: center;
}

.social-media-sec {
  display: flex;
  align-items: center;
}

.social-media-sec a i {
  padding: 0 15px !important;
}

.top-header-left {
  display: flex;
}

.top-header a {
  font-family: myfont;
  position: relative;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

.top-header a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #fff;
  /* underline color */
  transition: width 0.4s ease;
}

/* hover animation */
.top-header a:hover::after {
  color: #000;
  width: 100%;
}

.top-header-right .icon-sec a::after {
  content: "";
  display: none;
}

.top-header-right .icon-sec a:hover {
  color: #000;
}

.social-media-sec a::after {
  content: "";
  display: none;
}

.top-call {
  margin-right: 30px;
}

.top-header-right a i {
  font-size: 20px;
  padding: 0 20px;
}

.top-header-right .icon-sec {
  margin-right: 50px;
}

/* top-header-bottom */
.top-header-bottom p {
  font-family: myfont;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: #543628;
  margin: 0;
}

.top-header-bottom {
  padding: 18px 0;
}

.top-header-bottom a {
  color: #543628;
  text-decoration: none;
}

/* header-css */
.main_header .container {
  background-color: #543628;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.logo img {
  padding: 10px 0;
  width: 100%;
  height: 100px;
}

.r-nav {
  display: flex;
  align-items: center;
}

.r-nav a i {
  color: #fff;
  margin-left: 30px;
}

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

.main_header .container {
  padding: 0 20px;
}

.main_header i {
  font-size: 20px;
}

/*====================================== Start navigation ========================================*/
.navigation_area .nav_sec {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

.navigation_area .nav_sec ul {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

.navigation_area .nav_sec ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  margin: 0 28px 0 0;
  position: relative;
}

.navigation_area .nav_sec ul li:last-child {
  margin-right: 0;
}

.navigation_area .nav_sec ul li+li {
  margin-left: 30px;
}

.navigation_area .nav_sec ul li a {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 85px;
  text-transform: capitalize;
  transition: 0.8s;
  text-decoration: none;
}

.main_header .navigation_area .nav_sec ul .dropdown>a:after {
  content: "\f107";
  font-weight: 800;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 2px;
  right: -4px;
}

.navigation_area .nav_sec ul li .header_book_appointment_btn {
  margin-left: 148px;
  color: #000;
  font-family: myfont;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  position: relative;
}

/* .header_book_appointment_btn::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: -10px;
    width: 45px;
    height: 45px;
    border-radius: 100px;
    background-color: #0D3DE5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
} */

/* Icon Forward */


.right-nav-sec a i {
  color: var(--color-2);
}

.nav_sec ul a:hover {
  color: #fff !important;
}

/* .nav_sec ul a::before {
    content: '';
    display: block;
    height: 3px;
    background-color: #FF621F;
    position: absolute;
    top: 20px;
    width: 0%;
    transition: all 0.3s ease-in-out;
} */

.nav_sec ul a::after {
  content: '';
  display: block;
  height: 3px;
  background-color: #fff;
  position: absolute;
  bottom: 20px;
  width: 0%;
  transition: all 0.3s ease-in-out;
}

.nav_sec ul a:hover::after {
  width: 100%;
}

/* .nav_sec ul a:hover::before {
    width: 100%;
} */

.nav_sec ul li ul li a:hover {
  background-color: var(--color-3);
}

.right-nav-sec {
  display: flex;
}

.right-nav-sec a {
  margin-right: 15px;
}


.navigation_area .nav_sec ul li ul {
  width: max-content;
  background: linear-gradient(225deg, #DE3D05 0%, #B60505 100%);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  display: none;
  text-align: left;
}

.navigation_area .nav_sec ul li:hover ul {
  display: block;
}

.navigation_area .nav_sec ul li ul li {
  width: 100%;
  /* float: left; */
  margin: 0;
  padding: 0;
}

.navigation_area .nav_sec ul li ul li+li {
  border-top: 1px solid var(--color-2);
}

.nav_sec ul>.active>a {
  color: var(--color-1);
}


.navigation_area .nav_sec ul li ul li a {
  margin: 0;
  padding: 10px 10px;
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  font-family: myfont;
  font-size: 17px;
}


/* .navigation_area .nav_sec>ul>li:last-child {
    display: none;
} */

span.toggle-menu {
  display: none;
}

.toggle-menu img {
  width: 50px;
}


/* navigation-end */

.wallet i {
  color: #543628;
}

.wallet a i {
  color: #543628;
  margin: 0;
}

.wallet {
  padding: 4px 15px 4px 15px;
  background-color: #fff;
  border-radius: 28px;
}

.wallet span {
  font-weight: 600;
  margin-left: 4px;
}

/* search-bar-css */
.top-header-search {
  position: relative;
  display: inline-block;
}

.top-header-search a {
  color: #543628;
  font-size: 20px;
  text-decoration: none;
}

/* hidden by default */
.search-box {
  position: absolute;
  top: 40px;
  right: 0;
  background: #fff;
  border-radius: 30px;
  padding: 6px 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-box i {
  color: #000;
}

.search-box input {
  border: none;
  outline: none;
  padding: 8px;
  font-size: 14px;
  color: #543628;
  width: 180px;
}

.search-box button {
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.3s ease;
  background-color: inherit;
}

/* .search-box button:hover {
  background: #6a4a3b;
} */

/* show when active */
.search-box.active {
  width: 250px;
  opacity: 1;
}

/* login-form */
.top-header-user {
  position: relative;
  display: inline-block;
}

.top-header-user a {
  color: #543628;
  font-size: 22px;
  text-decoration: none;
}

.user-box {
  position: absolute;
  top: 45px;
  right: 0;
  width: 260px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  z-index: 999;
}

.user-box.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.user-box form {
  display: none;
  transition: all 0.3s ease;
}

.user-box form.active {
  display: block;
}

.user-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #543628;
  text-align: center;

  text-transform: uppercase;
}

.user-box input {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.user-box button[type="submit"] {
  width: 100%;
  padding: 10px;
  background: #543628;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s ease;
}

.user-box button[type="submit"]:hover {
  background: #6a4a3b;
}

.user-box p {
  text-align: center;
  font-size: 15px;
  margin-top: 10px;
}

.user-box p a {
  font-size: 16px;
  color: #543628;
  text-decoration: none;
  font-weight: 600;
}

/* ❌ Close button */
.close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: #543628;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #a96f50;
}

/* add-to-cart */
.add-to-cart-btn {
  position: relative;
  display: inline-block;
}

.add-to-cart-btn a {
  color: #543628;
  font-size: 22px;
  text-decoration: none;
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: 0;
  background: #e63946;
  /* red color for badge */
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* language-css */
.language {
  position: relative;
  display: inline-block;
}

.language a.lang-btn {
  color: #333;
  font-size: 20px;
  text-decoration: none;
  padding: 8px;
}

.language-dropdown {
  position: absolute;
  top: 35px;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  display: none;
  /* Hidden by default */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 100;
}

.language-dropdown li {
  padding: 6px 16px;
}

.language-dropdown li a {
  color: #333;
  text-decoration: none;
  display: block;
}

.language-dropdown li:hover {
  background: #f2f2f2;
}

.language.show .language-dropdown {
  display: block;
}

/* notification-css */
.notification {
  position: relative;
  display: inline-block;
}

.notification a.notify-btn {
  color: #333;
  font-size: 20px;
  padding: 8px;
  text-decoration: none;
  position: relative;
}

.notification-dropdown {
  position: absolute;
  top: 35px;
  right: 0;
  width: 260px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 100;
}

.notification-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 12px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  transform: rotate(45deg);
}

.notify-item {
  padding: 10px 12px;
  border-bottom: 1px solid #f2f2f2;
}

.notify-item:last-child {
  border-bottom: none;
}

.notify-item p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.notify-item span {
  font-size: 12px;
  color: #999;
}

.no-notify {
  text-align: center;
  padding: 12px;
  color: #777;
  font-size: 14px;
}

.notification.show .notification-dropdown {
  display: block;
}

.notification a.notify-btn::after {
  content: "3";
  /* number of notifications */
  position: absolute;
  top: 2px;
  right: 2px;
  background: red;
  color: #fff;
  font-size: 10px;
  border-radius: 50%;
  padding: 2px 5px;
}

/* banner-css */
.banner-slider-sec {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 1000px;
  height: 100%;
  background-position-x: 90%;

}

.banner {
  position: relative;
}
.banner .slick-dotted.slick-slider{
  margin-bottom: 0;
}
.banner .slick-dots{
bottom: 31px;
}
.banner .slick-dots li button:before{
  font-size: 18px;
}


.banner img {
  width: 100%;
}

.banner-content {
  position: absolute;
  top: 62%;
  left: 33%;
  transform: translate(-50%, -50%);
}

.banner-content h1 {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 90px;
  color: #543628;
  margin-bottom: 5px;
}

.banner-content h3 {
  /* font-family:myfont-regular; */
  color: #543628;
  font-size: 33px;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 20px;
  width: 550px;
  margin-bottom: 40px;
}

.product-btn a {
  /* font-family:myfont-regular; */
  font-weight: 500;
  font-size: 19px;
  background-color: #543628;
  padding: 16px 35px;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.8s;
}
.product-btn a:hover{
  background-color: #543628b0;
}

/* categories-css */
.categories {
  padding: 100px 0;
  background-color: #f7f7f6;
}

.cmn-heading h2 {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 60px;
  color: #543628;
  text-transform: uppercase;
  margin-bottom: 80px;
  text-align: center;
}

.categories-card .c-img {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin-bottom: 25px;
}


.categories-card {
  overflow: hidden; /* ensures image doesn’t overflow */
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.categories-card .c-img {
  overflow: hidden;
}

.categories-card img {
  width: 100%;
  transition: transform 0.5s ease;
}

/* Hover effect: zoom in */
.categories-card:hover img {
  transform: scale(1.1);
}

/* Optional smooth “zoom out” when hover ends */
.categories-card img {
  transform-origin: center;
}
.categories-card .c-img img {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  object-fit: cover;
}

.c-heading {
  color: #543628;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}


.categories .col-md-3 {
  display: flex;
  justify-content: center;
}

.categories-card a {
  text-decoration: none;
}

/* our-products-css */
.our-products {
  padding: 100px 0;
}

.our-products a {
  text-decoration: none;
}

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

.our-products-heading h2 {
  font-family: "Frank Ruhl Libre", serif;
  color: #6e4938;
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 5px;
}

.our-products-heading h3 {
  font-family: "Frank Ruhl Libre", serif;
  color: #6e4938;
  font-size: 45px;
  margin-bottom: 15px;
}

.our-products-heading p {
  font-size: 20px;
  color: #6e4938;
  width: 500px;
  margin: 0 auto;
}

.products-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 24px;

}

.our-products .row .col-md-7 .col-md-6 {
  margin-bottom: 40px;
}

.products-card {
  background: #fff;
  text-align: center;
  overflow: hidden;
  padding: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.products-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.products-bg {
  background-color: #f7f7f6;
  padding: 15px;
}

.products-name {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 28px;
  color: #543628;
  font-weight: 800;
  text-transform: capitalize;

  margin-top: 43px;
}

.products-price {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 19px;
  color: #543628;
  font-weight: 400;
  margin-bottom: 10px;
}

.main-price {
  text-decoration: line-through;
}

.products-rating {
  margin-bottom: 25px;
}

.products-rating i {
  color: #e7da02;
}

.products-right {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.products-right .products-card img {
  height: 500px;
}

.products-right .products-bg {
  padding-bottom: 245px;
}

.our-products .slick-dots {
  margin-bottom: 155px;
}

/* Make slick dots into horizontal lines */
.our-products .slick-dots li button:before {
  content: "";
  width: 15px;
  /* line length */
  height: 2px;
  /* line thickness */
  background-color: #000 !important;
  /* default color */
  display: block;
  border-radius: 0;
  transition: all 0.3s ease;
}

/* Remove default round shape spacing */
.our-products .slick-dots li {
  width: 15px;
  margin: 0 5px;
}

/* Active line color */
.our-products .slick-dots li.slick-active button:before {
  background-color: #543628;
  /* active color */
  opacity: 1;
}

.our-products .slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.equal-row {
  display: flex;
  align-items: stretch;
  /* makes columns equal height */
}

.equal-row>[class*="col-"] {
  display: flex;
  flex-direction: column;
}

.products-img {
  overflow: hidden;
  border-radius: 24px;
}

.products-card,
.products-bg {
  /* border-radius: 24px; */
  overflow: hidden;
}


.products-img img {
  width: 100%;
  transition: transform 0.5s ease;
  /* smooth zoom effect */
}

.products-card:hover .products-img img {
  transform: scale(1.1);
  /* zoom in 10% */
}

.products-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.products-view-button a {
  background-color: #543628;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  padding: 20px 40px;
  text-transform: capitalize;
  border-radius: 50px;
  transition: 0.8s;
}
.products-view-button a:hover{
  background-color: #000;
}

.products-view-button {
  margin-top: 70px;
  text-align: center;
}

/* featured-products */
.featured-products {
  background-color: #f7f7f6;
  position: relative;
  overflow: hidden;
  padding: 85px 0;
}

.featured-products::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  /* full width */
  height: 100%;
  /* full height */
  background-image: url("images/featured.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  /* or cover depending on layout */
  background-position: right center;
  /* align image to the right */
  z-index: 1;
  pointer-events: none;
  /* makes image non-clickable */
}

/* White overlay only on image area */
.featured-products::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 586px;
  height: 100%;
  background: rgba(17, 17, 17, 0.6);
  /* white overlay */
  z-index: 2;
  pointer-events: none;
}

/* Ensure main content appears above overlay */
.featured-products>* {
  position: relative;
  z-index: 3;
}

.featured-products .cmn-heading h2 {
  text-align: left;
}

.featured-products .cmn-heading h2 span {
  font-size: 20px;
}

.featured-products .products-bg {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

.featured-products .products-card {
  box-shadow: none;
  background-color: inherit;
}

.featured-products .f-slider a {
  text-decoration: none;
  background-color: inherit;
}

.featured-products .products-card img {
  height: 175px;
  border-radius: 10px;
}

.featured-products .products-img {
  border-radius: 10px;
}

.featured-products .products-name {
  margin-top: 25px;
}

/* make space for arrows above the slider */
.featured-products-slider {
  position: relative;
  padding-top: 50px;
}

/* Common arrow style */
.featured-products-slider .slick-prev,
.featured-products-slider .slick-next {
  position: absolute;
  top: 10px;
  width: 36px;
  height: 36px;
  border: 1px solid #333;
  /* square border */
  background: #fff;
  color: #333;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  line-height: 1;
}

/* side-by-side positioning */
.featured-products-slider .slick-prev {
  border-right: none;
}

.featured-products-slider .slick-next {}

/* hover effect */

.featured-products-slider .slick-prev {
  left: inherit;
  right: 0;
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

.featured-products-slider {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  /* space for arrows at top */
}

/* common style */
.featured-products-slider .slick-prev,
.featured-products-slider .slick-next {
  position: absolute;
  top: -100px;
  width: 60px;
  height: 60px;
  border: 1px dotted #fff;
  background-color: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  /* arrow size */
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

/* place them together */
.featured-products-slider .slick-prev {
  right: 100px;
  border-radius: inherit;
  background-image: url("images/left-arrow.png");
}

.featured-products-slider .slick-next {
  right: 20px;
  border-radius: inherit;
  background-image: url("images/right-arrow.png");
}

.more-products-btn a {
  font-family: "Frank Ruhl Libre", serif;
  text-decoration: none;
  color: #543628;
  font-size: 22px;
  font-weight: 600;
  padding: 25px 35px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-image-slice: 1;
  border-image-source: repeating-linear-gradient(40deg,
      #543628 0 10px,
      transparent 10px 20px);
  transition: all 0.4s ease;
}

.more-products-btn a:hover {
  color: #fff;
  background-color: #543628;
  transform: scale(1.05);
}

.more-products-btn {
  margin-top: 90px;
  text-align: center;
}

/* footer-top-sec-css */
.footer-top-sec {
  background-color: #543628;
  padding: 100px 0;
}

.footer-top-content {
  display: flex;
}

.footer-top-sec .f-t-icon i {
  font-size: 30px;
  color: #000;
}

.f-t-icon {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 20px;
}

.f-t-icon {
  flex-shrink: 0;
  /* prevent stretching */
}

.footer-top-sec h4 {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.footer-top-sec p {
  font-size: 17px;
  color: #fff;
  margin-bottom: 0;
}

/* footer-css */
.footer {
  padding: 70px 0 20px 0;
  background-color: #f7f7f6;
}

.footer-left-btm {
  display: flex;
}

.footer h3 {
  font-family: "Frank Ruhl Libre", serif;
  color: #543628;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 40px;
}

.footer-right ul {
  padding-left: 0;
}

.footer-right ul li {
  list-style-type: none;
  margin-bottom: 15px;
}

.footer-right ul li a {
  font-size: 23px;
  font-weight: 500;
  color: #543628;
  text-decoration: none;
}

.footer-left {
  border-right: 1px solid #877b75;
}

.footer-img img {
  width: 200px;
  height: 200px;
  margin-bottom: 35px;
}

.footer-con {
  width: 100%;
  max-width: 600px;
}

.footer-con p {
  font-size: 25px;
  color: #543628;
  margin-bottom: 30px;
}

.footer-left-top {
  border-bottom: 1px solid #877b75;
  width: 600px;
}

.footer-left-btm {
  margin-top: 30px;
}

.web-link {
  padding-left: 80px;
}

.footer-left-btm h4 {
  font-size: 25px;
  color: #6e4938;
  margin-bottom: 20px;
}

.footer-left-btm h4 span {
  padding-right: 15px;
}

.footer-left-btm a {
  position: relative;
  font-size: 25px;
  color: #6e4938;
  font-weight: 700;
  text-decoration: none;
}

.footer-menu {
  margin-left: 60px;
  padding-top: 100px;
}

.main-footer {
  border-bottom: 1px solid #857972;
  padding-bottom: 40px;
}

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

.bottom-footer p {
  font-size: 18px;
  font-weight: 500;
  color: #6e4938;
  margin-bottom: 0;
}

.bottom-footer p a {
  color: #6e4938;
  text-decoration: none;
}

.btm-f-right i {
  font-size: 20px;
  color: #6e4938;
  margin-left: 20px;
}

.bottom-footer {
  padding-top: 20px;
}

.footer a {
  position: relative;
  text-decoration: none;
}

/* underline effect */
.footer a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #6e4938;
  /* underline color */
  transition: width 0.4s ease;
}

.footer a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #6e4938;
  /* underline color */
  transition: width 0.4s ease;
}

/* hover animation */
.footer a:hover::after {
  color: #000;
  width: 100%;
}

.btm-f-right a::after {
  content: "";
  display: none;
}

.btm-f-right a:hover i {
  color: #000;
}


/* INNER-PAGE-CSS */
.inner-page header {
  background-color: #f9f8f6;
  position: unset;
  padding: 0 0 50px 0;
}

.products-listing {
  padding: 100px 0;
}

.products-listing-left {
  background: #f9f8f6;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 12px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

/* .products-listing-right {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
} */

/* .products-listing-card {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
} */

/* .products-listing-card:hover,
.products-listing-card.active {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transform: translateY(-3px);
} */
.p-heading {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  color: #543628;
}

.p-img {
  height: 180px;
  width: 100%;
  max-width: 180px;
  border-radius: 50%;
  border: 4px solid #fff;
}

/* .products-listing-card a{
    text-decoration: none;
} */

.category-products {
  display: none;
  animation: fadeIn 0.4s ease;
}

.category-products.show {
  display: block;
}

.product-card {
  position: relative;
  background: #f8f7f5;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 15px;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  height: 351px;
  object-fit: cover;
  /* margin-bottom: 25px; */
}

.product-info {
  flex: 1;
}

.product-info small {
  font-size: 20px;
  color: #5c3a21;
}


.product-info h5 {
  margin: 5px 0;
  font-weight: 600;
  font-size: 30px;
  color: #5c3a21;
}

.stars {
  color: #ffb400;
  font-size: 27px;
}

.price {
  font-weight: 600;
}

.price del {
  font-size: 19p;
  color: #aaa;
  margin-left: 5px;
}

.add-btn {
  background: #5c3b1e;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 10px;
}

.add-btn:hover {
  background: #714b25;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* .products-listing-card.active {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transform: translateY(-3px);
  border-right: 4px solid #5c3b1e; 
} */
.tital-with-quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 20px;
}

.products-listing-right a {
  text-decoration: none;
}

.product-card .price {
  font-size: 20px;
  color: #543628;
}

.add-btn {
  font-size: 17px;
  padding: 8px 50px;
}

.products-listing-left {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0 15px;
  overflow: hidden;
}

.sidebar-title {
  font-size: 23px;
  font-weight: 600;
  color: #fff;
  padding: 14px 20px;
  margin-bottom: 5px;
  border-bottom: 1px solid #eee;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: #543629;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.products-listing-card {
  border-right: 4px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.products-listing-card a {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.products-listing-card:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: #f1f1f1;
}

.products-listing-card:hover a {
  color: #5c3b1e;
  background: #f9f6f1;
}

.products-listing-card.active a {
  color: #5c3b1e;
  background: #f3ede6;
  font-weight: 600;
}

.products-listing-card.active {
  border-right: 4px solid #5c3b1e;
}

.p-heading {
  text-transform: capitalize;
  letter-spacing: 0.4px;
}

@media (max-width: 768px) {
  .products-listing-left {
    box-shadow: none;
    border: 1px solid #eee;
  }

  .sidebar-title {
    font-size: 16px;
    padding: 12px 16px;
  }

  .products-listing-card a {
    padding: 12px 16px;
    font-size: 15px;
  }
}

.category-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: #fff;
  background-color: #543628;
  border-radius: 10px;
  padding: 13px 20px;
}

/* 🔥 Offer Badge (Top Right Corner) */
.offer-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e63946;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 8px;
  border-radius: 25px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 9;
}

.products-listing-right .col-md-6 {
  margin-bottom: 20px;
}

.produc-img {
  overflow: hidden;
  border-radius: 12px;
}


.product-card img {
  width: 100%;
  transition: transform 0.4s ease;
}

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

.products-listing-right .products-img img {
  height: 350px;
}

.products-listing-right .products-name {
  margin-top: 22px;
}

.products-listing-right .products-bg {
  position: relative;
}

/* categories-details-page-css */
.slider-nav .slick-slide {
  padding: 0 2px;
  /* 5px space on left and right */
}

.categories-details {
  padding: 90px 0;
}

.categories-details .c-d-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}

.categories-details-left {}

.categories-details-left .slider-for img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.categories-details-left .slider-nav {
  margin-top: 10px;
}

.categories-details-left .slider-nav img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

.categories-details-left .slider-nav .slick-current img {
  opacity: 1;
  border: 4px solid #543629;
}

.categories-details-heading h3 {
  font-family: "Frank Ruhl Libre", serif;
  margin-top: 10px;
  font-size: 45px;
  font-weight: 700;
  color: #543629;
  margin-bottom: 15px;
}

.categories-details-right {
  padding-left: 30px;
}

.categories-details-rating i {
  color: #e7da02;
  font-size: 20px;
}

.categories-details-price {
  margin-top: 20px;
  font-size: 25px;
  font-weight: 700;
  color: #543629;
}

.categories-details-price span {
  font-size: 24px;
  color: #9f9f9f;
}

.quantity-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-right: 35px;
}

.qty-btn {
  background: #543629;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 30px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qty-btn:hover {
  background: #5436299c;
}

.qty-input {
  width: 50px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 5px 4px 5px 15px;
}

.add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #543629;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.add-to-cart-btn:hover {
  background: #5436299c;
}

.quantity-and-add-to-cart {
  display: flex;
  align-items: center;
}

.quantity-and-add-to-cart {
  margin-top: 20px;
}

.products-describtion {
  margin-top: 45px;
  padding: 20px 20px;
  background: #f9f5ec;
  border: 1px solid #333;
  border-radius: 12px;
  margin-bottom: 30px;
}

.products-describtion h4 {
  font-size: 30px;
  font-weight: 700;
  color: #54362a;
}

.products-describtion P {
  font-size: 20px;
  margin-bottom: 0;
  margin-top: 10px;
}

.products-describtion ul {
  margin-top: 10px;
}

.products-describtion ul li {
  font-size: 18px;
  list-style-type: disclosure-closed;
  line-height: 35px;
}

.prod-order-box,
.prod-one-time-sec,
.prod-subscription-sec,
.prod-time-slot {
  font-family: "Poppins", sans-serif;
  margin-bottom: 25px;
}

.prod-time-slot {
  margin-bottom: 0;
}

.order-type-with-all-date {
  background: #f9f5ec;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
}

.prod-order-box h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.prod-order-btns {
  display: flex;
  gap: 10px;
}

.prod-btn-order {
  flex: 1;
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 600;
  background: #eee2c8;
  color: #333;
  transition: 0.3s;
}

.prod-btn-order.active {
  background: #5c3b23;
  color: #fff;
}

.prod-sub-btns {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.prod-btn-sub {
  flex: 1;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-weight: 600;
  cursor: pointer;
  background: #eee2c8;
  color: #333;
  transition: 0.3s;
}

.prod-btn-sub.active {
  background: #5c3b23;
  color: #fff;
}

.prod-label {
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
  font-size: 15px;
}

.prod-date-box {
  display: flex;
  align-items: center;
  background: #eee2c8;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  width: fit-content;
  cursor: pointer;
}

.prod-date-input {
  background: transparent;
  border: none;
  outline: none;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.prod-date-box i {
  margin-left: 10px;
  color: #5c3b23;
}

.prod-date-range {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.prod-days-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.prod-days-btns button {
  background: #eee2c8;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.prod-days-btns button.active {
  background: #5c3b23;
  color: #fff;
}

.prod-slot-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.prod-btn-slot {
  flex: 1;
  background: #eee2c8;
  border: none;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  font-weight: 600;
  color: #333;
  transition: 0.3s;
}

.prod-btn-slot.active {
  background: #5c3b23;
  color: #fff;
}

.prod-btn-proceed a{
  display: block;
  width: 100%;
  background: #5c3b23;
  color: #fff !important;
  border: none;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  text-decoration: none;

}

.prod-btn-proceed a:hover {
  background: #442c1b;
}

@media (max-width: 480px) {

  .prod-order-btns,
  .prod-sub-btns,
  .prod-slot-btns {
    flex-direction: column;
  }
}
.prod-custom-days{
  margin-bottom: 25px;
}

/* subscription-css-start */
.month-plan {
  background: #fffaf4;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 50px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  font-family: 'Poppins', sans-serif;
}

.month-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.month-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #4b2e15;
  margin: 0;
}

.nav-btn {
  background: #4b2e15;
  color: #fff;
  border: none;
  font-size: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.nav-btn:hover {
  background: #6a4020;
}
.scroll-date-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 50px;
}

.scroll-date-wrapper {
  display: flex;
  gap: 10px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  white-space: nowrap;
  flex: 1;
  padding: 10px 0;
}

.scroll-date-box {
  flex: 0 0 auto;
  width: 60px;
  height: 65px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fdf8f0;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.25s ease;
}

.scroll-date-box span {
  font-size: 12px;
  color: #777;
  margin-bottom: 2px;
}

.scroll-date-box strong {
  font-size: 16px;
}

.scroll-date-box:hover {
  background: #ececec;
}

.scroll-date-box.active {
  background: #5a3826;
  color: #fff;
}

.scroll-date-box.active span {
  color: #fff;
}

.scroll-date-btn {
  background: #5a3826;
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.scroll-date-btn:hover {
  background: #7b4b31;
}

/* ------- */


.plan-day-section {
  background: #fdf8ef;
  border-radius: 20px;
  margin-bottom: 50px;
  padding: 30px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.plan-day-section-wrapper{
      background: #fef9f1;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #e0d2b9;
}

.plan-day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.plan-day-title {
  font-size: 24px;
  color: #543a1e;
  margin: 0;
}

.plan-day-add-btn {
  background: #5b3a1c;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
}

.plan-card-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Card styling */
.plan-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  padding: 20px;
  position: relative;
}

.plan-card-img img {
  width: 120px;
  border-radius: 15px;
}

.plan-card-details {
  flex: 1;
  padding: 0 20px;
}

.plan-card-size {
  color: #6b6b6b;
  margin: 0;
  font-size: 14px;
}

.plan-card-name {
  font-size: 18px;
  font-weight: 600;
  margin: 5px 0;
  color: #3a2a16;
}

.plan-card-rating {
  color: #f5b400;
  margin-bottom: 8px;
}

.plan-card-price {
  font-size: 16px;
  color: #3a2a16;
}

.plan-card-new {
  font-weight: bold;
  margin-right: 10px;
}

.plan-card-old {
  color: #999;
  text-decoration: line-through;
}

/* Quantity */
.plan-card-qty {
  display: flex;
  align-items: center;
  background: #f6efde;
  border-radius: 30px;
  overflow: hidden;
}

.plan-card-minus,
.plan-card-plus {
  border: none;
  background: transparent;
  font-size: 18px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  color: #5b3a1c;
}

.plan-card-input {
  border: none;
  width: 40px;
  text-align: center;
  background: transparent;
  font-size: 16px;
  color: #3a2a16;
}

/* Remove Button */
.plan-card-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: #5b3a1c;
  color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 16px;
  cursor: pointer;
}


.plan-summary-section {
  background: #fff;
  padding: 20px 25px;
  border-top: 1px solid #e6e0d3;
}

.plan-summary-container {
  max-width: 800px;
  margin: 0 auto;
}

.plan-summary-start {
  font-size: 16px;
  color: #3a2a16;
  margin-bottom: 10px;
}

.plan-summary-footer {
  background: #523322;
  color: #fff;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.plan-summary-total {
  font-size: 20px;
  font-weight: 600;
}

.plan-summary-total span {
  font-weight: 700;
}

.plan-summary-btn  a{
  position: relative;
  background: #fff;
  color: #000;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    transition: 0.8s;
}


.plan-summary-btn a:hover{
  background-color: #fdf8ef;
}

/* Responsive */
@media (max-width: 600px) {
  .plan-summary-footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.plan-card-list a{
  text-decoration: none;
}
.subscription-page{
  padding: 80px 0;
}
.plan-col {
  flex: 1 1 calc(50% - 20px);
  max-width: calc(50% - 20px);
  transition: all 0.4s ease;
  overflow: hidden;
}

.plan-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 15px;
  position: relative;
  height: 100%;
  transition: all 0.4s ease;
  transform-origin: top center;
}

/* Smooth removal animation */
.plan-col.removing {
  opacity: 0;
  transform: scale(0.9);
  max-height: 0;
  padding: 0;
  margin: 0;
  transition: all 0.6s ease;
}


@media (max-width: 768px) {
  .plan-col {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.col-md-6.plan-col{
  margin-bottom: 25px;
}
/* #monthTitle{
  display: none;
} */
 /* cart-list-css */
 /* Wrapper */

 /* add-to-cart-page-css */
 .add-to-cart-page{
  padding: 80px 0;
 }
.cart-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Header */
.cart-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 35px;
  background-color:#543629;
  border-radius: 10px;
  padding: 5px 0;
}

.add-to-cart-page .cart-back-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #4e342e;
    background-color: #fff;
    border-radius: 7px;
    position: absolute;
    left: 10px;
}
.add-to-cart-page .cart-back-btn a{
  text-decoration: none;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3a2a16;
  padding: 10px;
}

.add-to-cart-page .cart-title {
  color: #fff;
  font-weight: 600;
  font-size: 40px;
}

/* Cart Item */
.cart-item {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.cart-item:hover {
  transform: translateY(-3px);
}

.cart-remove-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  border: none;
  background: #5d4037;
  color: #fff;
  font-size: 16px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
}

/* Image */
.cart-image img {
  width: 120px;
  height: auto;
  border-radius: 15px;
}

/* Info */
.cart-info {
  flex: 1;
  margin-left: 20px;
}

.cart-size {
  color: #777;
  font-size: 14px;
}

.cart-name {
  font-size: 18px;
  color: #3e2723;
  margin: 5px 0;
}

.cart-rating {
  color: #ffb300;
  font-size: 16px;
}

.cart-price {
  margin-top: 5px;
}

.cart-new {
  font-weight: 600;
  font-size: 18px;
  color: #3e2723;
  margin-right: 10px;
}

.cart-old {
  text-decoration: line-through;
  color: #aaa;
}

/* Quantity */
.cart-qty-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f4e7ce;
  padding: 5px 10px;
  border-radius: 20px;
}

.cart-qty-box button {
  border: none;
  background: none;
  font-size: 20px;
  color: #6d4c41;
  cursor: pointer;
}

.cart-qty {
  font-size: 16px;
  color: #3e2723;
}

/* Coupon Section */
.c-code{
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  
}
.coupon-wrapper {
  background: #fef9f1;
  border-radius: 15px;
  padding: 20px;
  border: 1px solid #e0d2b9;
}

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

.coupon-title {
  color: #3e2723;
  font-size: 18px;
}

.coupon-link {
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  background-color: #5a3d2c;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    transition: 0.8s;
}
.coupon-link:hover{
  background: #6d4c41;
}

.coupon-divider {
  margin: 15px 0;
  border: 1px solid #e0d4c5;
}

.coupon-form {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 15px;
}

.coupon-input {
  flex: 1;
  padding: 12px;
  border: 2px solid #d7ccc8;
  border-radius: 12px 0 0 12px;
  font-size: 14px;
}

.coupon-apply-btn {
  background: #4e342e;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 0 12px 12px 0;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s ease;
}

.coupon-apply-btn:hover {
  background: #6d4c41;
}
.coupon-list {
  background: #fff7ec;
  border: 1px dashed #c7a775;
  margin-top: 10px;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  position: relative;
}

.coupon-list p {
  margin: 5px 0;
}

/* Remove (close) button */
.coupon-close-btn {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  font-size: 16px;
  color: #a94442;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.coupon-close-btn:hover {
  transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 600px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-image img {
    width: 100%;
  }

  .cart-qty-box {
    margin-top: 10px;
  }
}

/* pyment-section-css-start */
/* ---------- Payment Section ---------- */
.pd-section {
  padding: 40px 0;
}

.pd-container {
  margin: 0 auto;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.pd-title {
  font-size: 20px;
  font-weight: 700;
  color: #5a3d2b;
  margin-bottom: 15px;
}

/* ---------- Payment Details ---------- */
.pd-details {
  background: #fff7ec;
  border: 1px solid #e0d2b9;
  border-radius: 8px;
  padding: 15px 20px;
}

.pd-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: #333;
  font-size: 18px;
}

.pd-row.pd-total {
  font-weight: 700;
  border-top: 1px solid #d7c3a3;
  margin-top: 5px;
  padding-top: 10px;
}

/* ---------- Delivery Address ---------- */
.pd-address-box {
  background: #fdf8f2;
  padding: 15px 20px;
  margin-top: 25px;
  border: 1px solid #e0d1bb;
    border-radius: 10px;
    margin-bottom: 25px;
}

.pd-address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.pd-address-header h4 {
  font-size: 18px;
  color: #4b3621;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pd-add-btn {
  background: #5a3d2b;
  color: #fff;
  padding: 6px 12px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  padding: 9px 14px;
  border-radius: 10px
}

.pd-add-btn:hover {
  background: #7a5236;
}

.pd-address-text {
  color: #333;
  font-size: 18px;
}
/* Address Add Form */
.pd-add-form {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background: #fff7ec;
  border: 1px solid #d9c7b0;
  border-radius: 6px;
}

.pd-add-form input {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 12px;
}

.pd-save-btn,
.pd-cancel-btn {
  background: #5a3d2b;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  margin-right: 6px;
  transition: 0.3s;
}

.pd-save-btn:hover,
.pd-cancel-btn:hover {
  background: #7a5236;
}
/* Address list styling */
.pd-address-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pd-address-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff7ec;
  border: 1px solid #e0d2b9;
  padding: 8px 10px;
  border-radius: 6px;
}

.pd-address-text {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.pd-remove-address {
  background: none;
  border: none;
  color: #a94442;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.pd-remove-address:hover {
  transform: rotate(90deg);
}

/* Address Add Form */
.pd-add-form {
  display: none;
  background: #fff9f3;
  border: 1px solid #e5d6c3;
  border-radius: 12px;
  padding: 25px;
  margin-top: 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.pd-add-form.active {
  display: block;
}

.pd-add-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.pd-add-title {
  font-size: 20px;
  color: #3b2415;
  font-weight: 700;
}

.pd-add-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #3b2415;
  cursor: pointer;
}

.pd-input,
.pd-input-half {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 12px;
  font-size: 14px;
}

.pd-input-half {
  width: 48%;
}

.pd-row {
  display: flex;
  justify-content: space-between;
  gap: 4%;
}

.pd-save-default {
  background: #4b2e17;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  width: 230px;
}

.pd-save-default:hover {
  background: #6b3f21;
}

.pd-type-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 10px 0 20px;
}

.pd-type {
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f5f5f5;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 500;
}

.pd-type:hover {
  background: #e3e3e3;
}

.pd-save-btn {
  background: #4b2e17;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
}

.pd-save-btn:hover {
  background: #6b3f21;
}

.pd-cancel-btn {
  background: #ccc;
  color: #333;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  margin-left: 10px;
}

.pd-form-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
}



/* ---------- Grand Total ---------- */
.pd-grand-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #5a3d2b;
  color: #fff;
  margin-top: 25px;
  padding: 15px 20px;
  border-radius: 8px;
}

.pd-grand-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pd-grand-amount {
  margin: 0;
  font-size: 22px;
}

.pd-pay-btn {
  background: #fff;
  color: #5a3d2b;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.pd-pay-btn:hover {
  background: #f3e3d4;
}
.pd-grand-text{
  font-size: 18px;
  margin-right: 10px;
  font-weight: 700;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .pd-container {
    padding: 20px;
  }

  .pd-grand-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .pd-grand-right {
    flex-direction: column;
    align-items: flex-start;
  }
}

.delivery-section {
  /* background: #fff; */
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  color: #3b2b20;
}

/* Text & layout */
.delivery-options p {
  font-weight: 600;
  color: #4b3a2e;
  margin-bottom: 15px;
}
.delivery-options{
  margin-bottom: 25px;
}
.delivery-options strong{
  margin-right: 15px;
}

.delivery-options label {
  font-weight: normal;
  margin-right: 20px;
  color: #222;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Custom radio design */
.delivery-options input[type="radio"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #8b5e3c;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.delivery-options input[type="radio"]:checked {
  border-color: #8b5e3c;
  background-color: #8b5e3c;
}

.delivery-options input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

/* Delivery instruction box */
.delivery-instruction-box {
  background: #faf5ee;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
      border: 1px solid #e0d1bb;
}

.delivery-instruction-box h4 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  color: #5a3b1a;
}

/* Input + button */
.instruction-input {
  display: flex;
  align-items: center;
  gap: 10px;
}

.instruction-input input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #c4b5a5;
  border-radius: 20px;
  outline: none;
  font-size: 14px;
}

.instruction-input input::placeholder {
  color: #b0a597;
}

.instruction-input button {
  background: #5a3b1a;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.instruction-input button:hover {
  background: #402a12;
}

/* order-done-css-start */
.order-success-fullpage {
  padding: 100px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fdf7ee;
}

/* --- Center Box --- */
.order-success-container {
  text-align: center;
  border-radius: 15px;
  display: flex;
  justify-content: center;
}

/* --- Success Icon --- */
.order-success-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

/* .order-success-circle {
  width: 130px;
  height: 130px;
  background: linear-gradient(145deg, #4CAF50, #2e7d32);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
} */
 .order-success-circle i{
  font-size: 180px;
   color:#2e7d32;
 }

.order-success-check {
  color: #fff;
  font-size: 55px;
  font-weight: bold;
}

/* --- Confetti --- */
.order-success-confetti {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.order-success-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #ff6b6b;
  border-radius: 50%;
  animation: order-success-float 2s ease-in-out infinite;
}

.order-success-dot:nth-child(2) {
  background-color: #ffd93d;
  left: 80%;
  animation-delay: 0.3s;
}
.order-success-dot:nth-child(3) {
  background-color: #6bcff6;
  top: 10%;
  left: 30%;
  animation-delay: 0.6s;
}
.order-success-dot:nth-child(4) {
  background-color: #b983ff;
  top: 20%;
  left: 60%;
  animation-delay: 0.9s;
}

@keyframes order-success-float {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-10px); opacity: 0.8; }
}

/* --- Text --- */
.order-success-title {
  font-size: 22px;
  color: #2b2b2b;
  margin-bottom: 12px;
  font-weight: 600;
}

.order-success-text {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* --- Button --- */
.order-success-btn {
  display: inline-block;
  background: #5a3b1a;
  color: #fff;
  padding: 14px 38px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.order-success-btn:hover {
  background: #3f2810;
}

/* your-order-page-css */

/* Container */
.unique-orders-container {
  border-radius: 16px;
  padding:100px 0;
  
}

/* Tabs */
.unique-orders-tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e5d4c3;
  overflow: hidden;
}

.unique-orders-tab-btn {
  flex: 1;
  padding: 12px 0;
  background: transparent;
  border: none;
  font-weight: 600;
  color: #5a3b1a;
  cursor: pointer;
  transition: 0.3s;
}

.unique-orders-tab-btn.active {
  background: #5a3b1a;
  color: #fff;
}

/* Order List */
.unique-orders-list {
  display: none;
}

.unique-orders-list.active {
  display: block;
}

/* Order Card */
.unique-orders-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Header */
.unique-orders-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.unique-orders-header h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #4b2f0f;
}

.unique-orders-header span {
  font-weight: 500;
  color: #000;
}
.unique-orders-header button{
      padding: 5px 12px;
    border-radius: 5px;
    background-color: #5a3a1d;
}

.unique-orders-header i {
  font-size: 14px;
  color: #fff;
}

/* Info Section */
.unique-orders-info p {
  margin: 5px 0;
  font-size: 14px;
  color: #333;
}

.unique-orders-info span {
  color: #fff;
  font-weight: 500;
}

/* Status Badge */
.unique-orders-status {
  background: #5a3b1a;
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 13px;
}

.unique-orders-status.delivered {
  background: #4caf50;
}

/* your-order-details-page */
.orderdetails-container {
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  padding: 80px 0;
  box-sizing: border-box;
}

/* Header */
.orderdetails-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.orderdetails-back-btn {
  color: #5b3924;
  font-size: 20px;
  text-decoration: none;
}

.orderdetails-title {
  font-size: 20px;
  font-weight: 600;
  color: #5b3924;
}

/* Product Card */
.orderdetails-product-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 10px;
  margin-bottom: 20px;
}
.orderdetails-container a{
  text-decoration: none;
}

.orderdetails-product-img img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.orderdetails-product-info {
  flex: 1;
  padding: 0 10px;
}

.orderdetails-product-name {
  font-size: 16px;
  margin: 0 0 5px 0;
  color: #333;
}

.orderdetails-rating i {
  color: #ffb400;
  font-size: 14px;
}

.orderdetails-prices {
  margin-top: 5px;
}

.orderdetails-price-current {
  font-weight: 600;
  color: #000;
  margin-right: 8px;
}

.orderdetails-price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

.orderdetails-remove-btn {
  background: none;
  border: none;
  color: #c0392b;
  font-size: 18px;
  cursor: pointer;
}

/* Wallet Box */
.orderdetails-wallet-box {
  background: #f7efe4;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.orderdetails-wallet-header h4 {
  margin: 0 0 8px 0;
  color: #5b3924;
  font-weight: 600;
}

.orderdetails-wallet-row {
  display: flex;
  justify-content: space-between;
  color: #333;
}

/* Payment Details */
.orderdetails-payment-box {
  background: #f7efe4;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.orderdetails-payment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #5b3924;
  font-weight: 600;
  margin-bottom: 10px;
}

.orderdetails-payment-rows div {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  color: #333;
}

.orderdetails-total-row {
  font-weight: 600;
}

/* Address Box */
.orderdetails-address-box {
  background: #f7efe4;
  padding: 15px;
  border-radius: 8px;
}

.orderdetails-address-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5b3924;
  font-weight: 600;
  margin-bottom: 6px;
}

.orderdetails-address-text {
  margin: 0;
  font-size: 14px;
  color: #333;
}
.orderdetails-container .add-to-cart-page{
  padding: 0;
}


/* Overlay background */
.pd-add-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 90%;
  max-width: 500px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  padding: 25px;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Show popup */
.pd-add-form.active {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Background overlay */
.pd-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

/* Show overlay when active */
.pd-overlay.active {
  display: block;
}

/* Close button styling */
.pd-add-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

.pd-add-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

/* adress-modal-css */
.address-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: opacity 0.3s ease;
}

.address-modal.active {
    display: flex;
}

.address-modal-content {
    background: #fff;
    width: 380px;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    max-height: 90vh;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

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

.address-modal-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.address-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #5e3e26;
}

.add-new-btn {
    background: #5e3e26;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 15px;
}

.add-new-btn i {
    margin-right: 5px;
}
.address-card{
background-color: #faf5ee;
    padding: 10px;
    border-radius: 10px;
    margin-top: 15px;
}
    

/* support-css */
/* Floating Button */
.support-btn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background-color: #4b2e0e;
  color: #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  font-size: 22px;
    animation: pulse 2s infinite;
}
/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(75, 46, 14, 0.6);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(75, 46, 14, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(75, 46, 14, 0);
  }
}
.support-footer a{
  text-decoration: none;
  color: #3b2b20;
}

/* Modal Background */
.support-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* Modal Content */
.support-modal-content {
  background: #fffaf5;
  padding: 25px;
  width: 500px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  animation: popup 0.3s ease;
}

@keyframes popup {
  from {transform: scale(0.9); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

/* Header */
.support-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.support-header h3 {
  margin: 0;
  color: #4b2e0e;
}

.support-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #4b2e0e;
}

/* Form */
.support-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.support-form input,
.support-form textarea {
  padding: 12px 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background-color: #fff;
  font-size: 14px;
}

.support-form textarea {
  resize: none;
  height: 80px;
}

.support-submit {
  background-color: #4b2e0e;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

.support-submit:hover {
  background-color: #633b12;
}

/* Footer */
.support-footer {
  margin-top: 20px;
  font-size: 14px;
  color: #333;
}

.support-footer i {
  margin-right: 6px;
  color: #25D366;
}


/* about-us-page-css */
 .about-header {
      background-color: #4b2e0e;
      color: white;
      text-align: center;
      padding: 60px 20px;
    }

    .about-header h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .about-header p {
      font-size: 1.1rem;
      opacity: 0.9;
    }

    .about-container {
      max-width: 1000px;
      margin: 60px auto;
      padding: 0 20px;
    }

    .about-section {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 40px;
      margin-bottom: 40px;
    }

    .about-section h2 {
      color: #4b2e0e;
      font-size: 1.8rem;
      margin-bottom: 15px;
    }

    .about-section p {
      color: #555;
      font-size: 1rem;
      margin-bottom: 15px;
    }

    .about-values {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .value-card {
      background: #fffaf5;
      border-radius: 12px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .value-card:hover {
      transform: translateY(-5px);
    }

    .value-card i {
      font-size: 30px;
      color: #4b2e0e;
      margin-bottom: 10px;
    }

    .value-card h4 {
      color: #4b2e0e;
      margin-bottom: 10px;
      font-size: 1.2rem;
    }

    .value-card p {
      color: #555;
      font-size: 0.95rem;
    }

    /* contact-us-page-css */
    .contact-header {
      background-color: #4b2e0e;
      color: white;
      text-align: center;
      padding: 60px 20px;
    }

    .contact-header h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .contact-header p {
      font-size: 1.1rem;
      opacity: 0.9;
    }

    .contact-container {
      max-width: 1100px;
      margin: 60px auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .contact-info {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      padding: 40px;
    }

    .contact-info h2 {
      color: #4b2e0e;
      margin-bottom: 20px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .contact-item i {
      background: #4b2e0e;
      color: white;
      font-size: 18px;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
    }

    .contact-item p {
      margin: 0;
      color: #555;
    }

    .contact-item a {
      color: #4b2e0e;
      text-decoration: none;
      transition: 0.3s;
    }

    .contact-item a:hover {
      text-decoration: underline;
    }

    .contact-form {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      padding: 40px;
    }

    .contact-form h2 {
      color: #4b2e0e;
      margin-bottom: 20px;
    }

    .contact-form form {
      display: flex;
      flex-direction: column;
    }

    .contact-form input,
    .contact-form textarea {
      font-family: inherit;
      font-size: 1rem;
      padding: 12px 15px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 10px;
      outline: none;
      transition: border-color 0.3s;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: #4b2e0e;
    }

    .contact-form button {
      background: #4b2e0e;
      color: white;
      font-size: 1rem;
      padding: 12px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .contact-form button:hover {
      background: #6a4216;
    }

    .map-container {
      margin: 60px auto;
      max-width: 1100px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    iframe {
      width: 100%;
      height: 400px;
      border: none;
    }

    .contact-footer {
      text-align: center;
      background: #4b2e0e;
      color: white;
      padding: 40px 20px;
      border-radius: 40px 40px 0 0;
    }

    .contact-footer p {
      margin: 0;
      font-size: 0.95rem;
      opacity: 0.9;
    }

    @media (max-width: 900px) {
      .contact-container {
        grid-template-columns: 1fr;
      }
    }
/* ---------- UNIQUE CATEGORIES MODAL ---------- */
    .categories-modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .categories-modal-box {
      background: #fff;
      width: 90%;
      max-width: 1100px;
      max-height: 90vh;
      overflow-y: auto;
      border-radius: 10px;
      padding: 30px;
      position: relative;
      animation: modalZoomIn 0.3s ease;
    }

    @keyframes modalZoomIn {
      from {
        transform: scale(0.95);
        opacity: 0;
      }

      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    .categories-modal-close {
      position: absolute;
    top: 12px;
    right: 5px;
    font-size: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    background-color: #3a2a16;
    padding: 0 6px;
    }

    /* ---------- CATEGORY SIDEBAR + CONTENT ---------- */
    .categories-sidebar-card {
      border: 1px solid #eee;
      padding: 10px;
      margin-bottom: 8px;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.2s;
    }

    .categories-sidebar-card:hover {
      background: #f8f8f8;
    }

    .categories-sidebar-card.active {
     background: #fdf8f0;
    border-color: #543629;
    }

    .categories-products {
      display: none;
    }

    .categories-products.show {
      display: block;
    }

    .categories-products-section .categories-products  img{
      height: 120px;
    }
        .categories-products-section .categories-products .products-bg {
    background-color: #f7f7f6;
    padding: 5px;
}
 .categories-products-section .categories-products .products-name {
    font-family: "Frank Ruhl Libre", serif;
    font-size: 17px;
    color: #543628;
    font-weight: 800;
    text-transform: capitalize;
    margin-top: 11px;
}
 .categories-products-section .categories-products .products-price {
    font-size: 13px;
}
 .categories-products-section .categories-products a{
  text-decoration: none;
 }
  .categories-products-section .categories-products .add-btn {
    font-size: 14px;
    padding: 6px 31px;
}
  .categories-products-section .categories-products .products-rating {
    margin-bottom: 15px;
}
 .categories-products-section .categories-products .products-img {
    overflow: hidden;
    border-radius: 14px;
}
 .categories-products-section .categories-products .row .col-md-4{
  margin-bottom: 25px;
 }
 

 /* ------------------------****************--------------------------------- */
 /* Overlay and modal */
.add-to-cart-page .categories-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  /* ensure overlay allows pointer events */
  pointer-events: auto;
}

.add-to-cart-page .categories-modal-overlay.active {
  display: flex;
}

/* ensure modal box sits above overlay and receives clicks */
.add-to-cart-page .categories-modal-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  z-index: 1010;
  pointer-events: auto;
}

/* Category UI */


/* Product sections: hidden by default; shown when .show present */
.top-header-user {
  position: relative;
  display: inline-block;
}





/* Dropdown (initially hidden) */
.user-dropdown {
  position: absolute;
  top: 130%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  width: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* Smooth open animation */
.top-header-user.active .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown items */
.user-dropdown li {
  border-bottom: 1px solid #f2f2f2;
}

.user-dropdown li:last-child {
  border-bottom: none;
}

.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.25s, color 0.25s;
}

.user-dropdown a:hover {
  background: #fdf8f0;
  color: #543629;
}

.user-dropdown i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  color: #543628;
}

/* redeem-code-css */
.redeem-section {
  margin-top: 40px;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  background: #fff;
  font-family: "Poppins", sans-serif;
}

.redeem-wrapper {
  background: #fef9f1;
  border-radius: 15px;
  padding: 20px;
  border: 1px solid #e0d2b9;
}

.coupon-title {
  font-size:20px;
  color: #4e342f;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.coupon-title i {
  color: #d4a373;
}

.redeem-wrapper p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.wallet-redeem-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid #e0d2b9;
  border-radius: 10px;
  background: #fff;
}

.wallet-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #4e342f;
  cursor: pointer;
}

.wallet-check input {
  width: 18px;
  height: 18px;
  accent-color: #4e342f;
  cursor: pointer;
}

.wallet-amount {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: #4e342f;
  font-size: 1rem;
}

.message {
  margin-top: 15px;
  font-weight: 500;
}

.message.success { color: #4e342f; }
.message.error { color: #e63946; }
.pd-container{
  margin-bottom: 25px;
}

.delivery-here-btn button{
      padding: 6px 10px;
    color: #fff;
    background-color: #5e3d28;
    border: none;
    border-radius: 5px;
}
.nav_sec ul li:nth-last-child(-n+2) {
  display: none;
}
.flatpickr-calendar{
  background-color: #fff;
}

/* ----------------------------- */
/* --- Wallet Popup Overlay --- */
/* --- Wallet Popup Overlay --- */
/* --- Wallet Popup Overlay (centered + hidden by default) --- */
.wallet-popup-overlay_one {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
}


/* --- Popup Box --- */
/* --- Popup Box --- */
.wallet-popup_one {
  background: #fff;
  width: 95%;
  max-width: 550px;
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  position: relative;
  animation: popupFadeIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(0);
}

/* --- Animation --- */
@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* --- Header --- */
.popup-header_one {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.popup-header_one h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.close-popup_one {
  font-size: 22px;
  cursor: pointer;
  color: #333;
  font-weight: bold;
  transition: color 0.2s;
}

.close-popup_one:hover {
  color: #e74c3c;
}

/* --- Cashback Cards --- */
.cashback-card_one {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #00b894, #55efc4);
  color: white;
  padding: 15px 18px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.cashback-card_one:hover {
  transform: scale(1.02);
}

.cashback-card_one.selected_one {
  border-color: #fff;
  box-shadow: 0 0 0 3px #27ae60;
}

/* --- Amount Section --- */
.amount-section_one {
  margin-top: 25px;
  text-align: center;
}

.amount-section_one p {
  margin-bottom: 8px;
  font-weight: 600;
}

#amountInput_one {
  width: 70%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 16px;
  transition: border-color 0.2s;
}

#amountInput_one:focus {
  outline: none;
  border-color: #27ae60;
}

/* --- Coupon Section --- */
.coupon-toggle_one {
  text-align: center;
  margin-top: 20px;
  color: #27ae60;
  font-weight: 600;
  cursor: pointer;
}

.coupon-section_one {
  display: none;
  margin-top: 15px;
  text-align: center;
}

#couponCode_one {
  width: 70%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 15px;
}

#applyCoupon_one {
  margin-top: 10px;
  background: #27ae60;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

#applyCoupon_one:hover {
  background: #1e874b;
}

.coupon-message_one {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
}

.coupon-success_one {
  color: #27ae60;
}

.coupon-error_one {
  color: #e74c3c;
}

/* --- Payment Section --- */
.payment-methods_one {
  margin-top: 25px;
}

.payment-methods_one h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.payment-icons_one {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.payment-icons_one img {
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: transform 0.2s;
}

.payment-icons_one img:hover {
  transform: scale(1.1);
}

/* --- Add Button --- */
.add-btn_one {
  background: #27ae60;
  color: white;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 12px;
  margin-top: 25px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.add-btn_one:hover {
  background: #1e874b;
}

/* --- Scrollbar (for popup) --- */
.wallet-popup_one::-webkit-scrollbar {
  width: 6px;
}
.wallet-popup_one::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
.wallet-popup-overlay_one {
  display: none;   /* this keeps it hidden on page load */
}

.daily-btns{
  padding: 10px 0;
}
.flatpickr-day.selected-end {
    background: #5c3a27 !important;
    color: #fff !important;
    border-radius: 50%;
    border: none;
}
.endRange {
  border: none;
}
.today.selected{
  background-color: #5c3a25;
  border: none;
}
.today.selected:hover{
  background-color: #5c3a25;
}
.flatpickr-day.selected.daily-highlight{
  border: none;
}
.flatpickr-day.selected-end{
  background-color: #1bbc9b;
}
.btn-close{
   background-color: #5c3a25 !important;
      padding: 6px 29px 14px 21px !important;;
}
.btn-ok{
background-color: #5c3a25 !important;
}
.btn-cancel{
  background-color: #5c3a25 !important;
}
.custom-cal-btns{
  padding: 10px 0;
}
.daily-btns .ok-btn{
   background-color: #5c3a25 !important;
}
.daily-btns .cancel-btn{
 background-color: #5c3a25 !important;
}
.flatpickr-day.selected.selected-end{
  background: #1bbc9b !important;
}
.flatpickr-weekdays{
  background-color: #3b2415 !important;
}
span.flatpickr-weekday{
  background: #3b2415 !important;
  color: #fff !important;
}
.flatpickr-months .flatpickr-month{
   background-color: #3b2415 !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months{
   background-color: #3b2415 !important;
}
/* .today{
  background:#3b2415;
} */
 .flatpickr-monthly-cancel{
    background: #3b2415 !important;
 }
 .flatpickr-monthly-footer button{
   background: #3b2415 !important;
 }
 .flatpickr-monthly-footer button {
    padding: 6px 16px !important;
    font-size: 13px !important;
 }
 .flatpickr-day.selected{
   background: #3b2415 !important;
 }
 .flatpickr-day.selected.selected-end{
   background: #3b2415 !important;
 }
 .flatpickr-day.selected{
  background: none !important;
  border: none !important;
 }