.single-product-page {
  background: var(--white);
}

.single-product-page .site-header {
  background: var(--black);
}

.product-overview {
  padding: 110px 0 60px;
  background: var(--white);
}

.breadcrumbs {
  margin-bottom: 30px;
  color: rgba(10, 10, 10, 0.56);
  font-size: 12px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.breadcrumbs li:not(:last-child)::after {
  color: var(--gray);
  content: "/";
}

.breadcrumbs a {
  transition: color var(--transition);
}

.breadcrumbs a:hover {
  color: var(--black);
}

.product-overview__grid {
  display: grid;
  gap: 42px;
}

.product-gallery {
  min-width: 0;
}

.product-gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--off-white);
}

.product-gallery__main .swiper-wrapper,
.product-gallery__main .swiper-slide {
  height: 100%;
}

.product-gallery__primary {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  cursor: zoom-in;
}

.product-gallery__primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__button {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  place-items: center;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.82);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color var(--transition), color var(--transition), opacity var(--transition);
}

.product-gallery__button.is-prev {
  left: 15px;
}

.product-gallery__button.is-next {
  right: 15px;
}

.product-gallery__button.is-prev .theme-icon {
  transform: rotate(180deg);
}

.product-gallery__button:hover,
.product-gallery__button:focus-visible {
  background: var(--lime);
  color: var(--black);
}

.product-gallery__button.swiper-button-disabled {
  opacity: 0.28;
  pointer-events: none;
}

.product-gallery__thumbs {
  padding-top: 3px;
  margin-top: 7px;
}

.product-gallery__thumbs .swiper-slide {
  display: block;
  height: auto;
  padding: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 14px;
  background: var(--off-white);
  cursor: pointer;
  opacity: 0.72;
  transition: border-color var(--transition), opacity var(--transition), transform var(--transition);
}

.product-gallery__thumbs .swiper-slide:hover,
.product-gallery__thumbs .swiper-slide:focus-visible,
.product-gallery__thumbs .swiper-slide-thumb-active {
  border-color: var(--lime);
  opacity: 1;
  transform: translateY(-2px);
}

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

.product-summary {
  min-width: 0;
}

.product-summary h1 {
  max-width: 700px;
  margin: 15px 0 20px;
  font-size: clamp(30px, 8vw, 42px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.product-summary__brand {
  display: flex;
  min-height: 45px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.14);
}

.product-summary__brand img {
  width: 105px;
  height: auto;
  object-fit: contain;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.product-facts li {
  min-width: 0;
  padding: 14px 15px;
  border-radius: 14px;
  background: var(--off-white);
}

.product-facts span,
.product-facts strong {
  display: block;
}

.product-facts span {
  margin-bottom: 4px;
  color: rgba(10, 10, 10, 0.58);
  font-size: 12px;
}

.product-facts strong {
  font-size: 15px;
  font-weight: 600;
}

.product-price {
  margin: 26px 0;
  color: rgba(10, 10, 10, 0.64);
}

.product-price strong {
  color: var(--lime);
  font-size: 30px;
  font-weight: 600;
}

.product-booking {
  padding: 25px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}

.product-booking h2 {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}

.product-booking fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.product-booking legend {
  padding: 0;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.product-booking__dates {
  display: grid;
  gap: 10px;
}

.product-booking label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.product-booking input[type="datetime-local"] {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  outline: 0;
  background: var(--graphite);
  color: var(--white);
  color-scheme: dark;
  transition: border-color var(--transition);
}

.product-booking input[type="datetime-local"]:focus {
  border-color: var(--lime);
}

.product-booking__extras {
  padding-top: 20px !important;
  margin-top: 20px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.product-booking__extras label {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  border-radius: 12px;
  background: var(--graphite);
  color: var(--white);
  cursor: pointer;
}

.product-booking__extras input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--lime);
}

.product-booking__extras strong {
  margin-left: auto;
  color: var(--lime);
}

.product-booking__summary {
  display: grid;
  gap: 10px;
  padding: 20px 0;
  margin: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.product-booking__summary div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.product-booking__summary dt,
.product-booking__summary dd {
  margin: 0;
}

.product-booking__summary dt {
  color: rgba(255, 255, 255, 0.65);
}

.product-booking__summary dd {
  font-weight: 600;
}

.product-booking__summary div:last-child {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--lime);
  font-size: 18px;
}

.product-booking__actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 40px 42px 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: var(--graphite);
}

.quantity-control button,
.quantity-control input {
  width: 100%;
  min-width: 0;
  height: 45px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  text-align: center;
}

.quantity-control button {
  cursor: pointer;
  transition: color var(--transition);
}

.quantity-control button:hover {
  color: var(--lime);
}

.quantity-control input {
  appearance: textfield;
  font-weight: 600;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.product-booking__actions .button {
  width: 100%;
  padding-inline: 15px;
}

.product-booking .button:hover,
.product-booking .button:focus-visible {
  background: var(--white);
  color: var(--black);
}

.product-booking__status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--lime);
  font-size: 12px;
}

.product-details {
  padding: 60px 0;
  background: var(--off-white);
}

.product-details__heading {
  max-width: 820px;
}

.product-details__heading h2 {
  margin: 12px 0 18px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

.product-details__heading > p {
  margin: 0;
  color: rgba(10, 10, 10, 0.7);
  line-height: 1.7;
}

.product-details__grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.product-content,
.product-specification {
  padding: 25px;
  border-radius: var(--radius);
}

.product-content {
  background: var(--white);
}

.product-content h3,
.product-specification h3 {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 600;
}

.product-content h4 {
  margin: 28px 0 12px;
  font-size: 17px;
  font-weight: 600;
}

.product-content p {
  margin: 0 0 16px;
  color: rgba(10, 10, 10, 0.74);
  line-height: 1.7;
}

.product-content ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-content li {
  position: relative;
  padding-left: 24px;
  color: rgba(10, 10, 10, 0.78);
  line-height: 1.55;
}

.product-content li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.product-specification dl {
  margin: 0;
}

.product-specification div {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
}

.product-specification div:last-child {
  border: 0;
}

.product-specification dt,
.product-specification dd {
  margin: 0;
}

.product-specification dt {
  color: rgba(10, 10, 10, 0.55);
}

.product-specification dd {
  font-weight: 600;
}

.product-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-top: 30px;
  border-radius: var(--radius);
  background: var(--black);
}

.product-media iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.product-cta {
  padding: 60px 0;
  background: var(--charcoal);
  color: var(--white);
}

.product-cta .container {
  display: grid;
  gap: 25px;
}

.product-cta h2 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

.product-cta p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.product-cta .button {
  justify-self: start;
}

@media (min-width: 992px) {
  .product-overview {
    padding: 150px 0 90px;
  }

  .breadcrumbs {
    margin-bottom: 45px;
    font-size: 13px;
  }

  .product-overview__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    gap: clamp(45px, 5vw, 80px);
    align-items: start;
  }

  .product-gallery {
    position: sticky;
    top: 110px;
  }

  .product-gallery__main {
    aspect-ratio: 16 / 11;
  }

.product-gallery__button.is-prev {
    left: 20px;
  }

  .product-gallery__button.is-next {
    right: 20px;
  }

  .product-gallery__thumbs {
    margin-top: 9px;
  }

  .product-summary h1 {
    margin-top: 18px;
    font-size: clamp(38px, 3.1vw, 52px);
  }

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

  .product-facts li {
    padding: 14px 12px;
  }

  .product-booking {
    padding: 30px;
  }

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

  .product-details {
    padding: 90px 0;
  }

  .product-details__heading h2 {
    font-size: 42px;
  }

  .product-details__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
    gap: 20px;
    align-items: start;
    margin-top: 55px;
  }

  .product-content,
  .product-specification {
    padding: 40px;
  }

  .product-cta {
    padding: 75px 0;
  }

  .product-cta .container {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .product-cta h2 {
    font-size: 40px;
  }
}
