.box-single {
    padding: 6.5rem 0;
}

#details {
    --bs-accordion-border-radius: 0;
    --bs-accordion-inner-border-radius: 0;
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-body-padding-x: 0;
}
#details .accordion-item {
    border-left: 0;
    border-right: 0;
}
#details .accordion-item ul {
    list-style: none;
    padding: 0;
}
#details .accordion-item ul > li {
    display: flex;
    gap: .75rem;
}
#details .accordion-item ul > li::before {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    margin-top: .25rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23bb881a' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-check mt-1 size-4 shrink-0 text-gold' aria-hidden='true'%3E%3Cpath d='M20 6 9 17l-5-5'%3E%3C/path%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
#details .accordion-item ul > li:not(:last-child) {
    margin-bottom: .75rem;
}

.inside-the-box {
    padding: 6.5rem 0;
    background-color: #eceae6;
    border-top: solid 1px #d3d1cd;
    border-bottom: solid 1px #d3d1cd;
}

.inside-the-box-slider {
    padding: 0 3rem;
}

.inside-the-box-slide {
    padding: .5rem;
}
.inside-the-box-slide .image {
    padding: 1.5rem;
    aspect-ratio: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e5e2de;
}
.inside-the-box-slide .image img {
    object-fit: contain;
    max-width: 75%;
    max-height: 75%;
}
.inside-the-box-slide .caption {
    margin-top: .75rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: .65rem;
    letter-spacing: 0.22em;
    color: var(--charcoal);
}

.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 2rem;
  height: 2rem;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background-color: #FFF;
  border-radius: 50%;
  box-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
}
.slick-prev {
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-arrow-left-short' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M12 8a.5.5 0 0 1-.5.5H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5a.5.5 0 0 1 .5.5'/%3E%3C/svg%3E");
}
.slick-next {
    right: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-arrow-right-short' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8'/%3E%3C/svg%3E");
}