.product-details-with-collapsible-content {
  padding-top: clamp(var(--padding-top-mobile), 4vw, var(--padding-top-desktop));
  padding-bottom: clamp(var(--padding-bottom-mobile), 4vw, var(--padding-bottom-desktop));

  .full-width-row {
    padding: 0;

    @media screen and (min-width: 1068px) {
      padding: 0 1.875rem;
    }
  }

  .full-width-row .columns {
    padding: 0;
  }

  .mobile-only {
    display: block;

    @media screen and (min-width: 1068px) {
      display: none;
    }
  }

  .desktop-only {
    display: none;
    @media screen and (min-width: 1068px) {
      display: block;
    }
  }

  .product-details-row {
    display: flex;
    gap: 1.25rem;
    flex-direction: column;

    @media screen and (min-width: 1068px) {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      grid-gap: 1.5rem;
    }
  }

  .product-details-infos {
    display: grid;
    margin: 0 1rem;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
    @media screen and (min-width: 1068px) {
      margin: 0;
    }
    @media screen and (max-width: 1599px) {
      .product-details-info:nth-child(1n+5) {
        display: none;
      }
      .product-details-info:nth-child(2n+2) {
        .product-details-info-field .product-details-info-label .product-details-info-tooltip {
          left: auto;
          right: 0px;
        }
      }
    }
    @media screen and (min-width: 1600px) {
      gap: 2rem;
      grid-template-columns: 1fr 1fr 1fr;
      .product-details-info:nth-child(1n+7) {
        display: none;
      }
      .product-details-info:nth-child(3n+3) {
        .product-details-info-field .product-details-info-label .product-details-info-tooltip {
          left: auto;
          right: 0px;
        }
      }
    }
    .product-details-info {
      display: flex;
      border-bottom: 1px solid #666;
      .product-details-info-icon {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 48px;
      }
      .product-details-info-field {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        .product-details-info-label {
          color: #a0a0a0;
          position: relative;
          a {
            color: #a0a0a0;
          }
          .product-details-info-tooltip {
            display: none;
            position: absolute;
            background: #F6F6F6;
            padding: 12px 16px;
            color: #000;
            line-height: 17px;
            font-size: 14px;
            max-width: 100vw;
            width: 241px;
            bottom: 28px;
            left: 0px;
          }
          a:hover + .product-details-info-tooltip,
          .product-details-info-tooltip.shown {
            display: block;
          }
        }
        .product-details-info-value {
          font-weight: bold;
          flex-grow: 1;
          align-content: center;
          .metafield-dimension {
            text-wrap: nowrap;
          }
        }
      }
    }
  }

  product-details-images {
    display: block;
    margin: 48px 20px 96px;
    @media screen and (min-width: 1068px) {
      margin: 48px 0 96px;
    }

    .swiper-slide {
      width: 75vw;
      @media screen and (min-width: 1068px) {
        width: 40vw;
      }
      @media screen and (min-width: 1600px) {
        width: 25vw;
      }
    }
    .product-details-image-group {
      display: flex;
      flex-direction: column;
      gap: 29.25px;
      .product-details-image {
        position: relative;
        aspect-ratio: 1 / 1;
        column-gap: 0.5rem;
        row-gap: 0.4375rem;
        overflow: hidden;
        background-color: #f5f5f5;

        @media screen and (min-width: 1068px) {
          aspect-ratio: 330 / 311;
        }

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }

        a {
          display: block;
          width: 100%;
          height: 100%;
        }
      }
      .product-details-image-label {
        .metafield-rich_text_field p:first-child {
          margin-bottom: 10px;
          b, strong {
            font-size: 20px;
            font-style: normal;
            font-weight: 800;
            line-height: 125%;
          }
        }
      }
    }
  }

  .images-collapsible-content__images:has(.images-collapsible-content__image:only-child) {
    grid-template-columns: 1fr;
  }

  .product-collapsible-content {
    display: flex;
    flex-direction: column;
    gap: 1.4375rem;
    padding: 0 1.25rem;
    width: 100%;

    &.mobile {
      display: block;
    }

    &.desktop .product-details-highlights {
      display: none;
    }

    @media screen and (min-width: 1068px) {
      &.mobile {
        display: none;
      }
      &.desktop .product-details-highlights {
        display: block;
      }
    }

    @media screen and (min-width: 1068px) {
      padding: 0;
      gap: 1.25rem;

      &.centered-content {
        justify-content: center;
      }
    }

    @media screen and (min-width: 1300px) {
      padding-bottom: clamp(1.5rem, 5vw, 4.4375rem);
    }
  }
  .product-collapsible-content__description {
    position: relative;

    p {
      font-size: clamp(1rem, 2vw, 1.125rem);
      line-height: 1.4;
    }

    p:last-child {
      margin-bottom: 0;
    }
  }

  .product-collapsible-content__description.has-read-more {
    max-height: var(--max-height);
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .product-collapsible-content__description.is-expanded {
    max-height: none;
  }

  /* Product Highlights */

  .product-highlights__content {
    font-size: 1rem;
    line-height: 1.4;
    background-color: var(--color-gray);
    padding: 1.25rem 1.5rem;
  }

  .product-highlights__content ul,
  .product-highlights__content ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5625rem;
  }

  .product-highlights__content li:not(:empty) {
    display: flex;
    align-items: baseline;
    gap: 0.875rem;
  }

  .product-highlights__content li:not(:empty)::before {
    content: "";
    display: block;
    width: 0.875rem;
    min-width: 0.875rem;
    height: 0.625rem;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="12" viewBox="0 0 16 12" fill="none"><path d="M15 1L4.55904 11L1 7.59127" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
  }

  .product-highlights__content p:not(:last-child) {
    margin: 0 0 0.75rem 0;
  }

  .product-collapsible-content__read-more {
    margin-top: 0.625rem;
    background: none;
    border: none;
    color: var(--color-black);
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.34;
    color: var(--color-gray-body);

    &:hover {
      opacity: 0.7;
    }
  }

  .product-collapsible-content__collapsible-wrapper {
    display: flex;
    flex-direction: column;
  }

  .product-collapsible-content__collapsible-item {
    border-bottom: 1px solid var(--color-black);

    summary {
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      list-style: none;
      user-select: none;
      padding: clamp(1.0625rem, 2vw, 1.5rem) 0;

      @media screen and (min-width: 1068px) {
        font-size: 1.125rem;
      }
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary span {
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
      flex-shrink: 0;

      svg {
        width: 0.75rem;
        height: auto;
        color: #0a090b;
      }
    }

    details[open] summary span {
      transform: rotate(180deg);
    }
  }

  .product-collapsible-content__collapsible-content {
    padding-bottom: clamp(1.0625rem, 2vw, 1.5rem);

    p:last-child {
      margin-bottom: 0;
    }
  }

  .breadcrumbs{
    padding: 0;
    font-size: 0.875;
    gap: 5px;
    text-transform: none;
    color: var(--color-black);


    @media screen and (min-width: 1068px) {
      margin-top: 4px;
    }

    .gray{
      color: var(--button-slate-grey-click);
    }

    a{
      text-decoration: none;
    }

    i{
      font-style: normal;
    }

  }
}
