* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cabin", sans-serif;
  text-decoration: none;
}

#header {
  height: 130px;
  width: 100%;
  z-index: 1111111;
  position: relative;
}

.header-top {
  background-color: white;
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  position: fixed;
  z-index: 1111111;
  width: 100%;
}

.container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}

.header-top-left {
  width: 52%;
  display: flex;
}

.header-left-box1 {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
}

.header-left-box1:hover i{
    color: #dfa974;
}

.header-left-box2:hover i{
    color: #dfa974;
}

.header-left-box1 p::before {
  content: "";
  position: absolute;
  height: 19px;
  width: 1px;
  top: 0px;
  right: 0;
  background-color: #000;
}

.header-left-box1 p {
  font-size: 16px;
  color: #19191a;
  font-weight: 500;
  margin-left: 6px;
  position: relative;
  padding-right: 25px;
}

.header-left-box2 p {
  font-size: 16px;
  color: #19191a;
  font-weight: 500;
  margin-left: 6px;
}

.header-left-box2 {
  display: flex;
  align-items: center;
  padding-left: 25px;
  gap: 5px;
}

.header-top-right {
  width: 48%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-right-box1 {
  margin-right: 35px;
  display: flex;
  gap: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.header-right-box1:hover i {
  color: #dfa974;
}

.header-right-box3 {
  margin-left: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-right-box3 img {
  height: 13px;
  width: 22px;
  margin-right: 10px;
}

#header .header-bottom {
  width: 100%;
  background: #fff;
  padding: 20px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 69;
  position: fixed;
  top: 48px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-menu ul li {
  display: inline-block;
  list-style: none;
  margin: 10px 20px;
}
.nav-menu ul li a {
  text-decoration: none;
  color: #19191a;
  font-size: 16px;
  position: relative;
  font-weight: 700;
}
.nav-menu ul li a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #dfa974;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: all 0.5s;
}

.nav-menu ul li a:hover::after {
  width: 100%;
}
.nav-menu .fa-solid {
  display: none;
}

.card-icon {
  display: block !important;
  font-size: 23px;
}

.shopping-card {
  color: #19191a;
  cursor: pointer;
  transition: 0.2s;
  margin-right: 0 !important;
}

.shopping-card:hover {
  color: #dfa974;
}

/* Search icon inside nav */
.search-icon {
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  color: #19191a;
}
.search-icon:hover {
  color: #dfa974;
}

/* Full-width search overlay */
.search-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 39px 13%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.search-bar form {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 15px 60px 15px 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 30px;
  outline: none;
  background: #fff;
}

.search-bar button {
  position: absolute;
  right: 50px;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: #dfa974;
}

.search-bar #closeSearch {
  position: absolute;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #19191a;
}

/*--banner Section--------------------------------------------*/
.banner-section {
  background-image: url(images/Capture.PNG);
  background-size: 100% 100%;
  object-fit: cover;
  background-position: center;
  height: 40vw;
  width: 100%;
}

/*--Box1 Section--------------------------------------------*/
.information-box-main {
  height: auto;
  width: 100%;
  background-color: #fff;
  padding: 0 15px;
}

.information-box {
  height: auto;
  width: 100%;
  padding: 40px 0;
  border-bottom: 1px solid #e5e5e5;
}

.information-box-top h2 {
  text-align: center;
  font-size: 25px;
  letter-spacing: 4px;
}

.information-box-top p {
  font-size: 18px;
  text-align: center;
  color: #a3a3a3;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 25px;
}

.information-box-bottom {
  height: auto;
  width: 100%;
  display: flex;
  gap: 30px;
}

.information-bottom-box1 {
  width: 33.3%;
  background: #edebeb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 50px 0;
}

.information-bottom-box1 h5 {
  font-size: 20px;
  margin-top: 15px;
  color: #000;
}

.information-bottom-box1 p {
  color: #939191;
  font-size: 16px;
}

/*--products Section--------------------------------------------*/
.product-section {
  padding: 40px 15px;
  height: auto;
  width: 100%;
}

.products-box {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 40px;
}

.products-box h2 {
  text-align: center;
  font-size: 25px;
  letter-spacing: 4px;
}

.product-tab-box {
  height: auto;
  width: 100%;
  padding-top: 25px;
}

.product-tab-box-top ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.product-tab-box-top ul li a {
  color: #a3a3a3;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.product-tab-box-top ul li a.active {
  color: #000;
  border-bottom: 2px solid #000;
  padding-bottom: 4px;
}

.product-tab-box-bottom {
  height: auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(277px, 1fr));
  gap: 20px;
  padding-top: 35px;
}

.product-tab-bottom-box1 {
  width: 100%;
  height: auto;
  display: none; /* hidden by default */
  transition: opacity 0.3s ease;
}

.product-tab-bottom-box1.show {
  display: block;
  opacity: 1;
}

.product-tab-bottom-box1 img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.product-tab-bottom-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.product-tab-bottom-text p {
  color: #a3a3a3;
  padding: 10px 0;
}

.btn-box {
  padding-top: 15px;
  display: flex;
  gap: 10px;
}

.btn-box button {
  cursor: pointer;
  padding: 10px 20px;
  background: #282828;
  color: #fff;
  border: none;
  transition: 0.3s;
}

.btn-box button:hover {
  background: #dfa974;
}

.btn-box i {
  border: 1px solid;
  padding: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-box i:hover {
  color: #dfa974;
  border-color: #dfa974;
}


/*--blog Section--------------------------------------------*/
.blog-main {
    height: auto;
    width: 100%;
    padding: 0 15px;
    padding-bottom: 40px;
}

.blog {
    height: auto;
    width: 100%;
    padding-bottom: 40px;
}

.blog h2{
    text-align: center;
    font-size: 25px;
    letter-spacing: 4px;
}

.blog-boxes {
    height: auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 20px;
    padding-top: 40px;
}

.blog-box1{
    position: relative;
}

.blog-box1 img{
    width: 100%;
    height: 250px;
}

.blog-box1-text {
    position: absolute;
    bottom: 0;
    padding: 20px;
}

.blog-box1-text h5{
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
}

.blog-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-box1-text p{
    padding-right: 10px;
    color: #fff;
}

.blog-box1-text p i{
    padding-right: 10px;
}


.footer {
  background-color: #fff;
  padding: 50px 15px 20px;
  text-align: left;
  border-top: 1px solid #eaeaea;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin-left: 25px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-align: center;
}

.footer-col p {
    text-align: center;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Headings */
.footer-col h4 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Lists */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #666;
  list-style: inside;
}

.footer-col ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #000;
}

.space{
    padding-right: 10px;
}

/* Contact Info */
.contact-info li {
  line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #eaeaea;
  text-align: center;
  padding-top: 15px;
  font-size: 13px;
  color: #666;
}


@media (max-width: 990px) {
  /*--header Section--------------------------------------------*/
  .nav-menu .fa-solid {
    display: block;
    color: #000;
    font-size: 22px;
  }
  .nav-menu ul {
    background-color: #fff;
    position: absolute;
    right: -200px;
    top: 0;
    width: 200px;
    height: 100vh;
    padding-top: 60px;
    z-index: 2;
    transition: all 0.5s;
  }
  .nav-menu ul li {
    display: block;
    margin: 25px;
  }
  .nav-menu ul .fa-solid {
    position: absolute;
    left: 25px;
    top: 25px;
    cursor: pointer;
  }

  .search-bar {
    padding: 20px;
  }

  #header {
    height: 72px;
  }

  .header-top {
    display: none;
  }

  #header .header-bottom {
    top: 0;
  }

  .card-icon {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .information-box-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .information-bottom-box1 {
    width: 100%;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  
}

@media (max-width: 590px) {
  .information-box-bottom {
    grid-template-columns: repeat(1, 1fr);
  }
}
