.product-inside {
  .container-wide {
    .product-gallery-wrap {
      position: relative;
      margin-bottom: 3em;

      @media (max-width: 1024px) {
        margin-bottom: 2em;
      }

      @media (max-width: 768px) {
        margin-bottom: 1em;
      }

      .product-gallery-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        width: 46px;
        height: 46px;
        top: 50%;
        background-color: var(--color-neutral-800);
        border-radius: 50%;
        transition: opacity 0.3s ease;
        cursor: pointer;
        z-index: 2;

        @media (max-width: 1024px) {
          width: 30px;
          height: 30px;
        }

        &.product-gallery-prev {
          left: 0;
          transform: translate(-50%, -50%);
        }

        &.product-gallery-next {
          right: 0;
          transform: translate(50%, -50%);
        }

        &.swiper-button-lock {
          opacity: 0;
        }

        svg {
          @media (max-width: 1024px) {
            width: 14px;
            height: 14px;
          }
        }
      }
    }
  }

  .container {
    .product-body {
      margin-bottom: 70px;

      ul {
        list-style: none;

        li {
          position: relative;
          margin-bottom: 4px;

          &::before {
            content: '';
            position: absolute;
            top: 12px;
            left: -30px;
            width: 12px;
            height: 12px;
            background-color: var(--color-neutral-800);
          }
        }
      }
    }
  }

  .attached-files {
    padding: 60px 0;
    background-color: var(--color-neutral-25);

    .container {
      h4 {
        margin: 0 0 40px;
        text-transform: uppercase;
        font-feature-settings: 'case' on;
      }

      ul {
        margin: 0;
        padding: 0;
        list-style: none;

        li {
          a {
            display: flex;
            gap: 12px;
            padding: 14px 0;
            color: var(--color-neutral-800);
            border-bottom: 1px solid var(--color-neutral-300);
            transition: border-color 0.3s ease;

            svg {
              width: 26px;
            }

            span {
              flex: 1;
            }

            &:hover {
              border-bottom: 1px solid var(--color-neutral-800);
            }
          }
        }
      }
    }
  }

  .project-gallery-grid-section {
    .project-gallery-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;

      @media (max-width: 1024px) {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
      }

      @media (max-width: 768px) {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
      }

      @media (max-width: 480px) {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery-item {
        aspect-ratio: 1 / 1;
        background-color: var(--color-neutral-25);
        border: 1px solid var(--color-neutral-100);
        overflow: hidden;
        transition: border-color 0.3s ease;

        &:hover {
          border-color: var(--color-neutral-300);
        }

        a {
          display: block;
          width: 100%;
          height: 100%;
        }

        .image-box {
          width: 100%;
          height: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 8px;

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