/* =========================================================================
   Museum of Arcadia — Single Product Page
   Figma: Product Detail Desktop
   ========================================================================= */


/* =========================================================================
   PAGE LAYOUT
   Desktop: 592.5px image + 463px information
   ========================================================================= */

.single-product-page .product {
  display: grid;
  grid-template-columns: minmax(0, 592.5px) minmax(0, 463px);
  justify-content: center;
  align-items: start;

  width: 100%;
  max-width: none;

  gap: 137px;

  margin: 0 auto;
  padding: 57px 115px;
}


/* =========================================================================
   PRODUCT CAROUSEL
   ========================================================================= */

.product-carousel {
  position: relative;

  display: block;

  width: 100%;
  max-width: 592.5px;

  aspect-ratio: 1 / 1;

  margin: 0;
  padding: 0;

  background-color: #f3f3f1;

  overflow: hidden;
}

.product-carousel__images {
  position: relative;

  width: 100%;
  height: 100%;

  margin: 0;
  padding: 0;

  overflow: hidden;
}

.product-carousel__image {
  position: absolute;
  inset: 0;

  display: block;

  width: 100%;
  height: 100%;

  margin: 0;
  padding: 0;

  object-fit: cover;
  object-position: center;

  opacity: 0;

  transition: opacity var(--t-base) var(--ease-standard);
}

.product-carousel__image--active {
  opacity: 1;
}


/* Carousel arrow */

.product-carousel__chevron {
  position: absolute;
  right: 19px;
  bottom: 28px;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 86px;
  height: 86px;

  margin: 0;
  padding: 0;

  color: var(--moa-black);
  background-color: var(--moa-white);

  border: 0;
  border-radius: 50%;
  box-shadow: none;

  cursor: pointer;

  transition: transform var(--t-fast) var(--ease-standard);
}

.product-carousel__chevron:hover {
  transform: scale(1.03);
}

.product-carousel__chevron:focus,
.product-carousel__chevron:active {
  outline: none;
  box-shadow: none;
}

.product-carousel__chevron svg {
  display: block;

  width: 28px;
  height: 28px;

  margin: 0;
  padding: 0;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}


/* Carousel indicators */

.product-carousel__indicators {
  position: absolute;
  left: 19px;
  bottom: 19px;
  z-index: 3;

  display: flex;
  align-items: center;

  gap: 6px;

  margin: 0;
  padding: 0;
}

.product-carousel__bar {
  display: block;

  width: 60px;
  height: 3px;

  margin: 0;
  padding: 0;

  background-color: rgba(0, 0, 0, 0.25);

  transition: background-color var(--t-fast) var(--ease-standard);
}

.product-carousel__bar--active {
  background-color: var(--moa-black);
}


/* =========================================================================
   PRODUCT INFORMATION COLUMN
   ========================================================================= */

.product-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 100%;
  max-width: 463px;
  min-width: 0;

  gap: 30px;

  margin: 0;
  padding: 0;
}

.product-info__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 100%;
  min-width: 0;

  gap: 12px;

  margin: 0;
  padding: 0;
}


/* Product title */

.product-info__title {
  width: 100%;

  margin: 0;
  padding: 0;

  color: var(--moa-black);

  font-family: var(--font-sans);
  font-size: 24.3px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0.0475px;

  text-align: left;
  text-transform: uppercase;
}


/* Body wrapper */

.product-info__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 100%;
  min-width: 0;

  gap: 25px;

  margin: 0;
  padding: 0;
}

.product-info__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 100%;
  min-width: 0;

  gap: 26px;

  margin: 0;
  padding: 0;
}


/* =========================================================================
   PRODUCT DESCRIPTION
   ========================================================================= */

.product-info__description {
  display: block;

  width: 100%;
  min-width: 0;

  margin: 0;
  padding: 0;

  color: var(--moa-black);

  font-family: var(--font-serif);
  font-size: 14.7px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px;
  letter-spacing: 0.0029em;

  text-align: left;
  text-transform: none;
}

.product-info__description p {
  display: block;

  width: 100%;

  margin: 0;
  padding: 0;

  color: inherit;

  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: inherit;
}

.product-info__description p:empty {
  display: none;
}


/*
 * Description, material information and dimension blocks.
 * The vertical gap only appears between sections.
 */

.product-info__text-block,
.product-info__description .product-dimensions {
  display: block;

  width: 100%;

  margin: 0;
  padding: 0;

  color: inherit;

  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.product-info__text-block + .product-info__text-block,
.product-info__text-block + .product-dimensions,
.product-info__description > p + .product-info__text-block,
.product-info__description > p + .product-dimensions,
.product-info__description > .product-dimensions + p {
  margin-top: 22px;
}

.product-info__text-block--spec,
.product-info__description .product-dimensions {
  letter-spacing: 0.0021em;
}

.product-info__description em,
.product-info__description i {
  font-style: italic;
}


/* Prevent unnecessary browser paragraph gaps */

.product-info__description br + br {
  display: none;
}


/* =========================================================================
   PRODUCT SERVICE INFORMATION
   Complimentary Shipping / Certificate of Authenticity
   ========================================================================= */

body.single-product
.single-product-page
.product-info__service-icons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;

  width: fit-content;
  max-width: 100%;

  gap: 11px;

  margin: 0;
  padding: 0;
}


/* Individual service row */

body.single-product
.single-product-page
.product-info__service {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;

  width: fit-content;
  max-width: 100%;
  min-height: 15px;

  gap: 10px;

  margin: 0;
  padding: 0;

  color: #000000;

  font-family: "Sweet Sans Pro", Arial, Helvetica, sans-serif;
  font-size: 12.6px;
  font-style: normal;
  font-weight: 500;
  line-height: 13px;
  letter-spacing: 0.0039em;

  text-align: left;
  text-transform: uppercase;
}


/* Service label */

body.single-product
.single-product-page
.product-info__service span {
  display: block;

  width: auto;
  max-width: 100%;

  margin: 0;
  padding: 0;

  color: #000000;

  font-family: "Sweet Sans Pro", Arial, Helvetica, sans-serif;
  font-size: 12.6px;
  font-style: normal;
  font-weight: 500;
  line-height: 13px;
  letter-spacing: 0.0039em;

  text-align: left;
  text-transform: uppercase;

  white-space: nowrap;
}


/* Default service icon */

body.single-product
.single-product-page
.product-info__service-icon {
  display: block;
  flex: 0 0 15px;

  width: 15px;
  min-width: 15px;
  max-width: 15px;

  height: 15px;
  min-height: 15px;
  max-height: 15px;

  margin: 0;
  padding: 0;

  object-fit: contain;
  object-position: center;

  border: 0;
  box-shadow: none;
}


/* Certificate icon */

body.single-product
.single-product-page
.product-info__service:nth-child(2)
.product-info__service-icon {
  flex-basis: 14px;

  width: 14px;
  min-width: 14px;
  max-width: 14px;

  height: 14px;
  min-height: 14px;
  max-height: 14px;
}


/* =========================================================================
   PRODUCT PRICE
   ========================================================================= */

body.single-product
.single-product-page
.product-info__price {
  display: block;

  width: 100%;

  margin: 0;
  padding: 0;

  color: #000000;

  font-family: "Sweet Sans Pro", Arial, Helvetica, sans-serif;
  font-size: 19.6px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0;

  text-align: left;
  text-transform: none;
}


/* =========================================================================
   ADD TO BAG FORM AND BUTTON
   ========================================================================= */

body.single-product
.single-product-page
.product-info form.cart {
  display: block;

  width: 100%;
  max-width: 377.888px;

  margin: 0;
  padding: 0;
}

body.single-product
.single-product-page
.product-info__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 377.888px;

  height: 35.618px;
  min-height: 35.618px;

  margin: 0;
  padding: 8px 24px;

  color: #ffffff;
  background-color: #000000;

  border: 1px solid #000000;
  border-radius: 0;
  box-shadow: none;

  font-family: "Sweet Sans Pro", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 13px;
  letter-spacing: 0.2031px;

  text-align: center;
  text-transform: uppercase;

  cursor: pointer;
}

body.single-product
.single-product-page
.product-info__cta.btn--primary:hover,
body.single-product
.single-product-page
.product-info__cta.btn--primary:focus,
body.single-product
.single-product-page
.product-info__cta.btn--primary:active {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;

  box-shadow: none;
  outline: none;
  transform: none;
}


/* =========================================================================
   DISCOVER MORE CREATIONS
   ========================================================================= */

.discover-more {
  width: 100%;
  max-width: none;

  margin: 0 auto;
  padding: 32px 115px;

  border-top: 0;
}

.discover-more__title {
  width: 100%;

  margin: 0 0 29px;
  padding: 0;

  color: var(--moa-black);

  font-family: var(--font-sans);
  font-size: 26.3px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.1541px;

  text-align: center;
  text-transform: uppercase;
}

.discover-more__carousel {
  display: flex;
  align-items: stretch;

  width: 100%;

  gap: 0;

  margin: 0;
  padding: 0;
}

.discover-more__viewport {
  flex: 1;
  min-width: 0;

  margin: 0;
  padding: 0;

  overflow: hidden;
}

.discover-more__track {
  display: flex;
  align-items: stretch;

  gap: 6px;

  margin: 0;
  padding: 0;

  transition: transform var(--t-base) var(--ease-standard);

  will-change: transform;
}


/* Related artwork tile */

.discover-more__track .tile {
  flex: 0 0 262.031px;

  margin: 0;
  padding: 15px 17px 15px 15px;

  border: 1.5px solid transparent;

  transition: border-color var(--t-fast) var(--ease-standard);
}

.discover-more__track .tile:hover,
.discover-more__track .tile:focus-within {
  border-color: var(--moa-border-header);
}

.discover-more__track .tile__media {
  width: 100%;
  max-width: 229.5px;

  aspect-ratio: 1 / 1;

  margin: 0 auto;
}

.discover-more__track .tile__link {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;

  gap: 10px;

  margin-top: 20px;
}

.discover-more__track .tile__title,
.discover-more__track .tile__price {
  margin: 0;
  padding: 0;

  font-size: 17.7px;
  font-weight: 700;
  line-height: 18px;

  text-align: center;
}

.discover-more__track .tile form.cart {
  width: 100%;

  margin-top: 17px;
}

.discover-more__track .tile__cta {
  width: 100%;

  height: 37.275px;
  min-height: 37.275px;

  padding: 10px;

  font-size: 12.6px;
  line-height: 13px;
}

.discover-more__track .tile__chevron {
  width: 33.4px;
  height: 33.4px;

  bottom: 24px;
}

.discover-more__track .tile__chevron svg {
  width: 14px;
  height: 14px;
}


/* Related carousel navigation */

.discover-more__nav {
  display: flex;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  align-self: center;

  margin: 0;
  padding: 110px 0;

  color: var(--moa-black);
  background: none;

  border: 0;

  opacity: 0.35;

  cursor: pointer;

  transition: opacity var(--t-fast) var(--ease-standard);
}

.discover-more__nav:hover:not(:disabled),
.discover-more__nav:focus-visible:not(:disabled) {
  opacity: 1;
}

.discover-more__nav:disabled {
  opacity: 0;
  pointer-events: none;
}

.discover-more__nav--prev {
  margin-right: 8px;
  transform: scaleX(-1);
}

.discover-more__nav--next {
  margin-left: 8px;
}


/* =========================================================================
   SOLD PRODUCT OVERLAY
   ========================================================================= */

.product-carousel__sold-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: rgba(0, 0, 0, 0.6);

  pointer-events: none;
}

.product-carousel__sold-overlay span {
  margin: 0;
  padding: 0;

  color: var(--moa-white);

  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--ls-caps);

  text-align: center;
  text-transform: uppercase;
}


/* =========================================================================
   LAPTOP / SMALL DESKTOP
   ========================================================================= */

@media (max-width: 1280px) {
  .single-product-page .product {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: 48px;

    padding: 48px var(--container-pad-d);
  }

  .product-info {
    max-width: 100%;
  }

  body.single-product
  .single-product-page
  .product-info form.cart,
  body.single-product
  .single-product-page
  .product-info__cta {
    width: 100%;
    max-width: 100%;
  }
}


/* =========================================================================
   TABLET
   ========================================================================= */

@media (max-width: 968px) {
  .single-product-page .product {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;

    gap: 40px;

    padding: var(--s-5) var(--container-pad-m) var(--s-7);
  }

  .product-carousel,
  .product-info {
    width: 100%;
    max-width: 592.5px;

    margin-inline: auto;
  }

  .product-info__description {
    font-size: 14px;
    line-height: 20px;
  }

  .discover-more {
    padding: var(--s-7) var(--container-pad-m);
  }

  .discover-more__track .tile {
    flex-basis: 220px;
  }

  .discover-more__nav {
    padding: var(--s-6) 0;
  }
}


/* =========================================================================
   MOBILE
   ========================================================================= */

@media (max-width: 768px) {
  .single-product-page .product {
    display: flex;
    flex-direction: column;

    width: 100%;

    gap: 28px;

    margin: 0;
    padding: 24px 16px 40px;
  }

  .product-carousel {
    width: 100%;
    max-width: none;

    margin: 0;
  }

  .product-carousel__chevron {
    right: 14px;
    bottom: 20px;

    width: 58px;
    height: 58px;
  }

  .product-carousel__chevron svg {
    width: 21px;
    height: 21px;
  }

  .product-carousel__indicators {
    left: 14px;
    bottom: 14px;

    gap: 4px;
  }

  .product-carousel__bar {
    width: 40px;
    height: 2px;
  }

  .product-info {
    width: 100%;
    max-width: none;

    gap: 24px;

    margin: 0;
  }

  .product-info__head {
    gap: 10px;
  }

  .product-info__title {
    font-size: 20px;
    line-height: 23px;
  }

  .product-info__body {
    gap: 22px;
  }

  .product-info__copy {
    gap: 22px;
  }

  .product-info__description {
    font-size: 14px;
    line-height: 20px;
  }

  .product-info__text-block + .product-info__text-block,
  .product-info__text-block + .product-dimensions,
  .product-info__description > p + .product-info__text-block,
  .product-info__description > p + .product-dimensions,
  .product-info__description > .product-dimensions + p {
    margin-top: 18px;
  }

  body.single-product
  .single-product-page
  .product-info__service-icons {
    width: 100%;

    gap: 10px;
  }

  body.single-product
  .single-product-page
  .product-info__service {
    display: flex;

    width: 100%;

    gap: 8px;

    font-size: 11.5px;
    line-height: 13px;
  }

  body.single-product
  .single-product-page
  .product-info__service span {
    font-size: 11.5px;
    line-height: 13px;

    white-space: normal;
  }

  body.single-product
  .single-product-page
  .product-info__service-icon {
    flex-basis: 14px;

    width: 14px;
    min-width: 14px;
    max-width: 14px;

    height: 14px;
    min-height: 14px;
    max-height: 14px;
  }

  body.single-product
  .single-product-page
  .product-info__price {
    font-size: 16px;
    line-height: 20px;
  }

  body.single-product
  .single-product-page
  .product-info form.cart {
    width: 100%;
    max-width: 100%;
  }

  body.single-product
  .single-product-page
  .product-info__cta {
    width: 100%;
    max-width: 100%;

    height: 40px;
    min-height: 40px;
  }

  .discover-more {
    padding: 32px 16px;
  }

  .discover-more__title {
    margin-bottom: 24px;

    font-size: 20px;
    line-height: 24px;
  }

  .discover-more__track .tile {
    flex-basis: calc(50vw - 28px);

    padding: 8px;
  }

  .discover-more__track .tile__link {
    gap: 6px;

    margin-top: 12px;
  }

  .discover-more__track .tile__title,
  .discover-more__track .tile__price {
    font-size: 12px;
    line-height: 15px;
  }

  .discover-more__track .tile form.cart {
    margin-top: 10px;

    opacity: 1;
    pointer-events: auto;
  }

  .discover-more__track .tile__cta {
    height: 34px;
    min-height: 34px;

    font-size: 10px;
  }

  .discover-more__nav {
    flex-basis: 24px;

    padding: 30px 0;
  }

  .discover-more__nav--prev {
    margin-right: 2px;
  }

  .discover-more__nav--next {
    margin-left: 2px;
  }
}


/* =========================================================================
   SMALL MOBILE
   ========================================================================= */

@media (max-width: 480px) {
  .single-product-page .product {
    padding-inline: 14px;
  }

  .product-carousel__chevron {
    width: 50px;
    height: 50px;
  }

  .product-carousel__chevron svg {
    width: 18px;
    height: 18px;
  }

  .product-info__title {
    font-size: 18px;
    line-height: 22px;
  }

  body.single-product
  .single-product-page
  .product-info__service {
    align-items: flex-start;
  }

  body.single-product
  .single-product-page
  .product-info__service span {
    flex: 1;
    min-width: 0;
  }

  .discover-more__track .tile {
    flex-basis: calc(72vw - 30px);
  }
}





/* ==========================================================================
   PRODUCT DESCRIPTION — fragmented paragraph fix
   ========================================================================== */

body.single-product
.product-info__description {
  width: 100%;
  margin: 0;
  padding: 0;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

/*
 * moa_product_description_html() থেকে একটি paragraph-এর sentence
 * একাধিক <p> হিসেবে আসলেও সেগুলো একই continuous paragraph হিসেবে দেখাবে।
 */
body.single-product
.product-info__description
.product-info__text-block > p {
  display: inline;
  margin: 0;
  padding: 0;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

body.single-product
.product-info__description
.product-info__text-block > p:not(:last-child)::after {
  content: " ";
}

body.single-product
.product-info__description
.product-info__text-block > p:empty,
body.single-product
.product-info__description
.product-info__text-block > p:has(> br:only-child) {
  display: none;
}

body.single-product
.product-info__description
.product-info__text-block br {
  display: none;
}

/* Separate description sections */
body.single-product
.product-info__text-block + .product-info__text-block,
body.single-product
.product-info__text-block + .product-dimensions,
body.single-product
.product-info__description > p + .product-info__text-block,
body.single-product
.product-info__description > p + .product-dimensions {
  margin-top: 22px;
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media screen and (max-width: 968px) {

  body.single-product
  .single-product-page .product {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    width: 100%;
    max-width: none;

    gap: 36px;

    margin: 0;
    padding: 32px 24px 48px;
  }

  body.single-product
  .product-carousel,
  body.single-product
  .product-info {
    width: 100%;
    max-width: 592.5px;
    margin-inline: auto;
  }

  body.single-product
  .product-info form.cart,
  body.single-product
  .product-info__cta {
    width: 100%;
    max-width: 100%;
  }
}


/* ==========================================================================
   MOBILE — FIGMA PRODUCT DETAIL MOBILE
   ========================================================================== */

@media screen and (max-width: 768px) {

  body.single-product
  .single-product-page {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  /*
   * Figma mobile-এ image এবং information section full width.
   * Outer padding থাকবে না।
   */
  body.single-product
  .single-product-page .product {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    width: 100%;
    max-width: none;

    gap: 0;

    margin: 0;
    padding: 0;
  }


  /* ------------------------------------------------------------------------
     Mobile product image
     ------------------------------------------------------------------------ */

  body.single-product
  .product-carousel {
    width: 100%;
    max-width: none;

    aspect-ratio: 1 / 1;

    margin: 0;
    padding: 0;

    background-color: #f3f3f1;
  }

  body.single-product
  .product-carousel__image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
  }

  body.single-product
  .product-carousel__chevron {
    right: 10px;
    bottom: 11px;

    width: 35px;
    height: 35px;

    margin: 0;
    padding: 0;
  }

  body.single-product
  .product-carousel__chevron svg {
    width: 13px;
    height: 13px;
  }

  body.single-product
  .product-carousel__indicators {
    left: 12px;
    bottom: 8px;

    gap: 4px;
  }

  body.single-product
  .product-carousel__bar {
    width: 42px;
    height: 2px;
  }


  /* ------------------------------------------------------------------------
     Mobile information section
     ------------------------------------------------------------------------ */

  body.single-product
  .product-info {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    width: 100%;
    max-width: none;

    gap: 24px;

    margin: 0;
    padding: 14px 14px 28px;

    box-sizing: border-box;
  }

  body.single-product
  .product-info__head {
    display: flex;
    flex-direction: column;

    width: 100%;

    gap: 7px;

    margin: 0;
    padding: 0;
  }


  /* Product title */

  body.single-product
  .product-info__title {
    width: 100%;

    margin: 0;
    padding: 0;

    color: #000000;

    font-family: "Sweet Sans Pro", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.02em;

    text-align: left;
    text-transform: uppercase;
  }


  /* Body and copy */

  body.single-product
  .product-info__body {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    width: 100%;

    gap: 18px;

    margin: 0;
    padding: 0;
  }

  body.single-product
  .product-info__copy {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    width: 100%;

    gap: 19px;

    margin: 0;
    padding: 0;
  }


  /* Product description */

  body.single-product
  .product-info__description {
    width: 100%;

    margin: 0;
    padding: 0;

    color: #000000;

    font-family: "EB Garamond", Georgia, serif;
    font-size: 11.48px;
    font-style: normal;
    font-weight: 400;
    line-height: 15.8px;
    letter-spacing: 0.002em;

    text-align: left;

    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }

  body.single-product
  .product-info__description p,
  body.single-product
  .product-info__description div {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
  }

  body.single-product
  .product-info__text-block,
  body.single-product
  .product-info__description .product-dimensions {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  body.single-product
  .product-info__text-block + .product-info__text-block,
  body.single-product
  .product-info__text-block + .product-dimensions,
  body.single-product
  .product-info__description > p + .product-info__text-block,
  body.single-product
  .product-info__description > p + .product-dimensions {
    margin-top: 16px;
  }


  /* ------------------------------------------------------------------------
     Service information
     ------------------------------------------------------------------------ */

  body.single-product
  .product-info__service-icons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;
    max-width: none;

    gap: 8px;

    margin: 0;
    padding: 0;
  }

  body.single-product
  .product-info__service {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: fit-content;
    max-width: 100%;
    min-height: 13px;

    gap: 7px;

    margin: 0;
    padding: 0;

    color: #000000;

    font-family: "Sweet Sans Pro", Arial, Helvetica, sans-serif;
    font-size: 9.5px;
    font-style: normal;
    font-weight: 500;
    line-height: 11px;
    letter-spacing: 0.004em;

    text-align: left;
    text-transform: uppercase;
  }

  body.single-product
  .product-info__service span {
    display: block;

    margin: 0;
    padding: 0;

    color: inherit;

    font: inherit;
    line-height: inherit;
    letter-spacing: inherit;

    white-space: nowrap;
  }

  body.single-product
  .product-info__service-icon {
    display: block;
    flex: 0 0 12px;

    width: 12px;
    min-width: 12px;
    max-width: 12px;

    height: 12px;
    min-height: 12px;
    max-height: 12px;

    margin: 0;
    padding: 0;

    object-fit: contain;
    object-position: center;
  }

  body.single-product
  .product-info__service:nth-child(2)
  .product-info__service-icon {
    flex-basis: 11px;

    width: 11px;
    min-width: 11px;
    max-width: 11px;

    height: 11px;
    min-height: 11px;
    max-height: 11px;
  }


  /* ------------------------------------------------------------------------
     Price
     ------------------------------------------------------------------------ */

  body.single-product
  .product-info__price {
    width: 100%;

    margin: 0;
    padding: 0;

    color: #000000;

    font-family: "Sweet Sans Pro", Arial, Helvetica, sans-serif;
    font-size: 13.5px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0;

    text-align: left;
  }


  /* ------------------------------------------------------------------------
     Add to bag
     ------------------------------------------------------------------------ */

  body.single-product
  .product-info form.cart {
    display: block;

    width: 100%;
    max-width: none;

    margin: 0;
    padding: 0;
  }

  body.single-product
  .product-info__cta {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: none;

    height: 32px;
    min-height: 32px;

    margin: 0;
    padding: 7px 16px;

    color: #ffffff;
    background-color: #000000;

    border: 1px solid #000000;
    border-radius: 0;

    font-family: "Sweet Sans Pro", Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 0.02em;

    text-align: center;
    text-transform: uppercase;
  }


  /* ------------------------------------------------------------------------
     Discover more section
     ------------------------------------------------------------------------ */

  body.single-product
  .discover-more {
    width: 100%;

    margin: 0;
    padding: 30px 14px 40px;

    box-sizing: border-box;
  }

  body.single-product
  .discover-more__title {
    margin: 0 0 22px;

    font-size: 18px;
    line-height: 22px;
  }

  body.single-product
  .discover-more__track {
    gap: 8px;
  }

  body.single-product
  .discover-more__track .tile {
    flex: 0 0 calc(50vw - 22px);

    padding: 7px;
  }

  body.single-product
  .discover-more__track .tile__link {
    gap: 5px;
    margin-top: 10px;
  }

  body.single-product
  .discover-more__track .tile__title,
  body.single-product
  .discover-more__track .tile__price {
    font-size: 10px;
    line-height: 13px;
  }

  body.single-product
  .discover-more__track .tile form.cart {
    margin-top: 9px;

    opacity: 1;
    pointer-events: auto;
  }

  body.single-product
  .discover-more__track .tile__cta {
    height: 30px;
    min-height: 30px;

    font-size: 8.5px;
    line-height: 10px;
  }

  body.single-product
  .discover-more__nav {
    flex: 0 0 20px;
    padding: 25px 0;
  }
}


/* ==========================================================================
   VERY SMALL MOBILE
   ========================================================================== */

@media screen and (max-width: 360px) {

  body.single-product
  .product-info {
    padding-inline: 12px;
  }

  body.single-product
  .product-info__description {
    font-size: 11px;
    line-height: 15px;
  }

  body.single-product
  .product-info__service {
    font-size: 9px;
    line-height: 11px;
  }

  body.single-product
  .product-info__service span {
    white-space: normal;
  }

  body.single-product
  .product-info__title {
    font-size: 14px;
    line-height: 17px;
  }
}
