/* 
Theme Name: GS Sports
Author: Kites
Description: GS Sports Theme
Version: 1.0 
*/

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root {
  --background-color: #000;
}

body {
  position: relative;
  background-color: var(--background-color);
}

header {
  padding: 1rem 0;

  .logo-bg-cont {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .navbar {
    .main-menu-cont {
      flex-direction: column;
      justify-content: center;

      .search-cont {
        display: flex;
        width: 100%;
        justify-content: center;
        position: relative;
        margin-top: -0.5rem;

        .input-group {
          width: 30%;
          margin: auto;
          padding: 0 0.5rem;
          background-color: #000000;
          border-radius: 2rem;

          input::placeholder {
            color: #fff;
            opacity: 0.4;
            font-style: italic;
            font-size: 0.9rem;
          }
        }

        hr {
          margin: 1rem 0;
          color: inherit;
          border: 0;
          border-top: #fff var(--bs-border-width) solid;
          opacity: 0.25;
          width: 100%;
          position: absolute;
          top: 0;
        }

        .form-control {
          border-radius: 1.25rem;
          background-color: #161514;
          border-color: #6c757d;
        }

        .btn {
          border-radius: 1.25rem;
          background-color: #161514;
          border-left: 0;
        }
      }

      .navbar-cont {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: end;

        .contacts-cont,
        .navbar-brand,
        .links-cart-cont {
          width: 33.3333%;
        }

        .contacts-cont {
          color: #636363;
          font-size: 0.9rem;

          a {
            color: #fff;
            text-decoration: none;
          }
        }

        .navbar-brand {
          margin-right: 0rem;
        }

        .links-cart-cont {
          .cart-cont {
            text-align: right;
            display: flex;
            justify-content: flex-end;
            gap: 0.5rem;

            .payment-meth-cont {
              display: flex;
              justify-content: center;
              align-items: center;
              gap: 0.5rem;
              color: #636363;
              font-size: 0.9rem;

              img {
                width: 20%;
                height: fit-content;
              }
            }

            .cart-icons-cont {
              display: flex;
              gap: 0.5rem;

              a {
                text-decoration: none;
                color: #0c0c0c;
                padding: 0.2rem 0.5rem;
                background-color: #fff;
                border-radius: 50%;
              }

              .cart-icon {
                background-color: #ff0000;
                color: #fff;
                position: relative;

                span {
                  position: absolute;
                  top: -7px;
                  left: 16px;
                  background-color: #fff;
                  color: #000;
                  padding: 0rem 0.4rem;
                  border-radius: 50%;
                  font-size: 0.8rem;
                }
                position: relative;

                span {
                  position: absolute;
                  top: -7px;
                  left: 16px;
                  background-color: #fff;
                  color: #000;
                  padding: 0rem 0.4rem;
                  border-radius: 50%;
                  font-size: 0.8rem;
                }
              }
            }
          }

          .links-cont {
            text-align: right;
            color: #fff;
            margin-bottom: 0.5rem;

            a {
              text-decoration: none;
              color: #fff;
              font-size: 0.9rem;
              font-style: italic;
              transition: color 0.3s ease-in-out;

              &:hover {
                color: #747474;
              }
            }
          }
        }
      }

      .navbar-nav {
        .nav-item {
          .nav-link {
            color: #fff;
            text-transform: uppercase;
            transition: color 0.3s ease-in-out;
            font-size: 0.9rem;

            &:hover {
              color: #747474;
            }

            &.is-open {
              color: #747474;
            }
          }
        }
      }
    }
  }

  .fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background-color: #0c0c0c;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition:
      opacity 0.3s ease-in-out,
      transform 0.3s ease-in-out,
      visibility 0.3s;
    overflow-y: auto;

    &.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .fullscreen-menu-inner {
      max-width: 1140px;
      margin: 0 auto;
      /* padding: 1rem 1.5rem 3rem; */
      position: relative;
      background-color: #ffffff29;
    }

    .fullscreen-menu-close {
      display: block;
      margin: 0 0 0 auto;
      background: transparent;
      border: 0;
      color: #fff;
      font-size: 1.5rem;
      line-height: 1;
      padding: 1rem 1rem 0 0;
      cursor: pointer;
      transition: color 0.3s ease-in-out;

      &:hover {
        color: #747474;
      }
    }

    .fullscreen-menu-panel {
      display: none;
      padding: 0 1.5rem 2rem 1.5rem;

      &.active {
        display: block;
        animation: fullscreen-menu-fade 0.35s ease-in-out;
      }

      .fullscreen-menu-panel-title {
        color: #fff;
        text-transform: uppercase;
        font-size: 1.75rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      }

      .fullscreen-menu-links {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0 2rem;

        li a {
          display: block;
          color: #fff;
          text-decoration: none;
          font-size: 1rem;
          padding: 0.5rem 0;
          opacity: 0.8;
          transition:
            color 0.3s ease-in-out,
            opacity 0.3s ease-in-out;

          &:hover {
            color: #747474;
            opacity: 1;
          }
        }

        li:last-child a {
          font-style: italic;
          text-decoration: underline;
          opacity: 1;
        }
      }
    }
  }
}

.footer {
  background-color: #000;
  color: #fff;
  padding-top: 3rem;

  .row {
    text-align: center;

    a {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: #fff;
      font-size: 1rem;
      font-weight: 500;
      font-style: italic;
      /* line-height: 1.5; */
    }

    p {
      line-height: 0.5;
      font-style: italic;
      font-size: 0.9rem;
    }

    h4 {
      text-transform: uppercase;
      font-size: 1.3rem;
      margin-bottom: 1rem;
      font-weight: 600;
      font-style: italic;
    }
  }
}

.red-button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
  font-style: italic;
  padding-left: 2rem;
  padding-right: 2rem;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2rem;
  transition: background-color 0.3s ease;

  &:hover {
    background-color: #cc0000;
  }
}

.pagination-block {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  .pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;

    .page-item:first-child {
      .page-link {
        border-radius: 0;
      }
    }

    .page-item:last-child {
      .page-link {
        border-radius: 0;
      }
    }

    .page-item {
      border: none;
      border-radius: 0;
      .page-link {
        border: 1px solid #949494;
        color: #949494;
        font-weight: 700;
        font-style: italic;
      }

      .page-link.current {
        background-color: #ff0000;
        border: 1px solid #ff0000;
        color: #ffffff;
      }
    }
  }
}

.home-page {
  .hero-section {
    background-image: url("img/home-hero-banner.jpg");
    width: 100%;
    aspect-ratio: 2000 / 750;
    background-size: cover;
    background-position: center;
  }

  .gym-toggle-container.nav {
    display: inline-flex;
    background-color: #2a2a2a;
    border-radius: 50px;
    padding: 0;
    border: none;
  }

  .toggle-btn.nav-link {
    padding: 12px 35px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-weight: 800;
    font-style: italic;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 50px;
    transition:
      background-color 0.3s ease,
      color 0.3s ease;
  }

  .toggle-btn.nav-link.active {
    background-color: #ff0000 !important;
    color: #ffffff !important;
  }

  .category-carousel-section {
    background-color: #000;
    padding: 2rem 0;
  }

  .category-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
  }

  .category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .category-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 1;
  }

  .category-title {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-weight: 800;
    font-style: italic;
    font-size: 1rem;
    text-transform: uppercase;
    z-index: 2;
  }

  .category-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    pointer-events: none;
    margin-top: 0 !important;
    z-index: 10;
  }

  .category-carousel .owl-nav button {
    pointer-events: auto;
    color: #fff !important;
    font-size: 2.5rem !important;
    margin: 0 !important;
    opacity: 0.5;
    transition: opacity 0.3s;
    position: absolute;
  }

  .category-carousel .owl-nav button:hover {
    background: transparent !important;
    opacity: 1;
  }

  .category-carousel .owl-nav button.owl-prev {
    left: -1px;
  }

  .category-carousel .owl-nav button.owl-next {
    right: -1px;
  }

  .category-carousel .owl-nav.disabled {
    display: block !important;
  }

  .about-section {
    background-image: url("img/about-bg.jpg");
    width: 100%;
    aspect-ratio: 2000 / 750;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;

    .txt-content {
      width: 50%;
      text-align: center;
      color: #fff;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;

      h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        line-height: 0.6;
        font-style: italic;
        font-weight: 700;
        text-transform: uppercase;
      }

      p {
        font-size: 1.2rem;
        line-height: 1.2;
        max-width: 600px;
        margin: 1rem auto;
      }

      /* a {
                margin-top: 1rem;
                padding: 0.5rem 1rem;
                background-color: #ff0000;
                color: #fff;
                text-decoration: none;
                border-radius: 0.25rem;
                transition: background-color 0.3s ease;

                &:hover {
                    background-color: #cc0000;
                }
            } */
    }
  }

  /* .featured-video-section {
        background-color: #fff;

        h2 {
            font-size: 1.5rem;
            color: #000;
            margin-bottom: 1rem;
            padding-top: 3rem;
            font-style: italic;
        }

        .nav-buttons .nav-link {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.5rem 1rem;
            background-color: #fff;
            color: #000;
            text-decoration: none;
            border-radius: 2rem;
            border: 1px solid #000;
            transition: background-color 0.3s ease, color 0.3s ease;
            width: 180px;
            cursor: pointer;

            &:hover,
            &.active {
                background-color: #000 !important;
                color: #fff !important;
            }
        }

        .carousel-container {
            position: relative;
            height: 350px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            margin-top: 1rem;

            .video-card {
                position: absolute;
                width: 40%;
                transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, filter 0.5s ease;
                z-index: 1;
                opacity: 0.5;
                filter: blur(2px);
                pointer-events: none;

                img {
                    width: 100%;
                    height: 300px;
                }

                .play-btn {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);

                    font-size: 4rem;
                    color: rgb(255, 0, 0);
                    cursor: pointer;
                    opacity: 0.8;
                    transition: opacity 0.2s ease-in-out;
                }

                .play-btn:hover {
                    opacity: 1;
                }

                &.active {
                    transform: translateX(0) scale(1.2);
                    z-index: 3;
                    opacity: 1;
                    filter: blur(0);
                    pointer-events: auto;
                    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
                }

                &.prev {
                    transform: translateX(-70%) scale(0.85);
                    z-index: 2;
                    opacity: 1;
                }

                &.next {
                    transform: translateX(70%) scale(0.85);
                    opacity: 1;
                    z-index: 2;
                }
            }
        }

        .arrows {
            margin-top: 1rem;
            z-index: 2;
            position: relative;

            .arrow-btn {
                background: transparent;
                border: 2px solid #555;
                color: #888;
                border-radius: 50%;
                width: 45px;
                height: 45px;
                margin: 0 5px;
                cursor: pointer;
                transition: 0.3s ease;
                font-size: 1.2rem;

                &:hover {
                    background-color: #fff;
                    color: #000;
                }
            }
        }
    } */
  .featured-video-section {
    background-color: #fff;

    h2 {
      font-size: 1.5rem;
      color: #000;
      margin-bottom: 1rem;
      padding-top: 3rem;
      font-style: italic;
    }

    .nav-buttons .nav-link {
      display: inline-block;
      margin-top: 1rem;
      padding: 0.5rem 1rem;
      background-color: #fff;
      color: #000;
      text-decoration: none;
      border-radius: 2rem;
      border: 1px solid #000;
      transition:
        background-color 0.3s ease,
        color 0.3s ease;
      width: 180px;
      cursor: pointer;

      &:hover,
      &.active {
        background-color: #000 !important;
        color: #fff !important;
      }
    }

    /* OWL CAROUSEL TRANSLATION */
    .training-video-carousel {
      position: relative;
      z-index: 10;
      margin-top: 1rem;

      .owl-stage-outer {
        padding: 30px 0;
        /* Adds top/bottom space so the scaled center item doesn't cut off */
      }

      .owl-stage {
        display: flex;
        align-items: center;
        /* Vertically centers all items */
      }

      /* Base state for all side items (replaces .prev and .next) */
      .owl-item {
        transition:
          transform 0.5s ease-in-out,
          opacity 0.5s ease-in-out,
          filter 0.5s ease;
        z-index: 1;
        opacity: 1;
        filter: blur(2px);
        /* Blurred sides */
        pointer-events: none;
        /* Prevents clicking side items */
        transform: scale(0.85);
        /* Scaled down sides */
        transform-origin: center center;

        /* Active center item (replaces .active) */
        &.center {
          transform: scale(1.2);
          /* Scaled up center */
          z-index: 99;
          filter: blur(0);
          pointer-events: auto;

          .video-card {
            /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8); */
          }
        }
      }

      .video-card {
        width: 100%;
        position: relative;

        img {
          width: 100%;
          height: 300px;
          object-fit: cover;
        }

        .play-btn {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 4rem;
          color: rgb(255, 0, 0);
          cursor: pointer;
          opacity: 0.8;
          transition: opacity 0.2s ease-in-out;

          &:hover {
            opacity: 1;
          }
        }
      }
    }
  }

  .reviews-section {
    position: relative;
    top: -230px;
    z-index: 1;
    background-color: #000;
    background-image: url("img/review-sec-bg.png");
    width: 100%;
    aspect-ratio: 2000 / 750;
    background-size: cover;
    background-position: center;

    .reviews-section {
      position: relative;
      top: 230px;
      z-index: 1;
      background-color: #000;
      background-image: url("img/review-sec-bg.png");
      width: 100%;
      aspect-ratio: 2000 / 750;
      background-size: cover;
      background-position: center;
    }

    .container.comment-container {
      position: relative;
      top: 300px;
    }

    .review-card {
      background-color: #212124;
      padding: 2rem;
      border-radius: 1.5rem;
      margin: 10px;
    }

    .review-card .profile-pic {
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
    }

    .reviews-carousel .owl-nav {
      position: absolute;
      top: 25%;
      width: 100%;
      transform: translateY(-50%);
      pointer-events: none;
      margin: 0 !important;
    }

    .reviews-carousel .owl-nav button {
      pointer-events: auto;
      color: #888 !important;
      font-size: 4rem !important;
      position: absolute;
      transition: color 0.3s;
    }

    .reviews-carousel .owl-nav button:hover {
      color: #fff !important;
      background: transparent !important;
    }

    .reviews-carousel .owl-nav button.owl-prev {
      left: -3.5rem;
    }

    .reviews-carousel .owl-nav button.owl-next {
      right: -0.4rem;
    }
  }

  .our-brand-section {
    background-color: #fff;

    h2 {
      font-size: 1.5rem;
      color: #000;
      padding-top: 3rem;
      font-style: italic;
      margin-bottom: 0;
    }
  }
}

.about-page {
  .hero-section {
    background-image: url("img/common-hero-bg.jpg");
    width: 100%;
    aspect-ratio: 2000 / 250;
    background-size: cover;
    background-position: center;

    h1 {
      font-size: 3rem;
      color: #fff;
      text-align: center;
      padding-top: 7.5rem;
      text-transform: uppercase;
      font-weight: 700;
      font-style: italic;
    }
  }

  .content-section {
    color: #d3d3d3;

    h3 {
      text-transform: uppercase;
      font-weight: 700;
    }
  }

  .our-brand-section {
    background-color: #fff;

    h2 {
      font-size: 2.5rem;
      color: #000;
      padding-top: 3rem;
      margin-bottom: 0;
      text-transform: uppercase;
      font-weight: 800;
    }
  }
}

.branches-page {
  .hero-section {
    background-image: url("img/common-hero-bg.jpg");
    width: 100%;
    aspect-ratio: 2000 / 250;
    background-size: cover;
    background-position: center;

    h1 {
      font-size: 3rem;
      color: #fff;
      text-align: center;
      padding-top: 7.5rem;
      text-transform: uppercase;
      font-weight: 700;
      font-style: italic;
    }
  }

  .branches-section {
    background-color: #000;
    padding: 1rem;
    color: #ffffffe6;

    h3 {
      text-transform: uppercase;
      font-weight: 700;
    }

    i {
      font-weight: 600;
      font-style: normal;
    }
  }

  .featured-blog-section {
    padding: 3rem;

    iframe {
      width: 100%;
      height: 400px;
    }

    h2 {
      text-transform: uppercase;
      font-weight: 700;
      font-size: 3rem;
      color: #ff0000;
    }

    .bi {
      font-size: 1.2 rem;
      color: #ff0000;
    }

    a {
      text-decoration: none;
    }
  }

  .our-brand-section {
    background-color: #fff;
    padding-bottom: 2rem;

    h2 {
      font-size: 2.5rem;
      color: #000;
      padding-top: 2rem;
      margin-bottom: 0;
      text-transform: uppercase;
      font-weight: 800;
    }
  }
}

.contact-us-page {
  .hero-section {
    background-image: url("img/common-hero-bg.jpg");
    width: 100%;
    aspect-ratio: 2000 / 250;
    background-size: cover;
    background-position: center;

    h1 {
      font-size: 3rem;
      color: #fff;
      text-align: center;
      padding-top: 7.5rem;
      text-transform: uppercase;
      font-weight: 700;
      font-style: italic;
    }
  }

  .our-brand-section {
    background-color: #fff;

    h2 {
      font-size: 1.5rem;
      color: #000;
      padding-top: 3rem;
      font-style: italic;
      margin-bottom: 0;
    }
  }

  .contact-section {
    form {
      max-width: 450px;

      p {
        margin-bottom: 0;
      }
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"] {
      width: 100%;
      padding: 10px 12px;
      margin-bottom: 15px;
      border: 1px solid #dcdcdc;
      border-radius: 1rem;
      box-sizing: border-box;
      font-size: 15px;
      color: #333333;
      outline: none;
    }

    textarea {
      width: 100%;
      height: 220px;
      padding: 10px 12px;
      margin-bottom: 15px;
      border: 1px solid #dcdcdc;
      border-radius: 1rem;
      box-sizing: border-box;
      font-size: 15px;
      color: #333333;
      resize: vertical;
      outline: none;
    }

    input::placeholder,
    textarea::placeholder {
      color: #7a899b;
      opacity: 1;
    }

    /* button[type="submit"] {
            background-color: #ff3333;
            color: #ffffff;
            border: none;
            padding: 10px 20px;
            font-family: 'Arial Narrow', sans-serif;
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
        }

        button[type="submit"]:hover {
            background-color: #e62e2e;
        } */

    .info-container {
      padding-left: 6rem;
    }

    .info-container h2 {
      font-family: "Oswald", sans-serif;
      font-weight: 400;
      font-size: 24px;
      color: #ff0000;
      margin-top: 0;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .contact-list {
      list-style-type: none;
      padding: 0;
      margin: 0;
    }

    .contact-list li {
      font-size: 16px;
      color: #ffffff;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
    }

    .contact-list li i {
      color: #fff;
      font-size: 18px;
      min-width: 22px;
      text-align: center;
    }

    .contact-list li span.text {
      margin-left: 5px;
    }

    .contact-list li span a {
      text-decoration: none;
      color: #fff;

      &:hover {
        color: #747474;
      }
    }

    .divider {
      border: 0;
      border-top: 1px solid #e0e0e0;
      margin: 25px 0;
    }

    .stores-list {
      list-style-type: none;
      padding: 0;
      margin: 0;
    }

    .stores-list li {
      font-size: 16px;
      color: #fff;
      font-weight: 600;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
    }

    .stores-list li i {
      color: #fff;
      font-size: 18px;
      margin-right: 8px;
    }
  }
}

.faq-page {
  .hero-section {
    background-image: url("img/common-hero-bg.jpg");
    width: 100%;
    aspect-ratio: 2000 / 250;
    background-size: cover;
    background-position: center;

    h1 {
      font-size: 3rem;
      color: #fff;
      text-align: center;
      padding-top: 7.5rem;
      text-transform: uppercase;
      font-weight: 700;
      font-style: italic;
    }
  }

  .contact-section {
    background-color: #000000;
    padding: 20px;

    .custom-card {
      background-color: #1a1a1a;
      border: 1px solid #333333;
      border-radius: 8px !important;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .custom-header {
      background-color: #141414;
      border-bottom: none;
      padding: 0;
    }

    .custom-btn {
      color: #ffffff;
      font-weight: bold;
      padding: 20px;
      width: 100%;
      text-decoration: none;
      background-color: transparent;
      border: none;
      border-left: 4px solid #333333;
      box-shadow: none !important;
      transition: all 0.3s ease-in-out;

      &:hover,
      &:not(.collapsed) {
        color: #ff3333;
        text-decoration: none;
        background-color: #141414;
        border-left: 4px solid #ff0000;
      }
    }

    .custom-body {
      background-color: #1a1a1a;
      color: #cccccc;
      border-top: 1px solid #ff0000;
      padding: 20px;

      p:last-child {
        margin-bottom: 0;
      }
    }
  }

  .our-brand-section {
    background-color: #fff;

    h2 {
      font-size: 1.5rem;
      color: #000;
      padding-top: 3rem;
      font-style: italic;
      margin-bottom: 0;
    }
  }
}

.blog-page {
  .hero-section {
    background-image: url("img/common-hero-bg.jpg");
    width: 100%;
    aspect-ratio: 2000 / 250;
    background-size: cover;
    background-position: center;

    h1 {
      font-size: 3rem;
      color: #fff;
      text-align: center;
      padding-top: 7.5rem;
      text-transform: uppercase;
      font-weight: 700;
      font-style: italic;
    }
  }

  .article-title {
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.2;
    color: #fff;
    margin-top: 15px;
    margin-bottom: 5px;
  }

  .article-date {
    color: #d32f2f;
    font-size: 0.85rem;
    margin-bottom: 15px;
  }

  .article-image {
    border-radius: 0;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
  }

  .article-divider {
    border-bottom: 1px solid #ffffff7c;
    width: 100%;
    margin-top: auto;
  }

  .our-brand-section {
    background-color: #fff;

    h2 {
      font-size: 1.5rem;
      color: #000;
      padding-top: 3rem;
      font-style: italic;
      margin-bottom: 0;
    }
  }
}

body.menu-open {
  overflow: hidden;
}

.inner-page {
  .hero-section {
    background-image: url("img/common-hero-bg.jpg");
    width: 100%;
    aspect-ratio: 2000 / 250;
    background-size: cover;
    background-position: center;

    h1 {
      font-size: 3rem;
      color: #fff;
      text-align: center;
      padding-top: 7.5rem;
      text-transform: uppercase;
      font-weight: 700;
      font-style: italic;
    }
  }
}

.single-product-page {
  background-color: white;

  .single-product-sec {
    padding: 2rem 0 4rem;
  }

  .breadcrumb-sec {
    margin-top: 2rem;
    .breadcrumb {
      font-size: 0.9rem;
      color: #6c757d;
      margin-bottom: 1rem;

      a {
        color: #6c757d;
        text-decoration: none;

        &:hover {
          color: #ff0000;
        }
      }

      .breadcrumb {
        margin-bottom: 0;
        background: transparent;
        padding: 0;
      }
    }
  }

  .product-gallery-col {
    .woocommerce-product-gallery {
      opacity: 1 !important;
    }

    .woocommerce-product-gallery__image img,
    .woocommerce-product-gallery__wrapper img {
      width: 100%;
      height: auto;
      display: block;
      border: 1px solid #e5e5e5;
    }

    .flex-control-nav {
      display: flex;
      gap: 0.75rem;
      margin: 0.75rem 0 0;
      padding: 0;
      list-style: none;

      li {
        flex: 1;

        img {
          width: 100%;
          height: auto;
          border: 1px solid #e5e5e5;
          cursor: pointer;
        }
      }
    }
  }

  .product-summary-col {
    .product_title {
      font-size: 1.75rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 1rem;
      color: #000;
    }

    .woocommerce-product-details__short-description {
      margin-top: 3rem;
      h2 {
        font-weight: 700;
        font-style: italic;
      }
    }

    .product_meta {
      font-size: 0.95rem;
      color: #333;
      margin-bottom: 0.5rem;

      a {
        color: #333;
        text-decoration: none;
      }

      .sku_wrapper {
        font-weight: 700;
      }
    }

    .price {
      margin-bottom: 1rem;

      .amount,
      bdi {
        font-size: 1.75rem;
        font-weight: 700;
        color: #000;
        font-style: italic;
      }
    }

    form.cart {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.75rem;
      margin-top: 1rem;

      .quantity {
        margin: 0;
        padding: 0.5rem;
      }

      .single_add_to_cart_button {
        background-color: #ff0000;
        border: none;
        color: #fff;

        font-style: italic;

        padding: 0.65rem 2.5rem;

        &:hover {
          background-color: #cc0000;
          border-color: #cc0000;
        }
      }
    }
  }

  .product-bs-tabs {
    .product-tab-nav {
      gap: 0.5rem;

      .nav-link {
        background: #fff;
        border: 1px solid #dee2e6;
        color: #6c757d;
        font-weight: 600;
        border-radius: 0.25rem;
        padding: 0.55rem 1.25rem;

        &:hover {
          color: #ff0000;
          border-color: #ff0000;
        }

        &.active {
          background-color: #ff0000;
          border-color: #ff0000;
          color: #fff;
        }
      }
    }

    .tab-content {
      color: #555;
      line-height: 1.7;
    }

    table.woocommerce-product-attributes {
      width: 100%;

      th,
      td {
        padding: 0.5rem 0;
        border-bottom: 1px solid #eee;
      }

      th {
        width: 35%;
        font-weight: 600;
        color: #000;
      }
    }
  }

  .related.products {
    h2 {
      font-size: 1.5rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
  }
}

.products-page {
  background-color: white;
  .sort-filter-sec {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    .filter-sec {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;

      p {
        margin-bottom: 0;
      }
    }

    padding-top: 2rem;

    .red-button {
      margin-top: 0;
      border-radius: 0;
    }

    .sort-filter {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;

      p {
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 0;
      }

      select {
        padding: 0.5rem 1rem;
        text-align: center;
      }
    }
  }
}

.product-filter-offcanvas {
  --bs-offcanvas-width: min(100vw, 360px);

  .offcanvas-header {
    border-bottom: 1px solid #e5e5e5;
    padding: 1.25rem 1.5rem;

    .offcanvas-title {
      margin: 0;
      font-size: 1.1rem;
      font-weight: 700;
      text-transform: uppercase;
      font-style: italic;
      color: #000;
    }
  }

  .offcanvas-body {
    padding: 0 1.5rem 2rem;
  }

  .widget,
  .product-filter-widget,
  .wp-block-woocommerce-product-filters,
  .wp-block-group {
    margin: 0;
    padding: 1.25rem 0;
    border-bottom: 1px solid #e5e5e5;

    &:last-child {
      border-bottom: none;
    }
  }

  .widget-title,
  .widgettitle,
  .wp-block-heading,
  h2,
  h3 {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.02em;
  }

  ul {
    list-style: none;
    margin: 0;
    padding: 0;

    li {
      margin: 0 0 0.65rem;

      &:last-child {
        margin-bottom: 0;
      }

      a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        color: #333;
        text-decoration: none;
        font-size: 0.95rem;
        line-height: 1.4;

        &:hover {
          color: #ff0000;
        }
      }

      &.chosen > a,
      &.woocommerce-widget-layered-nav-list__item--chosen > a {
        color: #ff0000;
        font-weight: 600;
      }

      .count {
        color: #8e8e8e;
        font-size: 0.85rem;
      }
    }
  }

  .woocommerce-widget-layered-nav-dropdown__submit,
  .button,
  button[type="submit"],
  .wc-block-components-filter-submit-button,
  .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.65rem 1rem;
    border: none;
    border-radius: 0;
    background-color: #ff0000;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-style: italic;
    text-decoration: none;
    transition: background-color 0.3s ease;

    &:hover {
      background-color: #cc0000;
      color: #fff;
    }
  }

  select,
  .woocommerce-widget-layered-nav-dropdown__select,
  .wc-block-product-categories__dropdown {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #d9d9d9;
    border-radius: 0;
    background-color: #fff;
    color: #000;
    font-size: 0.95rem;

    &:focus {
      outline: none;
      border-color: #ff0000;
      box-shadow: 0 0 0 1px #ff0000;
    }
  }

  .price_slider_wrapper {
    .price_slider.ui-slider,
    .ui-slider {
      position: relative;
      height: 4px;
      background: #e5e5e5;
      border: none;
      border-radius: 0;
      margin: 1.5rem 0.5rem 1.25rem;
    }

    .ui-slider-range {
      position: absolute;
      z-index: 1;
      display: block;
      top: 0;
      height: 100%;
      border: 0;
      background: #ff0000;
    }

    .ui-slider-handle {
      position: absolute !important;
      z-index: 2;
      width: 16px;
      height: 16px;
      top: -6px;
      margin-left: -8px;
      border: 2px solid #ff0000;
      background: #fff;
      border-radius: 50%;
      cursor: pointer;
      outline: none;
      box-shadow: none;
    }

    .price_slider_amount {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.75rem;

      input {
        width: calc(50% - 0.4rem);
        padding: 0.5rem 0.65rem;
        border: 1px solid #d9d9d9;
        border-radius: 0;
        font-size: 0.9rem;
      }

      .price_label {
        width: 100%;
        order: -1;
        margin-bottom: 0.25rem;
        font-size: 0.9rem;
        color: #555;
      }

      .button {
        width: 100%;
      }
    }
  }

  .wc-block-product-filter-price-slider,
  .wc-blocks-filter-wrapper {
    .wc-block-product-filter-price-slider__content,
    .wc-block-components-price-slider {
      margin-top: 0.75rem;
    }

    input[type="text"],
    input[type="number"] {
      max-width: 100%;
      padding: 0.45rem 0.6rem;
      border: 1px solid #d9d9d9;
      border-radius: 0;
    }
  }

  .wc-block-components-checkbox,
  .wc-block-product-categories-list-item,
  .wc-block-attribute-filter-list li {
    margin-bottom: 0.65rem;

    label,
    a {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      color: #333;
      font-size: 0.95rem;
      cursor: pointer;
    }

    input[type="checkbox"] {
      width: 1rem;
      height: 1rem;
      accent-color: #ff0000;
      cursor: pointer;
    }
  }

  .woocommerce-widget-layered-nav-dropdown,
  .widget_layered_nav_filters ul {
    li a::before {
      content: none;
    }
  }

  .widget_layered_nav_filters ul li a {
    color: #ff0000;
    font-weight: 600;
  }

  .product-cat-accordion {
    --bs-accordion-border-color: #e5e5e5;
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-btn-padding-y: 0.85rem;
    --bs-accordion-body-padding-x: 0;
    --bs-accordion-body-padding-y: 0.5rem;
    --bs-accordion-active-color: #ff0000;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-btn-focus-box-shadow: none;

    .accordion-item {
      background: transparent;
      border: none;
      border-bottom: 1px solid #e5e5e5;
      border-radius: 0;

      &:last-child {
        border-bottom: none;
      }
    }

    .accordion-button {
      background: transparent;
      color: #000;
      font-size: 0.95rem;
      font-weight: 700;
      text-transform: uppercase;
      box-shadow: none;

      &:not(.collapsed) {
        color: #ff0000;
        background: transparent;
        box-shadow: none;
      }

      &:focus {
        box-shadow: none;
        border-color: transparent;
      }

      &::after {
        background-size: 1rem;
        width: 1rem;
        height: 1rem;
      }
    }

    .accordion-body {
      padding: 0.25rem 0 0.85rem;
    }

    .product-cat-children {
      li {
        margin: 0 0 0.55rem;

        a {
          justify-content: flex-start;
          font-size: 0.92rem;
          font-weight: 400;
          text-transform: none;
          color: #444;
        }

        &.current-cat > a {
          color: #ff0000;
          font-weight: 600;
        }
      }
    }
  }
}

@keyframes fullscreen-menu-fade {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .fullscreen-menu {
    .fullscreen-menu-panel .fullscreen-menu-links {
      grid-template-columns: 1fr;
    }
  }
}

.product-card-itm {
  position: relative;
  border: 1px solid #e0e0e0;
  margin: 1rem 0;
  padding: 0.5rem;
  min-height: 600px;
  /* .woocommerce-LoopProduct-link {
        text-decoration: none;
        color: #000;
    } */

  a {
    text-decoration: none;
    color: #000;
  }

  .woocommerce-loop-product__title {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0;
    text-align: center;
  }

  .price {
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;

    bdi {
      font-family: roboto, sans-serif;
      font-weight: 700;
      font-size: 1.5rem;
      color: #000;
      font-style: italic;
      text-align: center;
    }
  }
  .product-price-installments-not-in-variation {
    text-align: center;
    a {
      color: #8e8e8e !important;
    }
  }

  .product-image-container {
    /* position: relative; */
    overflow: hidden;

    img {
      width: 100%;
      display: block;
    }
  }
  .product-image-hover {
    position: absolute;
    inset: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .product-link-hover {
    position: absolute;
    top: 90%;
    left: 50%;
    width: fit-content;
    transition: top 0.4s ease;
    height: fit-content;
    z-index: 10;
    color: white;
    opacity: 0;
    transform: translate(-50%, -50%);
    /* transition: opacity 0.3s ease; */
    pointer-events: none;
    text-decoration: none;
  }

  &:hover .product-image-hover {
    opacity: 1;
  }

  &:hover .product-link-hover {
    opacity: 1;
    top: 85%;
    transition: top 0.4s ease;
    pointer-events: auto;
    transform: translate(-50%, -50%);
  }
}
