/*
Theme Name: Best Bargains NZ
Author: Kites Global
Description: Bootstrap WordPress theme for Best Bargains NZ website.
Version: 1.0
*/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Montserrat", sans-serif;
}

:root {
  --main-red: #c60d2f;
  --main-orange: #ff5733;
  --main-yellow: #dfa900;

  --main-red-hover: #a40421;
  --main-orange-hover: #ff2f00;
  --main-yello-hover: #ffbf00;

  --main-light-red: #ea1735;
}

.btn {
  border-radius: 0;
}

.btn-red {
  background-color: var(--main-red);
  padding: 0.5rem 2rem;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
}

.btn-red:hover {
  background-color: var(--main-red-hover);
  color: white;
}

.btn-theme1 {
  background-color: var(--main-red);
  color: #fff;
  border-radius: 2rem;
  padding: 0.5rem 2rem;
  text-transform: uppercase;
  border: 1px solid #fff;
  font-size: 0.9rem;
}

.btn-theme1:hover {
  background-color: var(--main-red-hover);
  color: #fff;
}

.btn-yellow {
  background-color: var(--main-yellow);
  padding: 0.5rem 2rem;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
}

.btn-yellow:hover {
  background-color: var(--main-yellow-hover);
  color: white;
}

.btn-green {
  background-color: var(--main-green);
  padding: 0.5rem 2rem;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
}

.btn-green:hover {
  background-color: var(--main-green-hover);
  color: white;
}

.wp-block-product-new {
  & .wc-block-grid__products {
    & .wc-block-grid__product {
      & a {
        .wc-block-grid__product-title {
          color: var(--main-red) !important;
        }
      }
    }
  }
}

.navbar {
  padding-bottom: 0;

  .main-menu-cont {
    display: block !important;
    padding: 0;
    position: relative;
    z-index: 1030;

    .menu-head {
      display: none;
    }

    .menu-body {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      padding: 0 1rem;

      .navbar-brand {
        width: 35%;
      }

      .search-form {
        width: 100%;
        margin-top: 1rem;

        .input-group {
          flex-wrap: unset;
          width: 85%;
          margin: auto;

          input {
            border: 1px solid #ccc;
            border-right: 0px !important;
            border-radius: 0;
            width: 20rem;
          }

          .btn {
            border: 1px solid #ccc;
            border-left: 0px !important;
            padding: 0.2rem 0.25rem;
            border-radius: 0;
            line-height: 1rem;

            i {
              background-color: #000;
              color: #fff;
              padding: 0.3rem 1.5rem;
            }
          }
        }

        .ajax-search-results {
          list-style: none;
          margin: 0;
          padding: 0;
          background: #fff;
          border: 1px solid #ddd;
          max-height: 500px;
          overflow-y: auto;
          position: absolute;
          /* top: 55px; */
          left: 0;
          width: 100%;
          z-index: 9999;

          .ajax-search-item {
            padding: 8px 12px;
            border-bottom: 1px solid #eee;

            a {
              text-decoration: none;
              color: #333;
              display: flex;
              align-items: center;
            }

            .ajax-search-info {
              padding: 1rem;
            }
          }

          .ajax-search-item:hover {
            background: #f5f5f5;
          }
        }
      }

      .user-panel {
        display: flex;
        gap: 1.5rem;
        align-items: center;

        .login {
          display: flex;
          align-items: center;
          gap: 0.3rem;
          text-decoration: none;
          color: #000;
          font-size: 0.8rem;
          font-weight: 600;

          i {
            color: var(--main-yellow);
            font-size: 1.5rem;
          }

          span {
            display: none;
          }
        }

        .cart {
          display: flex;
          position: relative;
          font-size: 1.5rem;
          color: #000;

          .cart-count {
            position: absolute;
            top: 0px;
            right: -8px;
            background-color: var(--main-yellow);
            border-radius: 50%;
            font-size: 0.6rem;
            padding: 1px 5px;
            color: #fff;
          }
        }
      }

      .call-us {
        display: none;
      }

      .navbar-toggler {
        border: 0px solid transparent;
      }
    }

    .menu-footer {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 3rem;

      .navbar-collapse {
        flex-grow: unset;
        padding: 0 1rem;

        .navbar-nav {
          .nav-item {
            .nav-link {
              text-transform: uppercase;
              font-weight: 600;
            }
            .nav-link.highlighted {
              color: var(--main-red);
            }

            .dropdown-toggle {
              display: flex;
              justify-content: space-between;
              align-items: center;
            }

            .dropdown-toggle::after {
              font-family: "bootstrap-icons";
              content: "\F282";
              margin-bottom: 2px;
              margin-left: 5px;
              border: none;
              line-height: 0;
              transition: all 0.3s ease-out;
            }
          }
        }
      }

      .apply4finance {
        margin-top: 1rem;
        width: 100%;

        .btn {
          background-color: var(--main-yellow);
          color: #fff;
          border-radius: 0;
          text-transform: uppercase;
          padding: 0.5rem;
        }
      }
    }
  }
}

/* dasun styles start */
.deal-card-itm {
  height: 100%;
  border: 1px solid #efefef;
  position: relative;

  a {
    text-decoration: none;
  }

  .deal-card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    background-color: #ccc;
  }

  .sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #fff;
    background-color: #ea0b2a;
    padding: 0.8rem 0.4rem;
    border-radius: 50%;
  }

  .deal-card-content {
    padding: 0.5rem;

    h5 {
      color: #000;
      text-transform: uppercase;
      font-size: 0.7rem;
      font-weight: 600;
      text-align: start;
      margin-bottom: 0;
      /* min-height: 45px;
      max-height: 45px; */
      overflow: hidden;
    }

    .deal-card-price {
      display: flex;
      justify-content: space-between;
      align-items: center;
      /* padding: 0.3rem 0.3rem 0.3rem 0.5rem; */
      background-color: #fff;
      /* min-height: 80px; */

      .discount {
        ins {
          text-decoration: none;

          bdi {
            text-decoration: none;
            padding: 0.3rem 0.5rem;
            font-weight: bold;
            color: var(--main-light-red);
            font-size: 1.1rem;
            border-radius: 0.5rem;
            margin-right: 0.2rem;
          }
        }

        del {
          text-decoration: none;

          bdi {
            font-size: 1.1rem;
            color: #a2a2a2;
            font-weight: 600;
            text-decoration: line-through;

            span {
              color: #a2a2a2;
            }
          }
        }

        bdi {
          color: var(--main-light-red);
          font-size: 1.1rem;
          font-weight: 600;
        }

        span {
          color: var(--main-light-red);
        }
      }

      .regular-price {
        font-size: 1.1rem;
        color: black;
        font-weight: 600;
        text-decoration: line-through;
      }

      .regular-price {
        font-size: 1.1rem;
        color: black;
        font-weight: 600;
        text-decoration: none;
      }

      .rating-value {
        font-size: 0.8rem;
        color: #757474;
        margin-top: 0.6rem;
      }
    }

    .deal-card-bottom {
      display: flex;
      justify-content: space-between;
      align-items: start;

      .per-week-price {
        color: var(--main-light-red);

        text-transform: uppercase;
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: -0.8rem;

        span {
          font-weight: bold;

          small.doller-mark {
            font-size: 1.2rem;
            vertical-align: baseline;
            font-weight: 600;
          }

          small.star-mark {
            font-size: 0.9rem;
            vertical-align: super;
            font-weight: 400;
          }
        }
      }

      .btn {
        min-width: 100px;
        background-color: var(--main-red);
        border-radius: 4rem;
        color: white;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 0.7rem;
        font-weight: 600;
        padding: 0.3rem 1rem;
      }
    }
  }

  /* .deal-card-timer {
    background-color: #fff;
    padding: 0 0.3rem 0.3rem 0.3rem;

    h6 {
      color: #5a5a5a;
      text-transform: uppercase;
      text-align: center;
      font-size: 0.9rem;
    }

    .timer {
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      gap: 0.5rem;

      div {
        background-color: #fff;
        color: #000;
        text-align: center;
        flex: 1;
        font-size: 1.3rem;
        font-weight: 500;
        text-transform: uppercase;
        padding: 0.5rem 0;

        small {
          display: block;
          font-size: 0.7rem;
        }
      }

      div.dc-seconds {
        color: var(--main-red);
      }
    }
  } */
}

.limited-weekly-deal-sec {
  padding: 12rem 0 1rem 0;

  h2 {
    text-transform: uppercase;
    text-align: center;
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }

  .lwd-carousel-row {
    justify-content: center;

    .lwd-carousel {
      .item {
        height: 100%;

        .deal-card-timer {
          background-color: #e3e3e3;
          padding: 0.5rem;
        }
      }

      .owl-nav {
        width: 100%;
        text-align: center;

        button {
          color: var(--main-red);
          font-size: 2.4rem;
        }

        button:hover {
          color: var(--main-green);
          background-color: transparent;
        }
      }
    }
  }
}

.sepecial-services-sec {
  padding: 2rem 0;

  .s-service-itm {
    display: flex;
    justify-content: center;
    align-items: center;

    .s-service-icon {
      padding: 0.5rem;

      img {
        width: 100px;
      }
    }

    .s-service-content {
      padding: 0.5rem;

      h5 {
        margin-bottom: 0;
        font-weight: 600;
      }

      p {
        margin-bottom: 0;
        color: #666;
      }
    }
  }
}

.bedroom-sec {
  padding: 3rem 0 2rem 0;

  color: #000;

  .bedroom-heading {
    text-align: center;
    margin-bottom: 2rem;

    h2 {
      font-size: 2rem;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
      font-weight: bolder;
    }
  }

  .bedroom-carousel-row {
    justify-content: center;

    .bedroom-carousel {
      .item {
        height: 100%;
      }

      .owl-nav {
        width: 100%;
        text-align: center;

        button {
          color: var(--main-red);
          font-size: 2.4rem;
        }

        button:hover {
          color: var(--main-green);
          background-color: transparent;
        }
      }
    }
  }
}

.why-with-us-sec {
  padding: 4rem 0 2rem 0;

  h2 {
    text-align: center;
    color: #000;
    font-weight: 700;
    font-size: 2.3rem;
    margin-bottom: 2rem;
  }

  .why-with-us-cont {
    .wwu-itm {
      text-align: center;
      padding: 1rem 2rem;

      img {
        margin-bottom: 1rem;
      }

      h4 {
        color: #000;
        font-weight: 700;
      }

      p {
        font-size: 0.7rem;
        margin-bottom: 0;
      }
    }
  }
}

footer {
  padding: 4rem 0 2rem 0;
  background-color: var(--main-red);
  color: #fff;

  a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  a:hover {
    color: #ccc;
    text-decoration: none;
  }

  .logo-col {
    img {
      margin-bottom: 1rem;
    }

    p {
      font-size: 0.8rem;
    }
  }

  .links-col {
    padding-top: 1rem;

    h5 {
      font-weight: 700;
      margin-bottom: 1rem;
    }

    ul {
      list-style: none;
      padding: 0;

      li {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
      }
    }
  }

  .contacts-col {
    padding-top: 1rem;

    h5 {
      font-weight: 700;
      margin-bottom: 1rem;
    }

    ul {
      list-style: none;
      padding: 0;

      li {
        margin-bottom: 0.2rem;
        font-size: 0.9rem;

        a {
          display: flex;
          align-items: center;
          gap: 0.5rem;

          i {
            font-size: 1rem;
          }
        }
      }
    }
  }

  .copyright-col {
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid #dd4560;
    padding-top: 1rem;

    p {
      margin-bottom: 0;
    }
  }
}

.page-banner {
  width: 100%;
  height: 400px;
  background-color: #5a5a5a;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;

  .page-title,
  .title {
    text-align: center;
    color: #fff;

    h1 {
      font-size: 4rem;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
      font-weight: bold;
    }

    h3 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
      font-weight: bold;
      text-transform: uppercase;

      span {
        color: #fff200;
        font-size: 3rem;
      }
    }
  }
}

.breadcrumbs {
  font-size: 0.8rem;
  color: #000;

  a {
    text-decoration: none;
    color: #4f4f4f;
  }

  a:hover {
    color: var(--main-green);
  }
}

.shop-loop {
  padding: 0.5rem 0 2rem 0;

  .woocommerce-result-count {
    display: none;
  }

  .orderby-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;

    .filter-icon {
      display: block;

      i {
        color: black;
        font-size: 1.5rem;
      }
    }
  }

  .filter-topic {
    display: flex;
    justify-content: start;
    margin-bottom: 1rem;
    margin-top: 0.4rem;
    text-transform: uppercase;
  }

  .shop-sidebar-cont {
    .accordion-item {
      border-radius: 0;
      border: none;

      .accordion-header {
        /* border-bottom: none; */
        .accordion-button {
          background-color: white;
          border-radius: 0;
          text-transform: uppercase;
          font-weight: bold;
          font-size: 0.9rem;
          color: #5a5a5a;
          padding: 0.8rem;
        }

        .accordion-button::after {
          background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
          transition: all 0.3s;
        }

        .accordion-button:not(.collapsed)::after {
          background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
          transition: all 0.3s;
        }
      }

      .accordion-body {
        background-color: white;

        ul {
          list-style: none;
          padding-left: 0;

          li {
            font-size: 0.9rem;

            a {
              display: flex;
              gap: 0.4rem;
            }
          }
        }

        a {
          text-decoration: none;
          color: black;
        }

        .wc-block-product-filter-price-slider .text input {
          max-width: 70px;
        }

        form {
          input {
            width: 100%;
          }

          button {
            border-radius: 0rem;
            border: 1px solid var(--main-red);
            background: var(--main-red);
            color: #fff;
            display: inline-flex;
            padding: 0.5rem 1rem;
            width: 100%;
            justify-content: center;
            align-items: center;
            gap: 10px;
            line-height: normal;
            transition: all ease 500ms;
            text-transform: uppercase;
            font-weight: bold;
          }
        }

        .color-swatches {
          display: flex;
          gap: 8px;
          margin: 10px 0;
        }

        .color-swatch {
          display: flex;
          width: 20px;
          height: 20px;
          border-radius: 50%;
          cursor: pointer;
          border: 2px solid #ccc;
          transition: transform 0.2s, border 0.2s;
        }

        li:hover .color-swatch {
          transform: scale(1.1);
          border-color: #000;
        }

        .color-swatch.selected {
          border-color: #000;
          box-shadow: 0 0 0 2px #000 inset;
        }
      }
    }

    /* .accordion-item:first-child {
      .accordion-collapse {
        display: block;
      }
    } */
  }

  .product-itm-cont {
    margin-bottom: 1rem;
  }

  .pagination {
    display: flex;
    justify-content: center;
    margin-top: 1rem;

    .page-link {
      color: #333;

      a {
        color: #333;
        text-decoration: none;
      }
    }

    .page-link.current {
      background-color: var(--main-red);
      color: #fff;
      border: none;
    }
  }

  .shop-sidebar-cont {
    position: fixed;
    top: 0;
    left: -500px;
    z-index: 999;
    width: 90%;
    height: 100%;
    transition: all ease 500ms;
    background-color: white;
    padding: 1rem;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 1rem;

  .page-link {
    color: #333;

    a {
      color: #333;
      text-decoration: none;
    }
  }

  .page-link.current {
    background-color: var(--main-red);
    color: #fff;
    border: none;
  }
}

.single-product-sec {
  padding: 2rem 0;

  .breadcrumb {
    font-size: 0.8rem;
    color: #000;

    a {
      text-decoration: none;
      color: #4f4f4f;
    }

    a:hover {
      color: var(--main-green);
    }
  }

  .product-itm-cont {
    margin-bottom: 2rem;
    width: 100% !important;

    .product-img-gal-cont {
      position: relative;

      .sale-badge {
        position: absolute;
        top: 3px;
        left: 3px;
        font-size: 0.8rem;
        text-transform: uppercase;
        color: #fff;
        background-color: var(--main-red);
        padding: 0.2rem 0.5rem;
        border-radius: 0rem 1rem 1rem 1rem;
        z-index: 1;
      }

      .woocommerce-product-gallery__trigger {
        position: absolute;
        top: 5px;
        right: 15px;
        z-index: 2;
        text-decoration: none;
        background-image: url("img/zoom-in-regular-24.png");
        width: 24px;
        height: 24px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        transition: all ease 500ms;

        span {
          display: none;
        }
      }

      .woocommerce-product-gallery__trigger:hover {
        width: 26px;
        height: 26px;
      }

      img {
        width: 100% !important;
        height: 100% !important;
      }

      ol {
        list-style: none;
        display: flex;
        justify-content: center;
        padding-left: 0;
        gap: 0.5rem;

        li {
          border: 1px solid #c2c2c2;
          transition: all ease 1000ms;
        }

        li:hover {
          border: 1px solid #000;
          cursor: pointer;
        }
      }

      .flex-viewport {
        margin-bottom: 0.75rem;
        border: 1px solid #646464;

        .woocommerce-product-gallery__wrapper {
          border: 0px solid #646464;
        }
      }

      .woocommerce-product-gallery__wrapper {
        border: 1px solid #646464;
      }
    }

    .product-info-cont {
      h2 {
        margin-bottom: 1.5rem;
      }

      h3 {
        margin-bottom: 2rem;
      }

      .price {
        color: #000;
        text-decoration: none;
        display: flex;
        gap: 1rem;
        justify-content: left;
        font-size: 1.5rem;
        font-weight: 600;

        del {
          color: #848484;
        }

        ins {
          text-decoration: none;
          font-weight: 700;
        }
      }

      .variations {
        margin-bottom: 1rem;

        tbody {
          tr {
            th {
              display: block;
            }

            td {
              display: flex;
              gap: 1rem;
              align-items: baseline;

              .reset_variations {
                text-transform: uppercase;
                color: var(--main-blue);
              }

              select {
                padding: 0.4rem;
              }

              .cfvsw-swatches-container {
                .cfvsw-swatches-option.cfvsw-label-option {
                  background-color: #ececec;
                  display: flex;
                  width: 45px;
                  height: 45px;
                  padding: 0px 15px;
                  flex-direction: column;
                  justify-content: center;
                  align-items: center;
                  gap: 10px;
                  flex-shrink: 0;
                  font-size: 1.5rem;
                }

                .cfvsw-swatches-option.cfvsw-label-option.cfvsw-selected-swatch {
                  background-color: var(--main-blue) !important;
                  color: #fff;
                }
              }

              .reset_variations {
                text-decoration: none;
                text-transform: uppercase;
              }
            }
          }
        }
      }

      .cart {
        margin-bottom: 1rem;

        input {
          display: block;
          padding: 0.375rem 0.75rem;
          font-size: 1rem;
          font-weight: 400;
          line-height: 1.5;
          color: var(--bs-body-color);
          -webkit-appearance: none;
          -moz-appearance: none;
          appearance: none;
          background-color: var(--bs-body-bg);
          background-clip: padding-box;
          border: var(--bs-border-width) solid var(--bs-border-color);
          border-radius: 0;
          transition: border-color 0.15s ease-in-out,
            box-shadow 0.15s ease-in-out;
        }

        .wapf {
          input {
            width: 50%;
          }
        }

        .quantity {
          width: 10%;
          display: inline-block;

          input {
            width: 100%;
          }
        }

        .woocommerce-variation-add-to-cart {
        }

        .button {
          border-radius: 0rem;
          border: 1px solid var(--main-red);
          background: var(--main-red);
          color: #fff;
          display: inline-flex;
          padding: 1rem 2rem;
          justify-content: center;
          align-items: center;
          gap: 10px;
          line-height: normal;
          transition: all ease 500ms;
          text-transform: uppercase;
          font-weight: bold;
        }

        .button:hover {
          border: 1px solid var(--main-red-hover);
          background: var(--main-red-hover);
          color: #fff;
        }
      }

      .variations_form.cart {
        display: block;
      }

      .product_meta {
        .sku_wrapper,
        .posted_in {
          font-size: 0.7rem;
          display: block;

          span,
          a {
            color: #848484;
            text-decoration: none;
          }
        }
      }

      .product_title.entry-title {
        text-transform: uppercase;
        color: #3e3e3e;
        font-size: 2rem;
      }

      .pay-weekly {
        color: var(--main-red);
        text-transform: uppercase;
        font-weight: 600;
      }

      .color-swatches {
        display: flex;
        gap: 8px;
        margin: 10px 0;
      }

      .color-swatch {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid #ccc;
        transition: transform 0.2s, border 0.2s;
      }

      .color-swatch:hover {
        transform: scale(1.1);
        border-color: #000;
      }

      .color-swatch.selected {
        border-color: #000;
        box-shadow: 0 0 0 2px #000 inset;
      }

      .reset_variations {
        font-size: 0.8rem;
        color: #5c5c5c;
        font-weight: 600;
      }

      .variations select[name^="attribute_pa_color"] {
        display: none;
        /* hide default dropdown */
      }

      form.cart .quantity {
        display: flex;
        align-items: center;
        gap: 5px;
      }

      .qty-cont {
        h6 {
          font-weight: 600;
        }

        .qty-ipfcont {
          display: flex;
          align-items: center;
          margin-bottom: 1rem;

          .qty-btn {
            background: #eee;
            border: 1px solid #ccc;
            padding: 6px 12px;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.2s;
          }

          .qty-btn.minus {
            border-radius: 1rem 0 0 1rem;
          }

          .qty-btn.plus {
            border-radius: 0 1rem 1rem 0;
          }

          .qty-btn:hover {
            background: #ddd;
          }
        }
      }

      .finance-info {
        font-size: 1.1rem;
        margin-top: 0.5rem;

        a {
          font-weight: 600;
          color: #000;
          text-decoration: none;
        }
      }
    }
  }

  .woocommerce-tabs {
    .tab-icon {
      display: inline-block;
    }

    .tab-text {
      display: none;
    }

    .nav {
      .nav-item {
        background-color: transparent;

        a {
          color: #878787;
        }

        font-size: 1rem;
        background-color: transparent;
        margin-right: 0.5rem;
        text-transform: uppercase;
      }

      .nav-item.active {
        border-bottom: 1px solid black;
        background-color: transparent;

        a {
          color: black;
          font-weight: 600;
        }
      }

      .nav-item:first-child {
        .nav-link {
        }
      }
    }

    .woocommerce-Tabs-panel {
      margin-bottom: 5rem;
      padding-top: 2rem;

      h2 {
        display: none !important;
      }

      p {
        margin-top: 0;
        margin-bottom: 0;
      }

      .comment-notes {
        font-size: 0.9rem;
        color: #5a5a5a;
      }

      .comment-form-rating {
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .form-submit {
        .submit {
          border-radius: 0rem;
          border: 1px solid var(--main-red);
          background: var(--main-red);
          color: #fff;
          display: inline-flex;
          padding: 0.4rem 1.5rem;
          justify-content: center;
          align-items: center;
          gap: 10px;
          line-height: normal;
          transition: all ease 500ms;
          text-transform: uppercase;
          font-weight: bold;
          margin-top: 1rem;
        }
      }

      .star-rating-wrapper {
        direction: rtl;
        /* 5 stars appear left-to-right */
        display: inline-flex;
      }

      .star-rating-wrapper input {
        display: none;
        /* hide radio buttons */
      }

      .star-rating-wrapper label.star {
        cursor: pointer;
        color: #ccc;
        font-size: 28px;
        padding: 0 2px;
        transition: color 0.2s;
      }

      /* Highlight checked stars */
      .star-rating-wrapper input:checked ~ label.star i {
        color: #f5b301;
      }

      /* Hover effect */
      .star-rating-wrapper label.star:hover i,
      .star-rating-wrapper label.star:hover ~ label.star i {
        color: #f5b301;
      }
    }
  }

  .up-sells {
    h2 {
      text-align: center;
    }

    .product-itm-cont {
      margin-bottom: 1.5rem;

      .product-itm {
        background-color: var(--main-red);
        text-align: center;
        position: relative;
        overflow: hidden;
        padding-bottom: 1rem;
        text-transform: uppercase;

        a {
          padding: 1rem;
          text-decoration: none;
          display: block;

          .onsale {
            position: absolute;
            top: 0;
            left: 0;
            background-color: var(--main-pink);
            color: #fff;
            padding: 0.1rem 0.5rem;
          }

          img {
            width: 100%;
            height: 100%;
          }

          h2 {
            font-size: 1.5rem;
            color: var(--main-blue);
            font-weight: 400;
          }

          .price {
            color: #000;
            text-decoration: none;
            display: flex;
            gap: 1rem;
            justify-content: center;

            del {
              color: #848484;
            }

            ins {
              text-decoration: none;
            }
          }
        }

        .button {
          border-radius: 0.625rem;
          border: 1px solid var(--main-pink);
          background: var(--main-pink);
          color: #fff;
          display: inline-flex;
          padding: 5px 20px 2px 20px;
          justify-content: center;
          align-items: center;
          gap: 10px;
          line-height: normal;
          transition: all ease 500ms;
        }

        .button:hover {
          border: 1px solid #e9018b;
          background: #a90467;
          color: #fff;
        }
      }
    }
  }

  .sinpage-relproducts {
    h2 {
      text-align: center;
      text-transform: uppercase;
      color: #000;
      margin-bottom: 1rem;
    }

    .deal-card-itm {
      img {
        display: none;
      }

      .deal-card-img {
        display: block;
      }
    }

    .related-products-carousel {
      .item {
        height: 100%;
      }

      .owl-nav {
        width: 100%;
        text-align: center;

        button {
          color: var(--main-red);
          font-size: 2.4rem;
        }

        button:hover {
          color: var(--main-green);
          background-color: transparent;
        }
      }
    }
  }

  .commentlist {
    display: none !important;
  }
}

/* dasun styles end */

/* ---- Binuka ---- */

.hero-sec {
  width: 100%;

  .hero-carousel {
    /* .item {
      height: 45svh;
    } */
    .owl-nav {
      width: 100%;
      position: absolute;
      top: 15%;
      display: flex;
      justify-content: space-between;

      button {
        font-size: 5rem;
        color: rgba(0, 0, 0, 0.313);
      }

      button:hover {
        color: rgba(0, 0, 0, 0.313);
        background-color: transparent;
      }

      .owl-prev {
        left: 10px;
      }

      .owl-next {
        right: 10px;
      }
    }

    .owl-nav.disabled {
      display: none !important;
    }

    .hero-slide-cont {
      position: relative;

      .main-title {
        margin: 0;
        padding: 0;
        position: relative;
        z-index: 1;

        .wobbly-text {
          font-size: 5rem;
          font-weight: 800;
          text-transform: uppercase;
          line-height: 5rem;
          margin-bottom: 0;

          .wobbly-word {
            display: inline-block;
          }
        }
      }

      .marquee-cont {
        display: none;
        position: relative;
        z-index: 2;

        .simple-marquee {
          overflow: hidden;
          white-space: nowrap;
          background: #511849;
          color: #fff;
          padding: 0.5rem 0;
          position: relative;
        }

        .track {
          display: inline-block;
          white-space: nowrap;
          animation: scroll 15s linear infinite;
          /* ← slower speed */
        }

        .track span {
          padding-right: 0.5rem;

          /* gap between the two copies */
          span {
            padding: 0 1rem;
            text-transform: uppercase;
            font-weight: 800;
            font-size: 0.8rem;
          }
        }
      }

      .offer-cont {
        margin-top: -2rem;
        position: relative;
        z-index: 3;

        .offer-img-cont {
          margin: auto;
        }

        .offer-info-cont {
          opacity: 0;
          position: relative;
          z-index: 5;
          width: 80%;
          margin-top: -2rem;
          margin-left: auto;
          margin-right: auto;
        }
      }
    }
  }

  .wobbly-text span {
    display: inline-block;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.simple-marquee:hover .track {
  animation-play-state: paused;
}

.add-banner-sec {
  padding: 2rem 0;

  .banner-cont {
    align-items: center;
    justify-content: center;

    .col-12 {
      padding: 0;
    }

    .img-desk {
      display: none;
    }
  }
}

.sale-sec {
  padding: 2rem 0;

  .title-cont {
    background-color: var(--main-orange);
    color: #fff;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    padding: 2rem 1rem;
    margin-bottom: 1rem;

    .text-cont {
      text-align: center;
      padding-top: 1rem;

      h2,
      h4 {
        text-transform: uppercase;
      }

      h4 {
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 0;
      }

      h2 {
        font-size: 6rem;
        font-weight: 700;
      }

      p {
        font-size: 0.8rem;
        text-align: center;
      }

      .btn {
        margin: auto;
        display: flex;
        width: fit-content;
      }
    }

    .arrow-cont {
      display: none;
    }
  }

  .sale-carousel {
    .owl-dots {
      position: absolute;
      bottom: -30px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .owl-dots .owl-dot.active span,
    .owl-dots .owl-dot:hover span {
      background: var(--main-orange);
    }
  }
}

.faq-section {
  margin-top: 3rem;
  margin-bottom: 3rem;
  .faq-title {
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
    font-size: 5rem;
    text-align: center;
    margin: 3rem 0 2rem 0;
    letter-spacing: 2px;
  }

  .faq-section {
    padding: 2rem 0 4rem 0;
  }

  .faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #dbe3ea;
    border-radius: 0;
    background: transparent;
  }

  .faq-accordion .accordion-button {
    background: transparent;
    color: #3a131a;
    font-weight: 600;
    font-size: 1.35rem;
    box-shadow: none;
    border: none;
    padding: 1.5rem 1rem 1.5rem 0;
    transition: color 0.2s;
  }

  .faq-accordion .accordion-button:focus {
    box-shadow: none;
    outline: none;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
    color: #b11e2d;
    background: transparent;
  }

  .faq-accordion .accordion-body {
    background: #f8f9fa;
    color: #3a131a;
    font-size: 1.08rem;
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 1.25rem 1.5rem;
  }

  .faq-accordion .accordion-button::after {
    content: "+";
    font-size: 2rem;
    color: #b11e2d;
    background: none;
    transform: none;
    margin-left: auto;
    transition: transform 0.2s;
  }

  .faq-accordion .accordion-button[aria-expanded="true"]::after {
    content: "−";
    color: #b11e2d;
  }

  @media (max-width: 991px) {
    .faq-cols {
      flex-direction: column;
    }

    .faq-col {
      width: 100%;
      margin-bottom: 2rem;
    }
  }
}

.shop-by-cat-sec {
  padding: 2rem 0 0 0;

  h2 {
    text-align: center;
    color: #000;
    font-weight: 700;
    font-size: 2.3rem;
  }

  h6 {
    text-align: center;
    color: #686868;
    font-weight: 600;
    margin-bottom: -1rem;
  }

  .shop-by-cat-cont {
    padding-top: 4rem;

    .cat-box {
      margin-bottom: -1rem;

      .cat-itm {
        text-align: center;
        padding: 1rem 2rem 0 1rem;

        a {
          text-decoration: none;
        }

        h5 {
          text-transform: uppercase;
          color: #000;
          font-weight: 700;
        }

        p {
          color: #000;
          font-size: 0.9rem;
          color: #000;
          font-size: 0.9rem;
          width: 80%;
          margin: auto;
        }
      }
    }
  }
}

.review-sec {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;

  .topic-cont {
    margin-bottom: 1.5rem;
    text-align: center;

    h2 {
      text-transform: uppercase;
      font-size: 1.6rem;
      margin-bottom: 1rem;
    }

    .rating-cont {
      display: flex;
      justify-content: center;
      align-items: start;
      gap: 1rem;

      .overall {
        text-align: start;
      }
    }
  }

  .review-cards-cont {
    .review-carousel {
      .owl-nav {
        display: flex;
        justify-content: center;

        button {
          color: var(--main-red);
          font-size: 2.4rem;
        }

        button:hover {
          color: var(--main-green);
          background-color: transparent;
        }
      }

      .item {
        display: flex;
        height: 100%;

        .review-card {
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          flex: 1;
          gap: 1.5rem;
          padding: 1.5rem;
          height: 350px;
          border: 1px solid #e1e1e1;

          .user {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
          }

          .description {
            flex: 1;
            display: grid;
            grid-template-rows: 1fr auto;

            p {
              font-size: 0.9rem;
            }

            button {
              background: none;
              border: none;
              color: var(--main-red);
              padding: 0;
              margin-top: auto;
              justify-self: start;
            }
          }
        }
      }
    }
  }
}

.stores-sec {
  background-color: #efefef;
  padding-top: 2rem;
  /* padding-bottom: 5rem; */

  h2 {
    text-transform: uppercase;
    font-size: 1.6rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: bold;
  }

  .store-cards-cont {
    margin-bottom: 3rem;

    .store-card {
      h5 {
        text-transform: uppercase;
        text-align: center;
        font-weight: bold;
      }

      .details {
        display: flex;
        flex-direction: column;
        align-items: start;
        height: 100%;
        justify-content: end;
        padding-top: 1rem;

        .contact {
          a {
            text-decoration: none;
            font-weight: bold;
            color: black;
          }
        }

        .working-hours {
          h6 {
            font-weight: bold;
          }

          ul {
            list-style: none;
            padding-left: 0;
          }
        }

        .socialies {
          a {
            background-color: #848484;
            border-radius: 50%;
            padding: 0.3rem 0.4rem;

            i {
              color: white;
            }

            transition: 0.3s all ease-in;
          }

          a:hover {
            background-color: #5a5a5a;
            transition: 0.3s all ease-in;
          }
        }
      }
    }

    .store-card:first-child {
      border-right: none;
      padding-bottom: 1rem;
      border-bottom: 3px solid #e1e1e1;
    }

    .store-card:last-child {
      padding-top: 1rem;
    }
  }

  .bottom-contact-card {
    margin-left: auto;
    margin-right: auto;
    /* height: 300px; */
    width: 100%;
    position: relative;
    bottom: 30%;

    .top-cont {
      border-radius: 0;
      height: 70%;
      padding: 1rem;
      background-color: #dbdbdb;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-align: center;

      h5 {
        text-transform: uppercase;
        text-align: center;
        font-weight: bold;
      }

      .links {
        margin-bottom: 1rem;

        a {
          text-decoration: none;
          color: black;
          font-weight: bold;
        }

        .contact {
          p {
            display: inline;
          }
        }
      }

      .socialies {
        a {
          background-color: #848484;
          border-radius: 50%;
          padding: 0.3rem 0.4rem;

          i {
            color: white;
          }

          transition: 0.3s all ease-in;
        }

        a:hover {
          background-color: #5a5a5a;
          transition: 0.3s all ease-in;
        }
      }
    }
  }
}

.blog.page-banner-sec {
  h1 {
    color: white;
    text-align: center;
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
}

.blog,
.blog-sec {
  margin-bottom: 3rem;

  .blog-itm {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #666666;
    text-align: start;
    height: 350px;

    .blog-img {
      width: 100%;
      height: 500px;
      background-size: cover;
      background-position: center;
    }

    .blog-body {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;

      h4 {
        font-size: 1rem;
        font-weight: 600;
      }

      p {
        font-size: 0.8rem;
      }

      a {
        text-decoration: none;
        color: #666666;
        font-weight: 600;
      }
    }
  }
}

.blog-sec {
  .topic-cont {
    text-align: center;
    margin-bottom: 2rem;

    h2 {
      margin-bottom: 2rem;
    }
  }
}

.store-locator-sec {
  margin-top: 3rem;

  .store-cont {
    margin-bottom: 3rem;
    text-align: center;

    h3 {
      text-transform: uppercase;
      font-size: 1.6rem;
      margin-bottom: 3rem;
      text-align: center;
      font-weight: bold;
    }

    .details {
      margin-top: 1rem;
      text-align: start;

      .contact {
        a {
          text-decoration: underline;
          font-weight: 600;
          color: black;
        }
      }

      .working-hours {
        h6 {
          font-weight: 600;
        }
      }
    }
  }

  .iframe-cont {
    iframe {
      width: 100%;
      max-width: 600px;
      height: 450px;
    }
  }
}

.about-us {
  margin-top: 5rem;
  margin-bottom: 5rem;

  h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: start;
  }

  .info-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }
}

.winz-catalog {
  margin-top: 3rem;
  margin-bottom: 3rem;

  h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
  }

  .deal-card-cont {
    margin-bottom: 1rem;

    .deal-card-itm {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;

      .deal-card-content {
        .deal-card-price {
          font-size: 1rem;
        }
      }
    }
  }
}

.apply-for-finance {
  margin-top: 3rem;
  margin-bottom: 3rem;

  h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
  }

  h6 {
    color: var(--main-red);
    font-weight: 500;
  }

  a {
    color: var(--main-red);
  }

  form {
    width: 100%;
    padding-top: 3rem;
    padding-left: 0;
    padding-right: 0;

    p {
      label {
        font-size: 0.9rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;

        input,
        textarea {
          padding: 0.6rem 0.8rem;
          background-color: #f1f1f1;
          border-radius: 2px;
          border: none;
          box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15),
            0 1px 0 rgba(0, 0, 0, 0.02);
          width: 100%;
          outline: none;

          input {
            width: 100%;
          }

          textarea {
            width: 100%;
          }
        }

        span {
          select {
            /* width: 50%; */
            padding: 0.6rem 0.8rem;
            background-color: #f1f1f1;
            border-radius: 2px;
            border: none;
            box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15),
              0 1px 0 rgba(0, 0, 0, 0.02);
            outline: none;
          }
        }
      }

      .checkboxes {
        display: flex;
        flex-direction: column;

        label {
          display: flex;
          flex-direction: row;
          justify-content: start;
          align-items: center;
        }

        input[type="radio"] {
          background: none;
          box-shadow: none;
          width: 15px;
          border: 1px solid var(--main-green);
          padding: 0.2rem;
        }
      }

      input[type="submit"] {
        width: 100%;
        padding: 0.5rem 1rem;
        color: white;
        background-color: var(--main-red);
        border: none;
        transition: all 0.3s ease-out;
      }

      input[type="submit"]:hover {
        background-color: var(--main-red-hover);
        transition: all 0.3s ease-in;
      }
    }

    .file-upload-cont {
      width: 100%;

      .file-upload {
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        background-color: #f1f1f1;
        border: 1px dashed var(--main-green-hover);
        color: #848484;
        text-align: center;
        padding: 2rem;
        margin-bottom: 1rem;

        input {
          display: none;
        }
      }

      .file-upload:hover {
        background-color: #f2f2f2;
      }
    }
  }

  .finance-marquee {
    .scrolling-content {
      display: flex;
      justify-content: space-between;

      img {
        width: 100px;
        margin-right: 1rem;
      }

      animation: scroll-left 10s linear infinite;
    }
  }
}

/* Cart page */
.wc-block-cart {
  table {
    .wc-block-cart-item__product {
      .wc-block-components-product-name {
        text-decoration: none;
        color: black;
        font-weight: 600;
      }
    }
  }

  .wc-block-components-sidebar {
    .wc-block-cart__submit {
      .wc-block-cart__submit-container {
        a {
          border-radius: 0rem;
          border: 1px solid var(--main-red);
          background: var(--main-red);
          text-decoration: none;
          color: #fff;
          display: inline-flex;
          padding: 1rem 2rem;
          justify-content: center;
          align-items: center;
          gap: 10px;
          line-height: normal;
          transition: all ease 500ms;
          text-transform: uppercase;
          font-weight: bold;
        }

        a:hover {
          border: 1px solid var(--main-red-hover);
          background: var(--main-red-hover);
          color: #fff;
        }
      }
    }
  }
}

/* Checkout Page */
.wc-block-checkout {
  .wc-block-checkout__actions_row {
    .wc-block-components-button {
      border-radius: 0rem;
      border: 1px solid var(--main-red);
      background: var(--main-red);
      text-decoration: none;
      color: #fff;
      display: inline-flex;
      padding: 1rem 2rem;
      justify-content: center;
      align-items: center;
      gap: 10px;
      line-height: normal;
      transition: all ease 500ms;
      text-transform: uppercase;
      font-weight: bold;
    }

    .wc-block-components-button:hover {
      border: 1px solid var(--main-red-hover);
      background: var(--main-red-hover);
      color: #fff;
    }
  }
}

/* Contact Us */
.contact-us {
  margin-top: 3rem;

  /* margin-bottom: 3rem; */
  h3 {
    text-transform: uppercase;
    font-size: 1.6rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: bold;
  }

  .store-cards-cont {
    margin-bottom: 3rem;

    .store-card {
      padding: 1rem;

      /* background-color: #f1f1f1; */
      h5 {
        text-transform: uppercase;
        text-align: center;
        font-weight: bold;
      }

      .details {
        display: flex;
        flex-direction: column;
        align-items: start;
        height: 100%;
        justify-content: end;
        padding-top: 1rem;

        .contact {
          a {
            text-decoration: none;
            font-weight: bold;
            color: black;
          }
        }

        .working-hours {
          h6 {
            font-weight: bold;
          }

          ul {
            list-style: none;
            padding-left: 0;
          }
        }

        .socialies {
          a {
            background-color: #848484;
            border-radius: 50%;
            padding: 0.3rem 0.4rem;

            i {
              color: white;
            }

            transition: 0.3s all ease-in;
          }

          a:hover {
            background-color: #5a5a5a;
            transition: 0.3s all ease-in;
          }
        }
      }
    }

    /* .store-card:first-child {
      border-right: none;
      padding-bottom: 1rem;
      border-bottom: 3px solid #e1e1e1;
    } */

    /* .store-card:last-child {
      padding-top: 1rem;
    } */
  }

  .bottom-contact-card {
    margin-left: auto;
    margin-right: auto;
    /* height: 300px; */
    width: 100%;
    position: relative;
    bottom: 30%;

    .top-cont {
      border-radius: 0;
      height: 70%;
      padding: 1rem;
      background-color: #dbdbdb;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-align: center;

      h5 {
        text-transform: uppercase;
        text-align: center;
        font-weight: bold;
      }

      .links {
        margin-bottom: 1rem;

        a {
          text-decoration: none;
          color: black;
          font-weight: bold;
        }

        .contact {
          p {
            display: inline;
          }
        }
      }

      .socialies {
        a {
          background-color: #848484;
          border-radius: 50%;
          padding: 0.3rem 0.4rem;

          i {
            color: white;
          }

          transition: 0.3s all ease-in;
        }

        a:hover {
          background-color: #5a5a5a;
          transition: 0.3s all ease-in;
        }
      }
    }
  }

  .form {
    width: 100%;

    padding-left: 0;
    padding-right: 0;

    p {
      label {
        font-size: 0.9rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;

        input,
        textarea {
          padding: 0.6rem 0.8rem;
          background-color: #f1f1f1;
          border-radius: 2px;
          border: none;
          box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15),
            0 1px 0 rgba(0, 0, 0, 0.02);
          width: 100%;
          outline: none;
        }

        textarea {
          width: 100%;
        }
      }

      input[type="submit"] {
        width: 100%;
        padding: 0.5rem 1rem;
        color: white;
        background-color: var(--main-red);
        border: none;
        transition: all 0.3s ease-out;
      }

      input[type="submit"]:hover {
        background-color: var(--main-red-hover);
        transition: all 0.3s ease-in;
      }
    }
  }
}

/* Blog article page */
.news-events-sec {
  margin-bottom: 2rem;

  ul,
  ol {
    margin: 0 0 0.8rem 0;
    padding: 0 0 0 2rem;

    li {
      margin-bottom: 0.5rem;
    }
  }
}

.common-page {
  h2 {
    color: black;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
  }

  a {
    color: var(--main-red);
  }

  button[type="submit"] {
    width: 100%;
    padding: 0.5rem 1rem;
    color: white;
    background-color: var(--main-red);
    border: none;
    transition: all 0.3s ease-out;
  }

  button[type="submit"]:hover {
    background-color: var(--main-red-hover);
    color: white;
    transition: all 0.3s ease-in;
  }

  .woocommerce-MyAccount-navigation {
    ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding-left: 0;

      li {
        width: 100%;
        background-color: #f1f1f1;
        border: 1px solid white;
        text-align: center;

        a {
          display: block;
          padding: 0.5rem 1rem;
          text-decoration: none;
          color: black;
          height: 100%;
          width: 100%;
        }
      }

      li.is-active {
        font-weight: 600;
      }

      li:hover {
        background-color: #c6c6c6;
      }

      li:last-child {
        a {
          background-color: var(--main-red);
          color: white;
        }

        a {
          background-color: var(--main-red-hover);
        }
      }
    }
  }
}

.wp-block-product-new {
  .wc-block-grid__products {
    gap: 1rem;
    flex-wrap: nowrap;

    .wc-block-grid__product {
      a {
        text-decoration: none;
        margin-bottom: 1rem;

        .wc-block-grid__product-onsale {
          font-size: 0.8rem;
          text-transform: uppercase;
          color: #fff;
          background-color: var(--main-red);
          padding: 0.2rem 0.5rem;
          border-radius: 1rem 0rem 1rem 1rem;
          border: none;
        }

        .wc-block-grid__product-title {
          background-color: var(--main-green);
          color: #fff;
          padding: 0.5rem 0.75rem;
          text-transform: uppercase;
          font-size: 0.7rem;
          text-align: center;
          margin-bottom: 0;
          min-height: 45px;
          max-height: 45px;
          overflow: hidden;
          display: flex;
          justify-content: center;
          align-items: center;
        }
      }

      .wc-block-grid__product-price {
        del {
          font-size: 1.1rem;
          color: #a2a2a2;
          font-weight: 600;
          text-decoration: line-through;
        }

        ins {
          background-color: #fff200;
          text-decoration: none;
          padding: 0.3rem 0.5rem;
          font-weight: bold;
          color: #000;
          font-size: 1.1rem;
          border-radius: 0.5rem;
          margin-right: 0.2rem;
        }
      }

      .wc-block-grid__product-rating {
        .star-rating {
          color: #f1c40f;
        }
      }

      .wp-block-button {
        display: none;
      }
    }
  }
}

/* Image starts small */
.item-image,
.offer-img-cont {
  transform: scale(0.5);
  opacity: 0;
}

/* All other elements start zoomed-out */
.sec-title,
.sec-sub-title,
.item-title,
.item-desc,
.item-btn {
  transform: scale(0.8);
  opacity: 0;
}

@media (min-width: 768px) {
  .navbar {
    .main-menu-cont {
      .menu-body {
        .search-form {
          display: flex;
          position: relative;
          width: fit-content;
          top: 0px;
          padding: 0;

          .search-input {
            gap: 4rem;
          }

          .ajax-search-results {
            top: 40px;
            max-height: 250px;
          }
        }

        .navbar-brand {
          width: 20%;
        }
      }
    }
  }

  .hero-sec {
    .hero-carousel {
      /* .item {
        height: 40svh;
      } */
      .hero-slide-cont {
        .main-title {
          .wobbly-text {
            font-size: 8rem;
            line-height: 6rem;
          }
        }

        .offer-cont {
          margin-top: -8rem;

          .offer-info-cont {
            margin-top: -4rem;
          }
        }
      }
    }
  }

  .sale-sec {
    .title-cont {
      justify-content: center;
    }
  }

  .stores-sec {
    .store-cards-cont {
      .store-card {
        .details {
          padding-top: 1rem;
        }
      }

      .store-card:first-child {
        border-right: 3px solid #e1e1e1;
        /* padding-r: 1rem; */
        border-bottom: none;
      }

      .store-card:last-child {
        padding-left: 1rem;
        padding-top: 0;
      }
    }
  }

  .limited-weekly-deal-sec {
    padding: 2rem 0 1rem 0;
  }

  .single-product-sec {
    .woocommerce-tabs {
      .tab-icon {
        display: none;
      }

      .tab-text {
        display: inline-block;
      }
    }
  }

  .shop-loop {
    .shop-sidebar-cont {
      position: relative;
      top: unset;
      left: unset;
      padding: 0;
      z-index: 1;
    }

    .orderby-wrapper {
      .filter-icon {
        display: none;
      }
    }
  }

  .apply-for-finance {
    .finance-marquee {
      overflow: hidden;

      .scrolling-content {
        animation: none;
        white-space: nowrap;
      }
    }
  }

  footer {
    .main-nav {
      ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
      }
    }
  }
}

@media (min-width: 992px) {
  .navbar {
    padding-top: 0;
    padding-bottom: 0;

    .main-menu-cont {
      .menu-head {
        padding: 0 1rem;
        display: flex;
        gap: 0.6rem;
        justify-content: end;
        align-items: center;
        border-bottom: 1px solid #e8e8e8;

        a {
          text-decoration: none;
          color: #ccc;
          font-size: 1.5rem;
          line-height: 1.5rem;
          transition: all 0.3s ease;
        }

        a:hover {
          color: var(--main-yello-hover);
        }
      }

      .menu-body {
        border-bottom: 1px solid #e8e8e8;
        flex-wrap: unset;
        justify-content: center;
        gap: 4rem;

        .navbar-brand {
          width: 10%;
        }

        .search-form {
          width: fit-content;
          margin-top: 0rem;

          .input-group {
            width: 100%;
          }
        }

        .user-panel {
          .login {
            span {
              display: inline;
            }
          }
        }

        .call-us {
          display: flex;
          align-items: center;
          gap: 0.3rem;
          border: 1px solid var(--main-yellow);
          border-radius: 2rem;
          padding: 0.1rem 1rem 0.1rem 0.3rem;
          text-decoration: none;
          color: #000;

          i {
            background-color: var(--main-yellow);
            color: #fff;
            font-size: 1.8rem;
            border-radius: 50%;
            padding: 0.4rem 0.4rem 0.3rem 0.4rem;
          }

          span {
            font-size: 0.8rem;
          }

          h5 {
            font-size: 0.9rem;
          }
        }
      }

      .menu-footer {
        .apply4finance {
          margin-top: 0rem;
          width: 15%;
        }
      }
    }
  }

  .hero-sec {
    .hero-carousel {
      /* .item {
        height: 70svh;
      } */
      .hero-slide-cont {
        .main-title {
          .wobbly-text {
            font-size: 10rem;
            line-height: 9rem;
          }
        }

        .marquee-cont {
          display: block;
        }

        .offer-cont {
          margin-top: -8rem;

          .offer-img-cont {
            width: 50%;
          }

          .offer-info-cont {
            width: 35%;
            margin-top: -4rem;
          }
        }
      }

      .owl-nav {
        top: 10%;

        button {
          font-size: 8rem;
        }
      }
    }
  }

  .add-banner-sec {
    .banner-cont {
      .img-desk {
        display: block;
      }

      .img-mobi {
        display: none;
      }
    }
  }

  .sale-sec {
    .title-cont {
      padding: 0;
      margin-bottom: 0;
      justify-content: unset;

      .text-cont {
        h4 {
          line-height: 0rem;
        }
      }

      .arrow-cont {
        display: block;

        i {
          font-size: 5rem;
        }
      }
    }
  }

  .contact-us {
    form {
      padding-left: 10rem;
      padding-right: 10rem;
    }

    .bottom-contact-card {
      width: 600px;
    }
  }

  .stores-sec {
    .bottom-contact-card {
      width: 600px;
    }
  }

  .common-page {
    .woocommerce-MyAccount-navigation {
      ul {
        display: flex;
        flex-direction: row;
      }
    }
  }

  .apply-for-finance {
    .finance-marquee {
      .scrolling-content {
        animation: none;
      }
    }
  }

  .shop-by-cat-sec {
    h2 {
      text-align: center;
      color: #000;
      font-weight: 700;
      width: 25%;
      margin: 0 auto 1rem auto;
      font-size: 2.3rem;
    }

    .shop-by-cat-cont {
      background-image: url(img/shop-by-cat-bg.jpg);
      background-repeat: no-repeat;
      background-position: bottom center;
      background-size: cover;
    }
  }
}

@keyframes scroll-left {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}
