html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 16px;
}
a:hover {
  color: none;
}
body {
  font-family: "Roboto", sans-serif;
}
img {
  width: 100%;
  max-width: 100%;
}
.container {
  width: 90%;
  max-width: 1600px;
  margin: auto;
}
/* COMON STYLE */
:root {
  --primary-color: #873d70;
  --secondary-color: #000000;
  --white-color: #ffffff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
p {
  font-size: 20px;
  margin: 0;
  opacity: 0.7;
  font-weight: 300;
  letter-spacing: 1px;
}
h5 {
  font-size: 22px;
  font-weight: 500;
}
h3 {
  font-size: 25px;
}
h6 {
  font-size: 19px;
}
.Title {
  h2 {
    font-size: 50px;
    font-weight: 500;
  }
}
.Lined-Title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
  span {
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
  }
}

.Primary-button {
  a,
  button {
    display: flex;
    border: none;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    border-radius: 20px;
    display: inline-flex;
    padding: 8px 9px 8px 20px;
    color: var(--white-color);
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 2s;
    i {
      background-color: var(--white-color);
      color: var(--primary-color);
      border-radius: 50px;
      padding: 5px;
      font-size: 14px;
    }
    &:hover {
      background-color: transparent;
      color: var(--primary-color);
      border: 1px solid var(--primary-color);
      i {
        background-color: var(--primary-color);
        color: var(--white-color);
      }
    }
  }
}
/* PRODUCT CARD */
.Product-Card {
  .Product-Image {
    aspect-ratio: 500/500;
    width: 100%;
    overflow: hidden;
    border: 1px solid #b9b9b9;
    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
  .Product-Content {
    margin-top: 10px;
    p {
      margin-top: 2px;
    }
  }
}
.slick-prev,
.slick-next {
  background-color: rgba(143, 143, 143, 0.1);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
  &:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
  }
}

/* Header */
.dropdown-toggle::after {
  display: none;
}
header {
  .top-header {
    background-color: var(--secondary-color);
    padding: 10px 0;
    p {
      text-align: center;
      color: var(--white-color);
      font-weight: 300;
      opacity: 0.7;
      text-transform: capitalize;
      letter-spacing: 1.5px;
      font-size: 16px;
    }
  }
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    .logo {
      width: 186px;
    }
    .menu {
      ul {
        display: flex;
        gap: 28px;
        li {
          position: relative;
          padding: 28px 0;
          a {
            font-weight: 400;
            &:hover {
              color: var(--primary-color);
            }
          }
          .dropdown-menu {
            position: absolute;
            top: 102%;
            left: 0;
            background: #fff;
            list-style: none;
            padding: 15px;
            z-index: 99;
            width: 250px;
            li {
              padding: 5px 0;
            }
          }
        }
        @media (min-width: 768px) {
          li {
            .dropdown-menu {
              display: none;
            }
            &:hover {
              .dropdown-menu {
                display: block;
              }
            }
          }
        }
      }
    }
    .ButtonFlex {
      display: flex;
      gap: 30px;
      align-items: center;
    }
    .MobBtn {
      display: none;
      span {
        display: block;
        width: 22px;
        height: 2px;
        background-color: var(--secondary-color);
        margin: 5px 0;
        transition: all 0.3s ease;
      }
    }
  }
}

/* Hero */
.Banner-slider {
  position: relative;
  .item {
    aspect-ratio: 1920/816;
    width: 100%;
    overflow: hidden;
    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
  .slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 5px;
    list-style: none;
    position: absolute;
    bottom: 0;
    left: 170px;
    bottom: 40px;
  }

  .slick-dots li button {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white-color);
    padding: 0;
    font-size: 0; /* Removes numbers */
    line-height: 0;
    color: transparent; /* Hide text */
  }
  .slick-dots li.slick-active button {
    border: 4px solid var(--primary-color);
    background: var(--white-color);
  }
  .slick-prev,
  .slick-next {
    position: absolute;
    bottom: 40px;
    z-index: 1;
    background-color: var(--white-color);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
    &:hover {
      background-color: var(--primary-color);
      color: var(--white-color);
    }
  }
  .slick-prev {
    right: 140px;
  }
  .slick-next {
    right: 100px;
  }
}
/* Feature */
.Feature {
  margin: 50px 0;
  .Item {
    display: flex;
    align-items: centere;
    gap: 24px;
    padding: 20px;
    .Icon {
      i {
        font-size: 55px;
      }
    }
    .Content {
      h3 {
        margin-bottom: 4px;
      }
      p {
        font-size: 17px;
      }
    }
  }
}
/* Home About */
.Home-About {
  margin: 80px 0;
  .Title {
    h2 {
      color: var(--primary-color);
    }
  }
  p {
    margin: 25px 0;
  }
}
/* Home Product */
.HomeProduct {
  padding: 80px 0;
  background-color: #f9f5f8;
  .Title-Flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(143, 143, 143, 0.3);
    padding-bottom: 20px;
    .Navigation {
      display: flex;
      gap: 10px;
    }
    .Title {
      h2 {
        color: var(--primary-color);
      }
    }
  }
  .Product-Slider {
    margin: 0 -10px;
    .Product-Card {
      padding: 0 10px;
    }
  }
  .showmoreFlex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    p {
      width: 45%;
    }
  }
}
/* Hospitality */
.Hospitality {
  p {
    width: 70%;
  }
  .Content {
    padding-left: 50px;
  }
}
/* Category */
.Explore-Category {
  margin: 100px 0;
  .Title {
    text-align: center;
    margin-bottom: 45px;
    h2 {
      color: var(--primary-color);
      margin-bottom: 15px;
    }
    p {
      margin-top: 28px;
      width: 55%;
      margin: auto;
    }
  }
  .Category-Slider {
    .Product-Card {
      position: relative;
      .Product-Content {
        position: absolute;
        bottom: 20px;
        left: 40px;
        width: calc(100% - 80px);
        background-color: var(--primary-color);
        padding: 13px 20px;
        border-radius: 6px;
        text-align: center;
        transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
        h3 {
          color: var(--white-color);
          font-weight: 300;
          font-size: 17px;

          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
          text-overflow: ellipsis;
        }
        &:hover {
          background-color: var(--white-color);
          h3 {
            color: var(--primary-color);
          }
        }
      }
    }
  }
  .slider-Navigation {
    position: relative;
  }
  .Category-next,
  .Category-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background-color: var(--white-color);
    border: 1px solid var(--secondary-color);
    &:hover {
      background-color: var(--primary-color);
    }
  }
  .Category-next {
    right: -20px;
  }
  .Category-prev {
    left: -20px;
  }
  .slick-slide {
    padding: 0 10px;
  }
  .Category-Slider {
    margin: 0 -10px;
  }
}

/* faq */
.faq {
  margin: 80px 0;
  .TitleCenter {
    text-align: center;
    .Lined-Title {
      justify-content: center;
    }
    p {
      margin-bottom: 15px ;
    }
    .Title {
      h2 {
        color: var(--primary-color);
      }
      margin-bottom: 35px;
    }
    .Primary-button {
      display: none;
    }
  }
  @media (min-width: 1000px) {
    .Primary-button {
      display: block !important;
    }
    .row {
      align-items: center;
    }
    .TitleCenter {
      position: sticky;
      text-align: left;
      margin-top: 30px;
      .Lined-Title {
        justify-content: left;
      }
    }
  }
  .faq-content {
    background-color: #f9f5f8;
    margin: 0 auto;
    padding: 20px;
    border-radius: 14px;
    .faq-item {
      background-color: var(--white-color);
      padding: 20px;
      border-radius: 6px;
      margin-bottom: 10px;
      transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
      .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        h5 {
          width: 90%;
          font-weight: 500;
          font-size: 19px;
        }
        i {
          background-color: var(--primary-color);
          color: var(--white-color);
          border-radius: 50%;
          padding: 5px;
          transition: transform 0.3s ease;
        }
      }
      .faq-answer {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        p {
          margin-top: 15px;
        }
      }
      &.active {
        .faq-answer {
          max-height: 500px;
        }
        i {
          transform: rotate(180deg);
        }
      }
    }
  }
}
/* Footer */
footer {
  background-color: var(--secondary-color);
  padding-top: 50px;
  .Logo {
    width: 150px;
    margin-bottom: 15px;
  }
  p {
    opacity: 0.9;
    color: var(--white-color);
    width: 65%;
    font-size: 16px;
  }
  h4 {
    color: var(--white-color);
    font-weight: 400;
    margin-bottom: 15px;
  }
  ul {
    display: flex;
    align-items: center;
    gap: 20px;
    li {
      a {
        color: var(--white-color);
        opacity: 0.9;
        &:hover {
          opacity: 1;
          color: var(--primary-color);
        }
      }
    }
  }
  form {
    position: relative;
    input {
      width: 100%;
      padding: 10px 100px 10px 25px;
      border-radius: 50px;
      background-color: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--white-color);
      outline: none;
    }
    button {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      background-color: var(--primary-color);
      color: var(--white-color);
      border: none;
      padding: 5px 30px;
      border-radius: 50px;
      cursor: pointer;
    }
  }
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 50px;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    p {
      width: 100%;
      text-align: capitalize;
    }
  }
}
/* ABOUT US */
.InnerBanner {
  background-image: url(../image/banner2nd.jpg);
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  .container {
    position: relative;
    height: 100%;
  }
  .BannerCnt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    h1 {
      font-size: 55px;
      font-weight: 500;
      color: var(--white-color);
    }
    ul {
      display: flex;
      align-items: center;
      gap: 10px;
      li {
        &:last-child {
          a {
            color: #faa2de;
          }
        }
        a {
          color: var(--white-color);
        }
      }
    }
  }
}
.About {
  margin: 80px 0;
  .Title {
    text-align: center;

    h2 {
      color: var(--primary-color);
      margin-bottom: 25px;
    }
  }
}
.MiddileAbout {
  margin: 80px 0;
  .Title {
    h3 {
      color: var(--primary-color);
    }
  }
  .MarginTop {
    margin-top: 100px;
  }
  i {
    font-size: 38px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.QualityPriority {
  margin: 80px 0;
  .Bg {
    background-color: var(--primary-color);
    padding: 80px;
    border-radius: 16px;
    .Title {
      text-align: center;
      color: var(--white-color);
      h2 {
        margin-bottom: 15px;
      }
    }
    ul {
      text-align: center;
      margin-top: 50px;
      i {
        font-size: 55px;
        margin-bottom: 25px;
        display: block;
        color: var(--white-color);
      }
      h3 {
        color: var(--white-color);
        margin-bottom: 10px;
      }
      p {
        color: var(--white-color);
        opacity: 0.9;
      }
    }
  }
}
/* PRODUCT */
.ProductListing {
  margin: 80px 0;
  .row {
    row-gap: 25px;
  }
}
/* PRODUCT GALLERY */
.ProductGallery {
  border-top: 1px solid rgba(143, 143, 143, 0.3);
  padding: 50px 0;

  /*  */
  .ContentFlex {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .slider-wrapper {
    display: flex;
    align-items: start;
    width: calc(50% - 12px);
    gap: 5px;
    .slider-nav {
      width: calc(24.6% - 10px);
      overflow: hidden;
      .slick-list {
        padding: 0 !important;
      }
      .Item {
        width: 100% !important;
        aspect-ratio: 500/500;
        overflow: hidden;
        border: 1px solid var(--secondary-color);
        margin: 2px 0;
        img {
          width: 100% !important;
          height: 100%;
          object-fit: contain;
        }
      }
    }
    .slider-for {
      width: calc(72% - 6px);
      .Item {
        aspect-ratio: 500/500;
        overflow: hidden;
        border: 1px solid var(--secondary-color);

        img {
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
      }
    }
  }
  .ProductMainDetails {
    width: calc(50% - 12px);
    ul {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      li {
        &:last-child {
          a {
            color: var(--primary-color);
            font-weight: 500;
          }
        }
      }
    }
    h3 {
      font-size: 36px;
    }
    .description {
      margin: 20px 0;
    }
    .VarientButton {
      display: flex;
      align-items: center;
      gap: 30px;
      margin-top: 45px;
      .Color,
      .Size {
        display: flex;
        align-items: center;
        gap: 10px;
        h5 {
          font-size: 20px;
          font-weight: 400;
        }
        span {
          font-weight: 600;
          font-size: 20px;
        }
      }
      .ContactNow {
        a {
          font-size: 18px;
          border: 1px solid var(--secondary-color);
          border-radius: 50px;
          padding: 10px 50px;
          transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
          &:hover {
            background-color: var(--primary-color);
            color: var(--white-color);
          }
        }
      }
    }
    .FeatureItem {
      display: flex;
      align-items: center;
      gap: 30px;
      margin-top: 45px;
      text-align: center;
      .Item {
        border: 1px solid rgba(143, 143, 143, 0.3);
        padding: 10px;
        border-radius: 6px;
        padding: 30px;
        width: calc(50% - 15px);
        i {
          font-size: 65px;
          color: var(--primary-color);
        }
        h5 {
          margin: 12px 0;
        }
      }
    }
  }
}
.PeopleAlsoBought {
  padding: 80px 0;
  background-color: #f9f5f8;
  margin-top: 80px;
  .Title {
    margin-bottom: 70px;
    text-align: center;
    h2 {
      color: var(--primary-color);
    }
  }
  .AlsoBout {
    margin: 0 -10px;
    li {
      padding: 0 10px;
    }
  }
}
/* CONTACT US */
.ContactInformation {
  margin: 80px 0px;

  .Title {
    text-align: center;
    margin-bottom: 50px;
    h2 {
      color: var(--primary-color);
    }
  }
  form {
    input,
    select,
    textarea {
      font-size: 16px !important;
      padding: 10px !important;
      width: 100% !important;
      box-sizing: border-box;
      margin: 0 !important;
    }
    p {
      margin: 0 !important;
      padding: 0 !important;
    }
    span {
      margin: 20px 0px !important;
    }
  }
  h3 {
    font-size: 40px;
    font-weight: 500;
  }
  p {
    padding: 25px 0;
    max-width: 70%;
    font-size: 16px;
  }
  .Adress {
    p {
      margin-top: 10px;
      padding: 0px 0;
      opacity: 0.8;
      font-weight: 400;
      line-height: 21px;
    }
  }
  span {
    font-size: 28px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: underline;
    margin: 40px 0;
    display: block;
  }
  ul {
    display: flex;
    align-items: center;
    gap: 25px;
    li {
      a {
        font-weight: 400;
      }
    }
  }
  .Form {
    h5 {
      margin-bottom: 30px;
    }
    form {
      input,
      textarea,
      select {
        width: 100%;
        border: none;
        border-bottom: 1px solid rgba(143, 143, 143, 0.4);
        padding: 12px 0;
        outline: none;
        margin: 10px 0;
      }
      button {
        margin-top: 15px;
        border-radius: 56px;
        input {
          background-color: transparent !important;
          border: none;
          color: white;
          padding: 3px !important;
        }
      }
      button:hover input {
        color: #873d70;
      }
    }
  }
  .Map {
    iframe {
      width: 100%;
      margin-top: 80px;
      height: 500px;
      border-radius: 14px;
    }
  }
}

/* SCRLL BAR COLOR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.pagination {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.pagination a,
.pagination span {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 8px 14px;
  margin: 0 4px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

.pagination a:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.pagination .current {
  background: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

footer .col-md-3 ul {
  display: block !important;
  align-items: initial !important;
}
footer .col-md-3 ul li {
  padding: 4px;
}

.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  text-decoration: none;
  font-size: 32px;
}

.floating-whatsapp:hover {
  background-color: #128c7e;
}

.no-results {
  padding: 100px 0;
  text-align: center;
  background: #f9f9f9;
  border-radius: 10px;
  margin-top: 30px;
}

.no-results-content {
  max-width: 600px;
  margin: 0 auto;
}

.empty-icon {
  font-size: 50px;
  color: #25d366;
  margin-bottom: 20px;
}

.no-results h2 {
  font-size: 26px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.no-results p {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.btn-back-home {
  display: inline-block;
  background: #7a006f;
  color: #fff;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-back-home:hover {
  background: white;
}

/* Contact icons (email, phone) */
.new-social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-right: 10px;
  fill: #ffffff;
}

/* Contact list styling */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-list a {
  color: #ffffff;
  text-decoration: none;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
}

.social-icon {
  width: 25px;
  height: 25px;
  fill: #ffffff;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* .category-list {
  column-count: 2;
  column-gap: 20px;
  padding-left: 0;
}

.category-list li {
  list-style: none;
} */

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 40px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
}

.product-name-modal h6 {
  font-size: 18px;
  color: var(--secondary-color);
}

.modal-content .input-box label {
  font-weight: 600;
}

.modal-content .input-box {
  margin-bottom: 20px;
}

.modal-content .input-box.btn {
  display: flex;
  justify-content: end;
}

.modal-content .input-box input {
  width: 100%;
  padding: 10px;
  height: 45px;
  margin-top: 5px;
  border: solid 1px #d5d5d5;
  border-radius: 5px;
}

.modal-content .input-box button {
  background-color: var(--primary-color);
  color: #dedada;
  padding: 10px 40px;
  border: none;
  font-weight: 600;
}

.modal-content .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modal-content .close:hover,
.modal-content .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
