#pc-browse {
  display: flex;
  gap: 2rem;
  min-width: 0;
}

/********************
* Nav
********************/

.pc-nav-container {
  position: absolute;
}

.pc-nav-resize {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1000;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  transform: translate(-100%);
  transition: transform .15s ease-in-out;
  background: #ffffff;
}

.pc-nav-resize--open {
  transform: translate(0);
  bottom: 0 !important;
}

.pc-nav-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
}

.pc-nav-header__name {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: #cf3f6c;
  text-transform: uppercase;
}

.pc-nav-divider {
  width: 100%;
  height: 1px;
  background: #d9d9d9;
}

.pc-nav-platform-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.pc-nav-platform-list-item {
  list-style-type: none;
}

.pc-nav-platform-list-item__button {
  display: flex;
  gap: .5rem;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  font-size: 0.875rem;
  letter-spacing: .02em;
  font-weight: 600;
  color: #58575d;
  text-align: left;
  cursor: pointer;
}

.pc-nav-platform-list-item__button[aria-expanded="true"] .pc-nav-platform-list-item__button__icon {
  transform: rotate(180deg);
}

.pc-nav-platform-list-item__button__label {
  flex: 1 0 0%;
}

.pc-nav-platform-list-item__button__icon {
  transition: color .15s ease-in-out, transform .15s ease-in-out;
  transform-origin: 50% 40%;
}

.pc-nav-platform-list-item .pc-nav-category-list {
  margin-left: 1rem;
}

.pc-nav-category-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 0;
  margin-top: 0px;
  margin-top: .5rem;
  padding: 0;
  list-style-type: none;
}

.pc-nav-category-list__show-more,
.pc-nav-category-list__show-less {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #757575;
  text-decoration: underline;
  text-align: left;
  transition: all 150ms ease-in-out;
}

.pc-nav-category-list__show-more:hover,
.pc-nav-category-list__show-less:hover {
  color: #333333;
}

.pc-nav-category-list-item {
  list-style-type: none;
}

.pc-nav-category-list-item--hidden {
  display: none;
}

.pc-nav-category-list-item__info {
  display: flex;
  gap: .25rem;
}

.pc-nav-category-list-item__expand {
  width: 1.5rem;
}

.pc-nav-category-list-item__expand button {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  color: #757575;
  cursor: pointer;
  transition: all .15s ease-in-out;
  width: 1.5rem;
  height: 1.5rem;
}

.pc-nav-category-list-item__expand button svg {
  transition: color .15s ease-in-out, transform .15s ease-in-out;
}

.pc-nav-category-list-item__expand button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.pc-nav-category-list-item__link {
  font-size: 1rem;
  font-weight: 400;
  color: #757575;
  text-decoration: none;
  transition: color .15s ease-in-out;
}

.pc-nav-category-list-item__link:hover,
.pc-nav-category-list-item__link--active {
  text-decoration: none;
  color: #ff9344 !important;
}

.pc-nav-sub-category-list {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-left: 1.75rem;
  padding-left: .5rem;
  border-left: 1px #58575d solid;
}

.pc-nav-sub-category-list-item {
  list-style-type: none;
}

.pc-nav-sub-category-list-item__link {
  font-size: 1rem;
  font-weight: 400;
  color: #757575;
  text-decoration: none;
  transition: color .15s ease-in-out;
}

.pc-nav-sub-category-list-item__link:hover,
.pc-nav-sub-category-list-item__link--active {
  text-decoration: none;
  color: #ff9344 !important;
}


@media screen and (min-width: 1000px) {
  .pc-nav-container {
    position: static;
    width: 320px;
    min-height: 640px;
  }

  .pc-nav-resize {
    position: sticky;
    top: 0;
    bottom: 0;
    z-index: 0;
    width: 320px;
    left: initial;
    right: initial;
    transform: none;
    background: transparent;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .pc-nav-container .pc-nav-toggle {
    display: none;
  }
}

/********************
* Products
********************/

.pc-product-container {
  flex: 1 0 0%;
  max-width: 100%;
  min-height: 100vh;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pc-product-container__content {}

@media screen and (min-width: 1000px) {
  .pc-product-container .pc-nav-toggle {
    display: none;
  }
}

/********************
* Products - Skeleton
********************/

.pc-product-container--skeleton {
  color: #eee;
}

.pc-skeleton-placeholder {
  background: linear-gradient(-90deg, #eeeeee 0%, #f7f7f7 50%, #eeeeee 100%) !important;
  background-size: 400% 400%;
  animation: pc-pulse 1.5s ease-in-out infinite;
}

@keyframes pc-pulse {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 150% 150%;
  }
}

.pc-product-section-title--primary.pc-skeleton-placeholder {
  height: 1.5rem;
  width: 240px;
  margin: 1rem 0;
}

.pc-product-section-title--primary.pc-skeleton-placeholder {
  width: 192px;
  height: 1.125rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.pc-product.pc-skeleton-placeholder {
  height: 320px;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05);
  border-radius: 0px 25px 25px 25px;
}


/********************
* Products - Home
********************/

.pc-primary-title {
  color: #2E2D35;
  font-size: 48px;
  font-weight: 700;
}

.pc-primary-description {
  margin-bottom: 2rem;
  color: #2E2D35;
  font-size: 1.125rem;
}

.pc-featured-products-title {
  margin-bottom: 1.25rem;
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize; 
}

.pc-featured-product-list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style-type: none;
}

.pc-featured-product {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  background: #ffffff;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05);
  border-radius: 0px 25px 25px 25px;
  transition: all 150ms ease-in-out;
  color: #2E2D35;
}

.pc-featured-product:hover {
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.1);
}

.pc-featured-product__link,
.pc-featured-product__link:hover {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: #2E2D35;
}

.pc-featured-product__name {
  margin: 0.5rem 0;
  padding: 0 1rem;
  font-size: 1.125rem;
  line-height: 1.25rem;
  letter-spacing: 0.08rem;
  font-weight: 500;
  color: inherit;
}

.pc-featured-product__product-type {
  flex: 1;
  margin: 0.5rem 0 0.25rem;
  padding: 0 1rem;
  letter-spacing: 0.0375rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #757575;
}

.pc-featured-product__thumbnail {
  display: block;
  width: 100%;
  padding: 1rem;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
  overflow: hidden;
  background-color: #ffffff;
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center center;
}

.pc-featured-product__call-to-action {
  padding: 0.25rem 1rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #FB637E;
}

@media screen and (min-width: 641px) {
  .pc-featured-product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media screen and (min-width: 769px) {
  .pc-featured-product-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/********************
* Products - Product Grid
********************/

.pc-product-breadcrumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
}

.pc-product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.pc-product-section-title {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #666;
  text-transform: uppercase;
}

.pc-product-section-title--primary {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.25;
}

.pc-product-section-title--secondary {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: .08rem;
  line-height: 1;
}

.pc-classifications {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pc-product-list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.pc-product {
  list-style-type: none;
  background: #ffffff;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05);
  border-radius: 0px 25px 25px 25px;
  transition: all 150ms ease-in-out;
}

.pc-product:hover {
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.1);
}

.pc-product__link,
.pc-product__link:hover {
  display: block;
  text-decoration: none;
}

.pc-product__name {
  padding: 1rem;
  letter-spacing: 0.08rem;
  color: #333333;
}

.pc-product__media {
  padding: 0.25rem;
  background: #ffffff;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05);
  border-radius: 0px 25px 25px 25px;
}

.pc-product__thumbnail-border {
  position: relative;
  width: 100%;
  padding: 1px;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
  background: linear-gradient(180deg, #ffb45e 0%, #e96f7b 96.52%);
}

.pc-product__thumbnail {
  width: 100%;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
  overflow: hidden;
  background-color: #ffffff;
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center center;
}

.pc-related-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.pc-related-list__title {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.pc-related-list-item {
  display: flex;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  list-style-type: none;
}

.pc-related-list-item__link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.6875rem 1rem;
  font-weight: 500;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
  background: #ffffff;
  box-shadow: 0px 0.25rem 0.75rem rgba(12, 5, 74, 0.1);
  text-decoration: none;
  text-transform: uppercase;
  color: #000000;
  transition: all 200ms ease-in-out;
}

.pc-related-list-item__link:hover {
  box-shadow: 0px 0.25rem 0.75rem rgba(12, 5, 74, 0.15);
  text-decoration: none;
  color: #ff9344;
}

.pc-related-list-item__link span:first-child {
  flex: 1 0 0%;
}

.pc-related-list-item__link span:last-child svg {
  display: block;
}


.pc-related-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.pc-related-grid-item {
  display: flex;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
  list-style-type: none;
}

.pc-related-grid-item__link {
  flex: 1 0 0%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
  box-shadow: 0px 0.25rem 2.5rem rgba(0, 0, 0, 0.05);
  text-decoration: none;
  text-transform: uppercase;
  color: #000000;
  transition: all 200ms ease-in-out;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 33.3%, #ffb45e 66.6%, #e96f7b 100%);
  background-size: 100% 300%;
  background-position: 0% 0%;
}

.pc-related-grid-item__link:hover {
  background-position: 0% 100%;
  box-shadow: 0px 0.25rem 2.5rem rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #ffffff;
}

@media screen and (min-width: 641px) {
  .pc-product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .pc-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pc-related-grid-item {
    min-height: 100px;
  }
}

@media screen and (min-width: 769px) {
  .pc-product-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pc-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (min-width: 1025px) {
  .pc-product-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pc-related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/********************
* Shared
********************/

.pc-nav-toggle {
  margin-bottom: 1rem;
}

.pc-nav-toggle__button {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 10px 16px;
  background: #d9d9d9;
  border: 0;
  border-radius: 0 !important;
  color: #2e2d35;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

.pc-nav-toggle__button:hover {
  background: #c9c9c9;
}
