/*
Theme Name: Remedy Spa
Theme URI: https://discoverremedy.com/
Description: Custom child theme for Remedy Spa & Wellness.
Author: Cherry Fresh Designs
Author URI: https://cherryfreshdesigns.com/
Template: hello-biz
Version: 1.0.0
Text Domain: remedy-spa
*/
/* Remedy Shop Category Navigation */

.remedy-shop-category-nav {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 54px;
  padding: 0 20px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 72px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.remedy-shop-category-nav__link {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 5px;
  padding: 0 0 16px;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.remedy-shop-category-nav__link sup {
  position: relative;
  top: -0.35em;
  color: #8a7a39;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
}

.remedy-shop-category-nav__link:hover,
.remedy-shop-category-nav__link.is-active {
  color: #111;
  opacity: 1;
}

.remedy-shop-category-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -19px;
  height: 2px;
  background: #8a7a39;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.remedy-shop-category-nav__link:hover::after,
.remedy-shop-category-nav__link.is-active::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .remedy-shop-category-nav {
    max-width: 100%;
    justify-content: flex-start;
    gap: 28px;
    overflow-x: auto;
    margin-bottom: 42px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
  }

  .remedy-shop-category-nav::-webkit-scrollbar {
    display: none;
  }

  .remedy-shop-category-nav__link {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}