.update-section {
  .update-section__switcher {
    margin: auto;
    max-width: 1060px;
    border-radius: var(--sp-4);
    box-shadow: 0 0 12px 4px rgba(143, 143, 143, 0.1);
    background: rgb(var(--color-total-white));
    padding: var(--sp-7d5) var(--sp-11);
    display: flex;
    align-items: center;
    row-gap: var(--sp-4);
    flex-wrap: wrap;

    .update-section__title {
      font-size: var(--sp-4d5);
      margin-right: 30px;
    }

    .update-section__selects {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp-4d5);
    }
  }
  
  .custom-select-wrapper {
    position: relative;
  }
  
  .custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 300px;
  }
  
  .custom-select__trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-3) var(--sp-5d5);
    background: rgb(var(--color-blue));
    cursor: pointer;
    border-radius: var(--sp-2);
    transition: all 0.3s ease;
    user-select: none;
    min-width: 250px;
    color: rgb(var(--color-total-white));
    font-size: var(--sp-4);
  }
  
  .custom-select__value {
    flex: 1;
    text-align: left;
  }
  
  .custom-select__arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
  }
  
  .custom-select.open .custom-select__arrow {
    transform: rotate(180deg);
  }
  
  .custom-select__options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #F4F6F8;
    border-top: none;
    border-radius: 2px 2px 12px 12px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
  }
  
  .custom-select.open .custom-select__options {
    display: block;
  }

  .custom-select.open .custom-select__trigger {
    border-radius: var(--sp-2) var(--sp-2) 2px 2px;
  }
  
  .custom-select__option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .custom-select__option:hover {
    background-color: #f8f9fa;
  }
  
  .custom-select__option:last-child {
    border-radius: 0 0 4px 4px;
  }
  
  .update-section__content {
    max-width: 1060px;
    margin: auto;
    margin-top: 50px;
  }

  .product-content__title {
    font-size: var(--sp-4d5);
    padding-bottom: var(--sp-4d5);
    border-bottom: 1.50px solid #d0d5dd;
    margin-bottom: var(--sp-7d5);
  }

  .product-content__product-title {
    font-size: var(--sp-6d5);
    margin-bottom: var(--sp-3);
  }

  .product-content__description {
    font-size: var(--sp-4);
    margin-bottom: var(--sp-6d5);
  }

  .product-info {
    display: flex;
    gap: var(--sp-4);
    justify-content: space-between;
    margin-bottom: 36px;

    @media screen and (max-width: 768px) {
      flex-direction: column;
    }
  }
  
  .product-info p {
    margin: 0.5rem 0;
  }

  .product-info__content.labels {
    display: flex;
    flex-direction: column;
    width: 240px;

    @media screen and (max-width: 768px) {
      width: 100%;
    }

    p {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
  }

  .product-info__content {
    h1, h2, h3, h4, h5, h6 {
      font-size: var(--sp-4);
      margin-bottom: var(--sp-3d5);
    }

    ul {
      display: flex;
      flex-direction: column;
      margin-bottom: var(--sp-3);
      padding-left: var(--sp-4);

      li {
        list-style: disc;
      }
    }
  }

  .product-content__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4d5);

    .show-more {
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      gap: var(--sp-4);
      font-size: var(--sp-4);
      color: rgb(var(--color-blue));
    }

    .button {
      width: fit-content;
      border-radius: 100px;
      font-weight: 700;
    }
  }

  .show-less {
    display: block;
    font-weight: 600;
    width: 100%;
    text-align: left;
    gap: var(--sp-4);
    font-size: var(--sp-4);
    color: rgb(var(--color-blue));
    padding-bottom: var(--sp-4d5);
    margin-bottom: 30px;
    border-bottom: 1.50px solid #d0d5dd;
    display: none;
  }

  .product-content__long-content {
    display: none;
  }

  .update-section__content:has(.product-content__long-content.open) {
    .show-less {
      display: block;
    }

    .product-content__long-content.open {
      display: block;
    }

    .product-content,
    .product-content__buttons {
      display: none;
    }
  }

}

