* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.2s linear;
}

body {
  font-family: Amiri, serif;
  font-weight: 400;
  font-style: normal;
  color: #1c1b1b;
  background: #efefef;
  line-height: 1.65;
  transition: all .2s linear;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

html {
  overflow-x: hidden;
  width: 100%;
}

.headd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  /* border: 1px solid; */
  background-color: #fff;
}

.menu {
  visibility: hidden;
  padding-left: 20px;
}

.menu a i {
  font-size: 20px;
  color: #e7a786;
}

.icons a {
  padding-right: 20px;
}

.icons a i {
  font-size: 20px;
  color: #e7a786;
}

nav {
  margin-top: -15px;
  background-color: #fff;
  transition: all 0.3s ease;

}

nav.sticky-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 4000 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  margin-top: 0 !important;
  background-color: #fff !important;
  padding: 0 35px !important;
  height: 70px;
}

/* Condensed Sticky Layout */
.sticky-wrapper {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: nowrap !important;
  /* Prevent wrapping */
}

.sticky-logo-desktop,
.sticky-icons-desktop {
  display: none;
  /* Hidden by default */
}

nav.sticky-nav .sticky-logo-desktop {
  display: block;
  flex-shrink: 0;
  /* Prevent logo shrinking */
}

nav.sticky-nav .sticky-logo-desktop img {
  max-height: 50px;
}

nav.sticky-nav .sticky-icons-desktop {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 50px;
  flex-shrink: 0;
  /* Prevent icons shrinking */
}

nav.sticky-nav .sticky-icons-desktop a {
  color: #AA6A4D;
  font-size: 18px;
  text-decoration: none;
}

nav.sticky-nav .navbar ul {
  margin-bottom: 0;
  display: flex;
  flex-wrap: nowrap;
  /* Ensure menu items don't wrap */
}

nav.sticky-nav .navbar ul li {
  padding: 15px 10px;
  white-space: nowrap;
  /* Keep text on one line */
}

/* Responsive adjustments for sticky header between 1024px and 1300px */
@media (min-width: 1024px) and (max-width: 1300px) {
  nav.sticky-nav {
    padding: 0 15px !important;
  }

  nav.sticky-nav .navbar ul li {
    padding: 15px 5px !important;
    font-size: 0.9em;
  }

  nav.sticky-nav .sticky-icons-desktop {
    gap: 10px;
    margin-left: 20px;
  }
}

/* Sticky Dropdown Styling - Refined */
.sticky-account-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.sticky-dropdown {
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  background: #fff !important;
  min-width: 200px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  border-radius: 8px !important;
  padding: 10px 0 !important;
  display: none !important;
  /* Forced hidden by default */
  z-index: 9999 !important;
  margin-top: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.sticky-dropdown.show {
  display: block !important;
}

.sticky-dropdown a {
  display: block !important;
  padding: 12px 20px !important;
  color: #AA6A4D !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-transform: capitalize !important;
  transition: all 0.2s ease !important;
  border-bottom: 1px solid #f5f5f5 !important;
  text-align: left !important;
  width: 100% !important;
  line-height: 1.4 !important;
}

.sticky-dropdown a:last-child {
  border-bottom: none !important;
}

.sticky-dropdown a:hover {
  background: #fdf8f4 !important;
  color: #000 !important;
  padding-left: 25px !important;
}

#navbar {
  display: flex;
  justify-content: center;
  margin-left: -30px;
}

.navbar ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: -20px;
}

.navbar ul li {
  padding: 15px;
  position: relative;
  list-style: none;
  cursor: pointer;

}


.navbar ul li a {
  color: #AA6A4D;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  /* font-size: 0.5rem; */
  /* border-bottom: 1px solid; */
}

.navbar ul li a:hover {
  color: #000;
}

/* .navbar ul li a:hover{
  border-bottom: 2px solid #e7a786;
  transition: abhay 0.2s ease;
}
@keyframes abhay{
  0%{
    width: 0px;
  }
  100%{
    width: 100%;
  }
} */
/* .navbar ul .he::after {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 25px;
  width: 0%;
  height: 2px;
  background: #e7a786;
  transition: width 0.2s ease;
}

.navbar ul .he:hover::after {
  width: 70%;
} */

/* Refined Dropdown Styling */
#navbar ul li .dropdown-menu {
  position: absolute;
  top: 85%;
  left: 0;
  background: #fff;
  min-width: 250px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 12px 0;
  z-index: 10000;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
  /* Smooth Transition */
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

#navbar ul li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu ul {
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  width: 100% !important;
}

.dropdown-menu ul li {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

.dropdown-menu ul li a {
  display: block;
  padding: 12px 25px !important;
  color: #555 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-transform: capitalize !important;
  letter-spacing: 0.5px !important;
  transition: all 0.2s ease !important;
  border-left: 3px solid transparent;
  text-align: left !important;
}

.dropdown-menu ul li a:hover {
  background: #fdf8f4 !important;
  color: #b8936b !important;
  border-left: 3px solid #b8936b !important;
  padding-left: 30px !important;
}

/* Sub-subcategory (for Categories) */
.has-submenu {
  position: relative;
}

.sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 10001;
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Smooth Transition */
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateX(15px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.has-submenu:hover .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

/* navbar end  */



/* footer start  */

.hieil-footer {
  background: #0f1720;
  color: #e6eef7;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  padding: 48px 24px;
  box-sizing: border-box;
}

.hf-subscribe {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hf-sub-left h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  letter-spacing: 0.2px;
}

.hf-sub-left p,
.hf-sub-left p a {
  margin: 0;
  color: rgba(230, 238, 247, 0.85);
  max-width: 640px;
  line-height: 1.5;
}

.hf-sub-right {
  min-width: 260px;
  margin-left: auto;
}

.hf-sub-form {
  display: flex;
  gap: 8px;
}

.hf-sub-form input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  outline: none;
  font-size: 14px;
}

.hf-sub-form button {
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  background: #f5a623;
  color: #111;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.hf-top-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  padding: 28px 0;
}

.hf-top-links .col h4 {
  margin: 0 0 12px;
  font-size: 15px;
  color: #fff;
}

.hf-top-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hf-top-links ul li {
  margin: 8px 0;
}

.hf-top-links a {
  color: rgba(230, 238, 247, 0.85);
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;

}

.hf-top-links a:hover {
  /* text-decoration: underline; */
  color: #fff;
  transform: translateX(7px);
}

.hf-social {
  margin-top: 12px;
  display: flex;
  gap: 8px;

}

.hf-social .social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.hf-social .social:hover {
  color: #f5a623;
}

.hf-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hf-bottom .copyright {
  font-size: 14px;
  color: rgba(230, 238, 247, 0.85);
}

.hf-bottom .payments {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.hf-bottom .payments .pay {
  /* background: rgba(255,255,255,0.03); */
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 13px;
  color: rgba(230, 238, 247, 0.9);
}

@media (max-width: 900px) {
  .hf-top-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .hf-sub-right {
    width: 100%;
    margin-top: 12px;
  }
}

@media (max-width: 520px) {
  .hf-top-links {
    grid-template-columns: 1fr;
  }

  .hf-subscribe {
    padding-bottom: 16px;
  }

  .hf-sub-left p {
    max-width: 100%;
  }
}

/* footer end  */

/* section start */

section {
  margin-top: 21px;
}

section .img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

section .circle {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 93%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

section .circle:hover {
  transform: scale(1.1);
}

section .circle i {
  color: #e7a786;
  font-size: 2.3rem;
}

/* ======================== */


section .india {
  width: 30%;
  margin: 100px auto;
}

section .india h2 {
  color: #1c1b1b;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 1.5px;
}

section .india p {
  color: #1c1b1b;
  text-align: center;
  letter-spacing: 0.7px;
  margin-top: 10px;
}

section .india div {
  border-bottom: 1px solid;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  cursor: pointer;
}

section .india div:hover {
  background-color: #fff;
  border-bottom: 0px;
}

section .india a {
  text-decoration: none;
  padding-top: 30px;
  margin-bottom: 31px;
  font-size: 14px;
  color: #666666;
}

section .india a:hover {
  color: blue;
}

/* =========================== */

section .great {
  /* width: 30%; */
  margin: 100px auto;
}

section .great h2 {
  color: #1c1b1b;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 1.5px;
}

section .great h1 {
  color: #1c1b1b;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.7px;
  margin-top: 10px;
  font-size: 1.5rem;
}


/* ====================== */
section .handicraft {

  margin: 100px auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

section .handicraft .product {
  padding: 10px;
  text-align: center;
}

section .handicraft .product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

section .handicraft .img {
  width: 250px;
  height: 350px;
  overflow: hidden;
}

section .handicraft .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
}

section .handicraft .product:hover .img img {
  transform: scale(1.1);
}

section .handicraft .product h1 {
  color: #1c1b1b;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 1.5px;
  padding-top: 15px;
}

section .handicraft .product p {
  color: #434141;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 1.5px;
  padding-top: 8px;
}

section .handicraft .product p {
  color: #434141;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 1.5px;
  padding-top: 8px;

  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
}

section .handicraft .product:hover p {
  transform: translateY(0);
  opacity: 1;
}

section .see {
  padding: 0.5rem;
  width: 20%;
  margin-bottom: 40px;
  margin-left: 37%;
  letter-spacing: 1.5px;
  font-size: 15px;
  color: #fff;
  background-color: #be8b70;
  border: none;
  line-height: 1.8;
  cursor: pointer;
  border-radius: 5px;
}

/* ========================= */

section .shipping {
  width: 100%;
  height: 65vh;
  display: flex;
}

section .shipping .aside {
  width: 40%;
  position: sticky;
  top: 0;
  bottom: 0;
  z-index: 1000;
}

section .shipping .aside ul {
  list-style: none;
  padding-left: 40%;
}

section .shipping .aside ul li {
  text-transform: capitalize;
  padding: 10px;
}

section .shipping .aside ul li a {
  color: #1c1b1b;
  text-decoration: none;
}

section .shipping .side {
  width: 60%;
  height: 100%;
  overflow: auto;
}

section .shipping .side::-webkit-scrollbar {
  display: none;
}

section .shipping .side .ship h1 {
  color: #1c1b1b;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  text-align: start;
  letter-spacing: 0.7px;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 1.3rem;
}

html {
  scroll-behavior: smooth;
}


.accordion {
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion input {
  display: none;
}

.accordion label {
  display: block;
  padding: 15px 20px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  padding-left: 2rem;
}

.accordion label::before {
  content: "⮞";
  position: absolute;
  top: 17px;
  left: 10px;
  font-size: 14px;
  transition: transform 0.3s;
  color: #be8b70;
}

.accordion input:checked+label::before {
  content: "⮟";
}

.accordion .content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #444;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion input:checked~.content {
  max-height: 200px;
  /* enough for text */
  padding: 10px 20px 20px;
}


/* section end */

@media (max-width: 430px) {
  section .shipping .aside {
    display: none;
  }

  section .shipping {
    justify-content: center;
  }

  section .shipping .side {
    width: 90%;
  }

  section .india {
    width: 85%;
    margin-bottom: 50px;
  }

  section .great {
    width: 85%;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  section .handicraft {
    margin-top: 10px;
    width: 85%;
  }

  section .handicraft .product .img {
    margin: 0 auto;
    width: 90%;
  }

  section .see {
    margin: -20px auto;
    margin-left: 5%;
    width: 90%;
    margin-bottom: 20px;
  }

  section .re h2 {
    font-size: 15px;
  }

  section .re h1 {
    font-size: 20px;
  }

  .mobfoot {
    background-color: #000;
    height: 5%;
  }

  .accordionn #lab {
    font-size: 15px;
  }

  .accordionn #lab #con a {
    font-size: 2px;
  }

  #carousell {
    height: 200px;
  }

  /* Extra small mobile devices */
  .bicons {
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .bicons .icon i {
    height: 40px;
    width: 40px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  #menn {
    visibility: visible;
    padding-left: 20px;
  }

  #navbar {
    display: none;
  }

  #logo {
    height: 4rem;
  }

  #caro {
    height: 200px;
  }

  .accordionn #lab {
    font-size: 15px;
  }

  .accordionn #lab #con a {
    font-size: 2px;
  }

  #carousell {
    height: 200px;
  }

  #circlee {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  /* Mobile responsive for floating icons */
  .bicons {
    right: 1rem;
    bottom: 1rem;
  }

  .bicons .icon i {
    height: 45px;
    width: 45px;
    font-size: 22px;
  }
}

.mobfoot {
  background-color: #000;
  height: 5%;
}

nav .mobile {
  width: 90%;
  height: 100vh;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5000;
  position: fixed;
  display: none;
  animation: hellow 0.3s ease;
}

@keyframes hellow {
  0% {
    left: -300px;
  }

  100% {
    left: 0;
  }
}



.mobfoot {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10%;
}


nav .qq::-webkit-scrollbar {
  display: none;
}

.mobile .close {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  margin-left: 20px;
}

.mobile hr {
  width: 100%;
  /* margin-left: 4%; */
  opacity: 0.5;
}

.qq {
  height: 84%;
  /* border: 1px solid red; */
  overflow: auto;
}

.accordionn {
  max-width: 90%;
  border-radius: 9px;
  /* background-color: pink; */
  margin-bottom: 5px;
  overflow: hidden;
}

.accordionn input {
  display: none;
}

.accordionn label {
  color: #fff;
  display: block;
  padding: 10px 10px;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
  position: relative;
  padding-left: 1.5rem;
  text-transform: uppercase;
}

.accordionn label::before {
  content: "+";
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 25px;
  transform: transform 0.3s;
}

.accordionn input:checked+label::before {
  content: "-";
}

.accordionn.no-icon label::before {
  display: none;
}

.menu-link {
  color: #fff;
  display: block;
  padding: 10px 10px;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
  padding-left: 1.5rem;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
}

.menu-link:hover {
  color: #b8936b;
}

.accordionn .contentt {
  color: #fff;
  max-height: 0;
  overflow: hidden;
  /* padding: 0 10px; */
  color: #444;
  transition: max-height 0.3s ease 0.3s ease;
  /* padding-left: 1rem; */
}

.accordionn input:checked~.contentt {
  max-height: 500px;
  padding: 0px 10px 10px;
}

/* Global Image Optimization Utilities */
.img-container {
  overflow: hidden;
  position: relative;
  display: block;
}

.img-optimized {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.img-container:hover .img-optimized {
  transform: scale(1.1);
}

.member-photo.img-container {
  border-radius: 50%;
}

.mobile .accordionn a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
  padding-left: 1.2rem;
  opacity: 0.7;
  letter-spacing: 1px;
  text-transform: capitalize;
  font-size: 15px;
}

.mobile .accordionn #con a {
  font-size: 13px;
}

nav .mobile .close button {
  background: none;
  color: #fff;
  border: none;
  font-size: 3rem;
}

.bicons {
  position: fixed;
  right: 1.5rem;
  bottom: 1rem;
  z-index: 3001;
}

.bicons .icon {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bicons .icon i {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  transition: all 0.3s ease;
}

.bicons .icon a {
  text-decoration: none;
}

.bicons .icon .fa-whatsapp {
  background-color: #25d366;
  color: #fff;
  cursor: pointer;
}

.bicons .icon .fa-whatsapp:hover {
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  transform: scale(1.1);
}

.bicons .icon .fa-phone {
  background-color: #007bff;
  color: #fff;
}

.bicons .icon .fa-phone:hover {
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
  transform: scale(1.1);
}

.carousel {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.carousel-inner {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  flex-shrink: 0;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 22px;
  z-index: 10;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.indicators {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.dot {
  height: 14px;
  width: 14px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #fff;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  flex: 1;
  text-align: left;
}

.cookie-btn {
  background-color: #b8936b !important;
  color: #fff !important;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn:hover {
  background-color: #9b7a57 !important;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content p {
    text-align: center;
    margin-bottom: 10px;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* ==========================================================================
   Global Responsive Overrides
   ========================================================================== */

/* Large Tablets and below (iPad Pro, common tablets) */
@media (max-width: 1024px) {
  #navbar {
    display: none !important;
  }

  #menn {
    visibility: visible !important;
    display: block !important;
  }

  .headd {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 3000 !important;
    padding: 10px 15px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    background-color: #fff !important;
  }

  nav {
    margin-top: 80px !important;
    /* Offset for fixed header on mobile */
  }

  .hero-section,
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: auto !important;
  }

  .hero-overlay {
    left: 5% !important;
    width: 90% !important;
    top: 50% !important;
  }

  .hero-overlay h1 {
    font-size: 32px !important;
    margin-left: 0 !important;
  }

  .hero-overlay p {
    font-size: 16px !important;
    margin-left: 0 !important;
  }
}

/* Tablets and Large Phones */
@media (max-width: 768px) {
  .hf-top-links {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
  }

  .cta-buttons {
    flex-direction: column !important;
    align-items: center !important;
  }

  .cta-btn {
    max-width: 100% !important;
    width: 100% !important;
  }

  section .shipping {
    flex-direction: column !important;
    height: auto !important;
  }

  section .shipping .aside {
    display: none !important;
  }

  section .shipping .side {
    width: 100% !important;
    padding: 20px !important;
  }
}

/* Small Phones */
@media (max-width: 576px) {
  .hf-top-links {
    grid-template-columns: 1fr !important;
  }

  .hf-subscribe {
    flex-direction: column !important;
    text-align: center !important;
  }

  .hf-sub-right {
    margin-left: 0 !important;
    width: 100% !important;
  }

  .product-image {
    height: 200px !important;
  }

  .logo img {
    max-height: 60px !important;
  }

  .icons a i {
    font-size: 18px !important;
  }

  nav {
    margin-top: 70px !important;
    /* Smaller offset for small phones */
  }
}

/* Fix for horizontal scroll */
body,
html {
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative !important;
}