body {
    font-family: "Poppins", sans-serif;
  }

  :root {
    --primary-color: #016938;
    --secondary-color: #d4ffec;
    --ordinary-color: #f7fffb;
    --soft-color: rgb(246, 255, 244);
    --text-color: #ffffff;
    --text-secondary-color: #353535;
  }

  section {
    margin-block: 2rem;
  }

  .link-primary {
    color: var(--primary-color);
  }

  .atc-btn {
    border: 1px solid var(--primary-color);
    border-radius: 5px;

    a {
      padding: 10px 20px;
      color: var(--primary-color);
      display: inline-block;
      text-align: center;
      width: 100%;
      text-decoration: none;
    }

    &:hover {
      background-color: var(--primary-color);
      a {
        color: var(--text-color);
      }
    }
  }
  .atc-btn-filled {
    border-radius: 5px;
    overflow: hidden;
    scale: 1;
    -webkit-transition: scale 0.3s ease-in-out;
    -o-transition: scale 0.3s ease-in-out;
    transition: scale 0.3s ease-in-out;

    a {
      padding: 10px 20px;
      color: var(--text-color);
      display: inline-block;
      text-align: center;
      width: 100%;
      text-decoration: none;
      background-color: var(--primary-color);
    }

    &:hover {
      background-color: var(--primary-color);
      scale: 1.1;
      a {
        color: var(--text-color);
      }
    }
  }

  .quantity-selector {
    border: 1px solid lightgray;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    gap: 0.5rem;
    border-radius: 0.5rem;
    overflow: hidden;

    button {
      border: none;
      background-color: var(--primary-color);
      padding: 0.5rem 0.8rem;
      outline: none;
      cursor: pointer;
      font-size: 1rem;

      color: var(--text-color);
    }
    input {
      border: none;
      outline: none;
      width: 3rem;
      font-size: 1rem;
      padding-left: 1.2rem;
    }
  }

  #overlay {
    display: none;
    position: fixed;
    z-index: 99;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);

    &.active {
      display: block;
    }
  }

  .choose-btn {
    margin-inline: auto;
    text-align: center;
    width: 100%;
    a {
      background-color: var(--primary-color);
      color: var(--text-color);
      padding: 10px 20px;
      border-radius: 5px;
      display: inline-block;
      text-decoration: none;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
      width: 100%;
      white-space: nowrap;

      &:hover {
        background-color: var(--secondary-color);
        color: var(--text-secondary-color);
      }
    }
  }
  /* Button will scale animate all the time using css animation*/
  .animate-scale-all-the-time {
    animation: scale-all-the-time 2s ease-in-out infinite;
  }
  @keyframes scale-all-the-time {
    0%,
    100% {
      scale: 1;
    }
    50% {
      scale: 1.1;
    }
  }

  .primary-button {
    margin-inline: auto;
    text-align: center;
    a {
      background-color: var(--primary-color);
      color: var(--text-color);
      padding: 10px 20px;
      border-radius: 5px;
      display: inline-block;
      text-decoration: none;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
      white-space: nowrap;

      &:hover {
        background-color: var(--secondary-color);
        color: var(--text-secondary-color);
      }
    }
  }
  button.primary-button {
    margin-inline: auto;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    outline: none;
    cursor: pointer;

    &:hover {
      background-color: var(--secondary-color);
      color: var(--text-secondary-color);
    }
  }

  .page-title {
    text-decoration: none;
    font-weight: 400;
    font-size: 3rem;

    @media screen and (max-width: 768px) {
      font-size: 2rem;
    }
  }
  .section-title {
    text-decoration: none;
    font-weight: 400;
    font-size: 2rem;

    @media screen and (max-width: 768px) {
      font-size: 1.5rem;
    }
  }

  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 99;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    overflow: auto;
    background-color: transparent;
    .close-btn {
      position: absolute;
      right: 1rem;
      top: 1rem;
      padding: 1rem;
      cursor: pointer;
      z-index: 99;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      background-color: var(--primary-color);
      border-radius: 50%;

      i {
        color: var(--text-color);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
      }
    }
    .modal-content {
      background-color: #fefefe;
      margin: auto;
      padding: 20px;
      border: 1px solid #888;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      .modal-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        img {
          margin-inline: auto;
          display: block;
        }

        .product__info {
          .product-prices {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 0.5rem;

            .compare-price {
              color: lightgray;
              text-decoration: line-through;
              text-decoration-color: red;
              font-size: 1.5rem;
            }
            .main-price {
              font-size: 1.5rem;
              font-weight: bold;
            }
            .product-offer {
              background-color: red;
              color: var(--ordinary-color);
              padding-inline: 0.5rem;
              font-size: 1rem;
            }
            p {
              margin: 0;
            }
          }
          .product-variant {
            .variant-options {
              display: flex;
              align-items: center;
              justify-content: flex-start;
              gap: 1rem;
              flex-wrap: wrap;

              .variant-option {
                border: 1px solid #000;
                padding: 0.3rem 1rem;
                border-radius: 0.4rem;
                outline: none;
                white-space: nowrap;
                cursor: pointer;

                &.active {
                  background-color: var(--primary-color);
                  color: var(--text-color);
                }
              }
            }
          }
        }
      }
    }
    @media screen and (max-width: 768px) {
      width: 95vw;
      .modal-content {
        .modal-body {
          img {
          }
        }
      }
    }
  }

  /* Modal Styles End */

  /* Hot Deal Countdown Timer Styles Start */
  .countdown-timer {
    height: 100%;
    margin-block: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    #countdown {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;

      div {
        color: var(--text-color);
        background-color: var(--primary-color);
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
      }
    }
  }

  /* Checkout Modal Start */
  #CheckoutModal {
    display: none;
    position: fixed;
    z-index: 9999999;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 500px;
    height: 90vh;
    overflow: auto;
    background-color: transparent;

    .modal-body {
      padding: 0;
      padding: 0.8rem;
    }

    .product-title {
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 1; /* number of lines to show */
      line-clamp: 1;
      -webkit-box-orient: vertical;
    }

    .checkout-offer {
      display: inline-block;
      padding: 0 0.2rem;
      color: var(--text-color);
      margin-top: 0.2rem;
      border-radius: 0.2rem;
      background: linear-gradient(45deg, red, brown);
    }

    .product__info__price {
      p {
        margin: 0;
      }
    }

    .checkout-prices {
      border-radius: 5px;
      color: #000;
      background-color: #f9f9f9;
      border: 1px solid #d3d3d3;
      padding: 0.5rem;
      margin-top: 1rem;
    }
    .cart-items {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      .cart-item {
        border: 1px solid lightgray;
        padding: 0.4rem;
        border-radius: 0.4rem;
        .product-img {
          img {
            aspect-ratio: 1;
          }
        }
        .product__info__price {
          .product__info__price__old {
            text-decoration: line-through;
            text-decoration-color: red;
          }
        }
        .product-title {
          overflow: hidden;
          display: -webkit-box;
          -webkit-line-clamp: 2; /* number of lines to show */
          line-clamp: 2;
          -webkit-box-orient: vertical;
        }
        .product__info__quantity {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          gap: 0.5rem;
          cursor: pointer;
        }
      }
    }
    .checkout-close-btn {
      position: absolute;
      right: 1rem;
      top: 1rem;
      padding: 1rem;
      cursor: pointer;
      z-index: 99;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      background-color: var(--primary-color);
      border-radius: 50%;

      i {
        color: var(--text-color);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
      }
    }
    .modal-content {
      background-color: #fefefe;
      margin: auto;
      padding: 20px;
      border: 1px solid #888;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      .modal-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        img {
          margin-inline: auto;
          display: block;
        }

        .product__info {
          .product-prices {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 0.5rem;

            .compare-price {
              color: lightgray;
              text-decoration: line-through;
              text-decoration-color: red;
              font-size: 1.5rem;
            }
            .main-price {
              font-size: 1.5rem;
              font-weight: bold;
            }
            .product-offer {
              background-color: red;
              color: var(--ordinary-color);
              padding-inline: 0.5rem;
              font-size: 1rem;
            }
            p {
              margin: 0;
            }
          }
          .product-variant {
            .variant-options {
              display: flex;
              align-items: center;
              justify-content: flex-start;
              gap: 1rem;
              flex-wrap: wrap;

              .variant-option {
                border: 1px solid #000;
                padding: 0.3rem 1rem;
                border-radius: 0.4rem;
                outline: none;
                white-space: nowrap;
                cursor: pointer;

                &.active {
                  background-color: var(--primary-color);
                  color: var(--text-color);
                }
              }
            }
          }
        }
      }
    }
    @media screen and (max-width: 768px) {
      width: 95vw;
      .modal-content {
        .modal-body {
          img {
          }
        }
      }
    }
  }

  /* Navbar */
  ul {
    list-style: none;
    padding-left: 0;
  }

  .announcement-bar {
    background-color: var(--primary-color);
    padding-block: 0.3rem;
    color: var(--text-color);
    .splide__slide {
      font-size: 12px;
      font-weight: 500;
    }
  }
  .hot-deal-section {
    .deal-products {
      .deal-product {
        position: relative;
        .deal-product-offer {
          position: absolute;
          top: 0.5rem;
          right: 0;
          background-color: var(--primary-color);
          color: var(--text-color);
          padding: 0.3rem;
          border-top-left-radius: 8px;
          border-bottom-left-radius: 8px;
          p {
            margin: 0;
            font-size: 0.7rem;
          }
        }
        .deal-product-price {
          position: absolute;
          bottom: 0.5rem;
          right: 0;
          background-color: var(--primary-color);
          color: var(--text-color);
          padding: 0.3rem;
          border-top-left-radius: 8px;
          border-bottom-left-radius: 8px;
          p {
            margin: 0;
            font-size: 0.7rem;
          }
        }
      }
    }
  }
  .mobile_menu {
    display: none;
    width: 80%;
    height: 100vh;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background: #fff;

    .close-mobile-menu {
      position: absolute;
      left: 100%;
      top: 0;
      background-color: rgb(137, 132, 132);
      padding: 0.5rem 1rem;
      border-radius: 0 0.5rem 0.5rem 0;
      font-size: 1.5rem;
      color: #fff;
      font-weight: bold;
      cursor: pointer;
    }

    .mobile_menu_inner {
      .mobile_menu_tab {
        overflow: hidden;
        .mobile_menu_tab_items {
          li {
            padding: 0.5rem;
            a {
              font-size: 1rem;
              color: var(--text-secondary-color);
              text-decoration: none;
              background-color: lightgray;
              width: 100%;
              display: inline-block;
              height: 100%;
              padding: 1rem;
              text-align: center;

              &.mobile_menu_tab_item.active {
                border-bottom: 2px solid var(--text-secondary-color);
                background-color: rgb(205, 200, 200);
              }
            }
          }
        }
        .mobile_menu_tab_contents {
          #categories_tab_content {
            display: none;

            &.active {
              display: block;
            }
          }

          #menu_tab_content {
            display: none;

            &.active {
              display: block;
            }
          }

          ul {
            padding-inline: 1rem;
            li {
              padding-block: 0.5rem;
              border-bottom: 1px solid lightgray;
              a {
                font-size: 1.3rem;
                color: var(--text-secondary-color);
              }
            }
          }
        }
      }
    }
  }

  nav {
    border-bottom: 1px solid lightgray;
    -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

    &.sticky {
      position: fixed;
      z-index: 9999;
      width: 100%;
      background: #fff;
      top: 0;
    }

    .logo a {
      font-size: 20px;
      font-weight: 700;
      color: #353535;
      text-transform: uppercase;
    }

    /* normal menu css */

    .main_menu > ul > li {
      display: inline-block;
      position: relative;
      margin: 0 -2px;
    }
    .main_menu ul {
      list-style: none;
      margin: 0;
    }
    .main_menu ul li {
      position: relative;
    }

    .main_menu ul li a {
      font-size: 16px;
      color: #353535;
      padding: 10px 25px;
      display: block;
      font-weight: 400;
    }

    .main_menu ul li .active,
    .main_menu ul li:hover > a {
      color: var(--hover-color);
    }
    /* Normal Dropdown menu */
    .main_menu ul li ul {
      width: 200px;
      background: #fff;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s;
      /* box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.75); */
    }

    .main_menu ul li ul li a {
      padding: 10px 25px;
      font-size: 15px;
    }
    .main_menu ul li ul li a i {
      float: right;
    }

    .main_menu ul li ul li ul {
      left: 100%;
      top: 0;
    }

    /* mega menu css */
    .mega_menu_dropdown {
      position: static !important;
    }
    .mega_menu {
      left: 0;
      right: 0;
      background: #fff;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s;
      -webkit-box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.75);
      box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.75);
    }
    .mega_menu_item {
      width: 25%;
      padding: 30px 20px;
    }
    .main_menu ul li .mega_menu_item a {
      padding: 10px 0;
    }

    .main_menu ul li .mega_menu_item a:hover {
      color: var(--hover-color);
    }
    .mega_menu_item h3 {
      margin-bottom: 15px;
    }
    .mega_menu_item img {
      width: 100%;
    }

    /* demo_2 css */
    .mega_menu_demo_2 .mega_menu {
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      width: 1140px;
    }

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

    /* responsive css */
    @media (min-width: 992px) and (max-width: 1199.98px) {
      .container {
        width: 960px;
      }
      .mega_menu_demo_2 .mega_menu {
        width: 940px;
      }
      .main_menu ul li ul {
        width: 150px;
      }
    }

    @media (min-width: 768px) and (max-width: 991.98px) {
      .container {
        width: 720px;
      }
      .mega_menu_demo_2 .mega_menu {
        width: 700px;
      }
      .main_menu ul li a {
        font-size: 15px;
        padding: 20px 16px;
      }
      .main_menu ul li ul {
        width: 150px;
      }
    }
    @media (min-width: 768px) {
      .main_menu ul li ul {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        margin-top: 50px;
      }
      .main_menu ul li .mega_menu {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        margin-top: 50px;
      }
      .main_menu ul li:hover > ul {
        visibility: visible;
        opacity: 1;
        margin-top: 0px;
        z-index: 99;
      }
      .main_menu ul li:hover > .mega_menu {
        visibility: visible;
        opacity: 1;
        margin-top: 0;
        z-index: 99;
      }
    }

    .mobile_btn {
      cursor: pointer;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      gap: 1.5rem;

      i {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 767.98px) {
      .mega_menu_demo_2 .mega_menu,
      .container {
        width: 100%;
      }

      .mobile_btn {
        /* position: absolute; */
        right: 20px;
        top: 20px;
      }

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

      nav {
        padding: 15px;
      }

      .main_menu {
        display: none;
        width: 100%;
      }

      .main_menu ul li {
        display: block;
      }
      .main_menu ul li a i {
        float: right;
      }
      .main_menu ul li a {
        border-bottom: 1px solid #ddd;
      }
      .main_menu ul li ul {
        width: 100%;
      }
      .main_menu ul li ul li ul {
        left: 0;
        top: auto;
      }

      .mega_menu .mega_menu_item {
        width: 50%;
      }
      .main_menu ul li ul {
        display: none;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
      }
      .main_menu ul li .mega_menu {
        display: none;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
      }

      .mega_menu_demo_2 .mega_menu {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
      }
    }

    @media (max-width: 575.98px) {
      .mega_menu .mega_menu_item {
        width: 100%;
      }
    }

    .icons-right {
      gap: 1rem;
      > div {
        cursor: pointer;
      }
      i {
        font-size: 1.5rem;
      }
    }
  }

  /* Navbar */

  /* Product Page Styles */
  .product-content {
    .product-prices {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 0.5rem;

      .compare-price {
        color: lightgray;
        text-decoration: line-through;
        text-decoration-color: red;
        font-size: 1.5rem;
      }
      .main-price {
        font-size: 1.5rem;
        font-weight: bold;
      }
      .product-offer {
        background-color: red;
        color: var(--ordinary-color);
        padding-inline: 0.5rem;
        font-size: 1rem;
      }
      p {
        margin: 0;
      }
    }
    .product-variant {
      .variant-options {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
        flex-wrap: wrap;

        .variant-option {
          border: 1px solid #000;
          padding: 0.3rem 1rem;
          border-radius: 0.4rem;
          outline: none;
          white-space: nowrap;
          cursor: pointer;

          &.active {
            background-color: var(--primary-color);
            color: var(--text-color);
          }
        }
      }
    }
  }
  /* Product Page Styles */
  /* Icon with text Start */
  .icon-with-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-block: 1rem;

    &.horizontal {
      .icon-with-text__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        i {
          font-size: 2rem;
        }
      }
    }

    &.vertical {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      .icon-with-text__item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        p {
          margin: 0;
        }
        i {
          font-size: 1.5rem;
        }
      }
    }
  }
  /* Icon with text End */

  /* Product Share */
  .product-share-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    animation: fadeIn 0.5s ease-in-out;
    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }
  }
  .product-share-popup--active {
    display: block;
  }
  .product-share-popup__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  .product-share-popup__button {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  /* Product Share End */

  /* Tab Section Styles Start */
  .tab-section {
    .nav-tabs {
      padding-bottom: 1px;
      border: 1px solid var(--primary-color);
      .nav-item {
        button {
          border: none;
          outline: none;
          background: var(--text-color);

          a {
            text-decoration: none;
            border: none;
            outline: none;
          }
        }
        &.active {
          button {
            background-color: var(--primary-color);
            color: var(--text-color);
          }
        }
      }
    }
  }
  /* Tab Section Styles End */

  /* Hero Section Styles Start */
  .hero-section {
    #hero-slider {
      .splide__slide {
        .slider_image {
          img {
            width: 100%;
            max-height: 450px;
            -o-object-fit: cover;
            object-fit: cover;
          }
        }
        .slider_content {
          position: absolute;
          top: 50%;
          left: 50%;
          padding-left: 4rem;
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          /* background-color: rgba(0, 0, 0, 0.2); */
          color: var(--text-color);
        }
      }

      .splide__arrow {
        height: 20%;
        border-radius: 0;

        border: 0;
        outline: none;
        svg {
          /* fill: #fff; */
        }
        &.splide__arrow--next {
          right: 0;
          border-top-left-radius: 5px;
          border-bottom-left-radius: 5px;
        }
        &.splide__arrow--prev {
          left: 0;
          border-top-right-radius: 5px;
          border-bottom-right-radius: 5px;
        }
      }
    }

    @media screen and (max-width: 768px) {
      #hero-slider {
        .splide__slide {
          .slider_image {
            img {
              /* max-height: 500px; */
              /* height: 500px; */
            }
          }
        }
      }
    }
  }
  /* Hero Section Styles End */

  .collection-hero-section {
    #collection-hero-slider {
      .splide__slide {
        .slider_image {
          img {
            width: 100%;
            max-height: 450px;
            -o-object-fit: cover;
            object-fit: cover;
          }
        }
        .slider_content {
          position: absolute;
          top: 50%;
          left: 50%;
          padding-left: 4rem;
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          /* background-color: rgba(0, 0, 0, 0.2); */
          color: var(--text-color);
        }
      }

      .splide__arrow {
        height: 20%;
        border-radius: 0;

        border: 0;
        outline: none;
        svg {
          /* fill: #fff; */
        }
        &.splide__arrow--next {
          right: 0;
          border-top-left-radius: 5px;
          border-bottom-left-radius: 5px;
        }
        &.splide__arrow--prev {
          left: 0;
          border-top-right-radius: 5px;
          border-bottom-right-radius: 5px;
        }
      }
    }

    @media screen and (max-width: 768px) {
      #collection-hero-slider {
        .splide__slide {
          .slider_image {
            img {
              /* max-height: 500px;
              height: 500px; */
            }
          }
        }
      }
    }
  }

  /* Home Categories Section Start */
  .categories-section {
    margin-block: 2rem;

    .categories {
      row-gap: 1rem;
      .category-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background: #d4ffec;
        padding: 1rem;
        border-radius: 4px;
        gap: 0.5rem;
        height: 100%;

        &:hover {
          background: #016938;
          .category-icon {
            i {
              color: #fff;
            }
          }

          .category-title {
            p {
              color: #fff;
            }
          }
        }

        .category-icon {
          i {
            font-size: 1.5rem;
            color: #000;
          }
        }
        .category-title {
          p {
            font-size: 1.3rem;
            color: #000;
            margin: 0;
          }
        }
      }
    }
  }

  /* Home Categories Section End */

  /* Products Styles */
  .product-card {
    position: relative;
    display: inline-block;
    .ribbon {
      position: absolute;
      right: 0.5rem;
      top: 0.5rem;
      background-color: red;
      z-index: 0;
      padding: 5px 10px;

      p {
        white-space: nowrap;
        margin-bottom: 0;
        color: var(--text-color);
        font-size: 12px;
      }
    }
    .product-img {
      overflow: hidden;
      display: inline-block;
      img {
        max-width: 100%;
        width: 100%;
        scale: 1;
        height: 100%;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        aspect-ratio: 1/1;
        -o-object-fit: cover;
        object-fit: cover;
      }
    }
    .product__info {
      /* margin-block: 1rem; */
      .product-title {
        p {
          font-size: 1rem;
          font-weight: 500;
          text-align: center;
          color: #000;
          margin-bottom: 0.5rem;
          padding: 0;

          overflow: hidden;
          display: -webkit-box;
          -webkit-line-clamp: 2; /* number of lines to show */
          line-clamp: 2;
          -webkit-box-orient: vertical;
        }
      }
      .product-price {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 1rem;

        .discounted-price {
          text-decoration: line-through;
          -webkit-text-decoration-color: red;
          text-decoration-color: red;
          margin: 0;
          padding: 0;
          color: #000;
          opacity: 0.5;
        }
        .main-price {
          margin: 0;
          padding: 0;
          color: #000;
        }
      }

      .product-rating {
        /* margin-block: 0.5rem; */
        display: flex;
        align-items: center;
        gap: 0.3rem;
        justify-content: center;
      }
    }

    &:hover {
      text-decoration: none;
      .product-img {
        img {
          scale: 1.2;
        }
      }
      .product-title {
        p {
          text-decoration: underline;
        }
      }
      .product__info {
        .product-price {
          .discounted-price {
          }
        }
      }
    }
  }

  /* Product Styles */

  /* Collection Styles */
  .collection-card {
    text-decoration: none;

    .collection-img {
      overflow: hidden;
      img {
        width: 100%;
        max-width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        scale: 1/1.2;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
      }
    }

    .collection__info {
      margin-block: 1rem;
      .collection-title {
        p {
          font-size: 1.3rem;
          color: #000;
          white-space: nowrap;
        }
      }
    }

    &:hover {
      text-decoration: none;
      .collection-img {
        img {
          scale: 1.2;
        }
      }
      .collection-title {
        p {
          text-decoration: none;
        }
      }
    }
  }
  /* Collection Styles End */

  /* Product Main Carousel Start */

  .product-section {
    .product-slider {
      position: sticky;
      top: 0;
      #main-slider {
        .splide__slide {
          height: 500px !important;
        }
      }
    }

    @media screen and (max-width: 768px) {
      .product-slider {
        position: static;
      }
    }
  }

  #thumnail-slider {
  }
  /* Product Main Carousel End */

  /* Footer Styles Start */
  footer {
    background-color: var(--ordinary-color);
    .footer-top {
      padding-block: 3rem;
    }
    .footer-widget {
      .widget-title {
        font-weight: 400;
        font-size: 1.5rem;
      }
      ul {
        list-style: none;
        margin-left: 0;
        padding-left: 0;
        li {
          padding-block: 0.3rem;
          a {
            text-decoration: none;
            color: var(--text-secondary-color);
            &:hover {
              text-decoration: underline;
            }
          }
        }
      }
    }
    .footer-bottom {
      padding-block: 2rem;

      .copyright {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 1.2rem;
        p {
          margin: 0;
          padding: 0;
        }
        a {
          display: inline-block;
          color: var(--text-secondary-color);
        }
      }
    }
  }

  /* Footer Styles End */

  .search-products {
    .product-card {
      gap: 1rem;
      .product-img {
        display: inline-block;

        img {
          object-fit: contain;
          width: 80px;
        }
      }
      .product__info {
        margin: 0;
        p {
          margin: 0;
        }
      }
    }
  }
  /* Cart Styles */
  .cart {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    min-height: 100vh;
    padding: 20px;
    background: #fff;
    -webkit-box-shadow: -2px 0 4px hsl(0 4% 15% / 10%);
    box-shadow: -2px 0 4px hsl(0 4% 15% / 10%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 99999999;
    max-width: 80vw;

    .cart-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      height: 100vh;

      .cart-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border-bottom: 1px solid lightgray;
        padding-bottom: 1rem;
        width: 100%;

        .close-cart {
          cursor: pointer;
          padding: 0.5rem 1rem;
        }
      }

      .cart-content {
        height: 100%;
        overflow-x: hidden;
        overflow-y: scroll;
        margin-top: 1rem;
        .cart-items {
          display: flex;
          flex-direction: column;
          gap: 1rem;
          .cart-item {
            .product-img {
              img {
                aspect-ratio: 1;
              }
            }
            .product__info__price {
              .product__info__price__old {
                text-decoration: line-through;
                text-decoration-color: red;
              }
            }
            .product-title {
              overflow: hidden;
              display: -webkit-box;
              -webkit-line-clamp: 2; /* number of lines to show */
              line-clamp: 2;
              -webkit-box-orient: vertical;
            }
            .product__info__quantity {
              display: flex;
              align-items: center;
              justify-content: flex-start;
              gap: 0.5rem;
              cursor: pointer;
            }
          }
        }
      }
      .cart-footer {
        border-top: 1px solid lightgray;
        width: 100%;
        padding-bottom: 2rem;
        padding-top: 1rem;
      }
    }

    &.active {
      right: 0;
    }

    .cart-overlay {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 998;

      &:active {
        position: fixed;
      }
    }
  }

  /* Cart Styles End */

  .search-bar {
    position: fixed;
    width: 100vw;
    background: #fff;
    left: 0;
    right: 0;
    top: -100%;
    height: fit-content;
    padding-block: 0.5rem;
    z-index: 99;

    &.active {
      top: 0;
    }

    .search-input {
      border: none;
      outline: none;
      width: 100%;
    }

    .search-results-container {
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      background: #fff;
      z-index: 99;
      padding: 1rem;
      max-height: 500px;
      overflow-y: scroll;
      overflow-x: hidden;
    }
  }

  /* Review Rating Selector Widget */
  .rating {
    border: none;
    float: left;

    input {
      display: none;
    }

    label:before {
      margin: 5px;
      font-size: 1.25em;
      font-family: FontAwesome;
      display: inline-block;
      content: "\f005";
    }

    .half:before {
      content: "\f089";
      position: absolute;
    }

    label {
      color: #ddd;
      float: right;
    }

    input:checked ~ label,
    &:not(:checked) > label:hover,
    &:not(:checked) > label:hover ~ label {
      color: #ffd700;
    }

    input:checked + label:hover,
    input:checked ~ label:hover,
    label:hover ~ input:checked ~ label,
    input:checked ~ label:hover ~ label {
      color: #ffed85;
    }
  }
  #write-review {
    display: none;
  }
  .show-review-form {
    display: block;
  }
  .cancel-review {
    display: none;
  }
  #write-review.active {
    display: block;
  }
  #write-review.active .cancel-review {
    display: block;
  }
  #write-review.active a.write-review {
    display: none;
  }
  /* Review Rating Selector Widget End */

  /* Call Now Button Styles Start */
  .bottom-navigation {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /* z-index: 9999999999999; */

    .bottom-menu {
      display: none;
      align-items: center;
      justify-content: space-between;
      background-color: #fff;
      padding: 0.5rem;
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);

      .bottom-menu-item {
        /* width: 20%; */
        max-width: 20%;
        a {
          display: inline-flex;
          flex-direction: column;
          align-items: center;
          justify-content: space-evenly;
          color: var(--text-secondary-color);
          gap: 0.5rem;

          span {
            font-size: 12px;
            text-transform: uppercase;
          }
          i {
            font-size: 1.5rem;
          }
        }
      }
    }

    .call-button {
      position: fixed;


      z-index: 9999999999999;
      &.right {
        right: 1rem;
        bottom: 2rem;
      }

      &.left {
        left: 3rem;
        bottom: 5.5rem;
        .whatsapp {
          display: none;
          align-items: center;
          justify-content: center;
          color: #fff;
          position: relative;
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          i {
            background-color: #25d366;
            font-size: 2rem;
            position: absolute;
            right: 80%;
            top: 50%;
            transform: translateY(-50%);
            display: inline-block;
            padding: 0.4rem;
            color: #fff;
            border-radius: 50%;
          }

          &.active {
            display: block;
          }
        }
      }

      .call {
        display: none;
        align-items: center;
        justify-content: center;
        background-color: var(--primary-color);
        color: #fff;
        position: relative;
        border-top-right-radius: 1.5rem;
        border-bottom-right-radius: 1.5rem;
        span {
          display: inline-block;
          font-size: 1rem;
          color: #fff;
          padding: 0.7rem 1rem;
          font-weight: bold;
        }
        i {
          position: absolute;
          right: 85%;
          top: 50%;
          transform: translateY(-50%);
          color: #000;
          display: inline-block;
          font-size: 1.5rem;
          padding: 0.6rem;
          background-color: #fff;
          border-radius: 50%;
          border: 6px solid var(--primary-color);
        }
        &.active {
          display: flex;
        }
      }
    }

    @media screen and (max-width: 768px) {
      .bottom-menu {
        display: flex;
      }

      .call-button{

        &.left{
          bottom: 5rem;
        }

        &.right{
          bottom: 5rem;
        }


          .whatsapp{
            font-size: 1rem;
          }

          .call{
            span{
              padding: 0.5rem 0.7rem;
              font-size: 0.7rem;
            }
            i{
              font-size: 1rem;
              padding: 0.3rem;
            }
          }

      }

    }


  }

  /* Call Now Button Styles End */

  /* Support Page Styles */
  .support-page {
    .top {
      padding: 1rem;
      background-color: var(--primary-color);
      .image {
        img {
        }
      }
      .content {
        p {
          font-size: 1.5rem;
        }
      }
    }
    .support-form {
      form {
        margin-top: -2.5rem;
        padding: 2rem;
        background-color: #fff;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
        border-radius: 0.5rem;
      }
    }
  }
  /* Support Page Styles */

  #after-checkout {
    display: none;
    position: fixed;
    top: 5rem;
    left: 50%;
    max-width: 500px;
    width: 100vw;
    transform: translateX(-50%);
    z-index: 9999999999999;
    padding: 1rem;
    &.active {
      display: block;
    }
    .modal-content {
      height: 80vh;
      overflow-y: scroll;
    }
  }

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

  .thank-you-page {
    overflow: hidden;
    padding: 1rem;

    .left {
      padding: 1rem;
    }
    .right {
      padding: 1rem;
      background-color: rgb(248, 242, 242);
      .ordered-product {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding-bottom: 1rem;
      }
      .product-img {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        border: 1px solid lightgray;
        border-radius: 4px;
      }
      .product-img img {
        width: 100px;
        height: 100px;
      }
      .order-amount {
        position: absolute;
        top: -9px;
        right: -9px;
        background-color: lightgray;
        border-radius: 50%;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        line-height: 12px;
      }
      .product-info {
        flex: 2;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
      }
      .product-title p {
        margin-bottom: 0;
      }
      .product-price {
        display: flex;
        justify-content: space-between;
        gap: 0.5rem;
      }
      .discounted-price {
        font-weight: bold;
        color: red;
      }
      .main-price {
        text-decoration: line-through;
        color: gray;
      }
    }

    @media screen and (min-width: 768px) {
      padding: 0;
      .left {
        padding: 1rem 1rem 1rem 10rem;
      }
      .right {
        padding: 1rem 10rem 1rem 1rem;
      }
    }
  }

  .checkout-cancelled-modal {
    display: none;
    position: fixed;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 1rem;
    z-index: 99999999999999;
    &.active {
      display: block;
    }
    .product-extra-offer__container {
      display: flex;
      align-items: center;
      justify-content: center;
      /* draw start using css */
      width: 200px;
      aspect-ratio: 1;
      background: linear-gradient(red, orange);
      clip-path: polygon(
        100% 50%,
        88.64% 60.35%,
        93.3% 75%,
        78.28% 78.28%,
        75% 93.3%,
        60.35% 88.64%,
        50% 100%,
        39.65% 88.64%,
        25% 93.3%,
        21.72% 78.28%,
        6.7% 75%,
        11.36% 60.35%,
        0% 50%,
        11.36% 39.65%,
        6.7% 25%,
        21.72% 21.72%,
        25% 6.7%,
        39.65% 11.36%,
        50% 0%,
        60.35% 11.36%,
        75% 6.7%,
        78.28% 21.72%,
        93.3% 25%,
        88.64% 39.65%
      );
      color: #fff;
      margin: 0 auto;
      font-weight: bold;
      font-size: 2rem;
    }
  }


  .extra-add{
    padding: 0.5rem;
    border: 2px dashed var(--primary-color);
    border-radius: 0.5rem;
    background-color: var(--soft-color);
  }
