  :root {
    --bg: #fff8f2;
    --card: #ffffff;
    --text: #2f171c;
    --muted: #756268;
    --primary: #8f1731;
    --primary-dark: #681021;
    --gold: #c79243;
    --green: #0d7d36;
    --border: rgba(143, 23, 49, 0.12);
    --soft-border: rgba(143, 23, 49, 0.08);
    --shadow: 0 12px 30px rgba(55, 21, 31, 0.075);
  }

  * {
    box-sizing: border-box;
  }

  body.product-detail-template {
    margin: 0;
    color: var(--text);
    background:
      radial-gradient(circle at 96% 18%, rgba(143, 23, 49, 0.055), transparent 28%),
      radial-gradient(circle at 8% 12%, rgba(199, 146, 67, 0.10), transparent 30%),
      linear-gradient(135deg, #fffdfb, var(--bg));
    font-family: var(--font-sans);
  }

  .pd-page {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 10px 10px 76px;
  }

  .pd-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 8px 0 12px;
    color: var(--primary);
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
  }

  .pd-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(18px, 3.4vw, 38px);
    align-items: start;
  }

  .pd-gallery {
    position: sticky;
    top: 86px;
    min-width: 0;
  }

  .pd-main-media {
    position: relative;
    width: 100%;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--soft-border);
    box-shadow: var(--shadow);
    overflow: hidden;
    aspect-ratio: 0.86 / 1;
    touch-action: pan-y;
  }

  .pd-main-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    user-select: none;
    -webkit-user-drag: none;
  }

  .pd-thumb img {
    user-select: none;
    -webkit-user-drag: none;
  }

  .pd-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 6px;
    color: #fff;
    background: #c01863;
    font-size: 10px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .pd-image-count {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 999px;
    color: #fff;
    background: rgba(47, 23, 28, 0.62);
    backdrop-filter: blur(8px);
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
  }

  .pd-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(47, 23, 28, 0.58);
    backdrop-filter: blur(8px);
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  }

  .pd-gallery-arrow--prev {
    left: 14px;
  }

  .pd-gallery-arrow--next {
    right: 14px;
  }

  .pd-gallery-arrow:hover {
    background: rgba(47, 23, 28, 0.76);
  }

  .pd-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px;
    margin-top: 10px;
  }

  .pd-thumb {
    border: 1px solid var(--soft-border);
    background: #fff;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1.1 / 1;
    box-shadow: 0 8px 18px rgba(55, 21, 31, 0.045);
  }

  .pd-thumb.is-active {
    border-color: rgba(143, 23, 49, 0.68);
    box-shadow: 0 0 0 2px rgba(143, 23, 49, 0.08);
  }

  .pd-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
  }

  .pd-info {
    min-width: 0;
    padding: 16px 2px 0;
  }

  .pd-kicker {
    display: inline-flex;
    margin-bottom: 7px;
    color: var(--gold);
    font-size: 10px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .pd-title {
    margin: 0;
    max-width: 780px;
    color: var(--text);
    font-family: var(--font-serif);
    font-size: clamp(24px, 6.2vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    font-weight: 700;
  }

  .pd-review-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-top: 10px;
    color: #4c3338;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
  }

  .pd-stars {
    color: #d49a2d;
    letter-spacing: 1px;
    font-size: 13px;
  }

  .pd-divider-dot {
    width: 1px;
    height: 13px;
    background: rgba(47, 23, 28, 0.22);
  }

  .pd-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
  }

  .pd-price strong {
    color: #101827;
    font-size: clamp(25px, 6.5vw, 36px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.03em;
  }

  .pd-price del {
    color: #8c8f97;
    font-size: 15px;
    font-weight: 800;
  }

  .pd-offer-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #fff;
    background: #c01863;
    font-size: 11px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .pd-tax {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
  }

  .pd-color-title {
    margin-top: 18px;
    color: #4c3338;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .pd-color-title span {
    color: var(--muted);
    font-weight: 800;
    letter-spacing: normal;
    text-transform: none;
  }

  .pd-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 11px;
  }

  .pd-variant {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(143, 23, 49, 0.16);
    background: #fff;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(55, 21, 31, 0.045);
  }

  .pd-variant.is-active {
    border-color: rgba(143, 23, 49, 0.78);
    box-shadow: 0 0 0 3px rgba(143, 23, 49, 0.10);
  }

  .pd-color-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--dot, #8f1731);
    flex: 0 0 auto;
  }

  .pd-highlights {
    margin-top: 18px;
  }

  .pd-highlights h2 {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 12px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  .pd-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 13px;
    padding: 2px 0 14px;
    border-bottom: 2px solid rgba(143, 23, 49, 0.82);
  }

  .pd-highlight-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .pd-highlight-icon {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: transparent;
    border-radius: 0;
  }

  .pd-highlight-icon svg {
    width: 21px;
    height: 21px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .pd-highlight-item p {
    margin: 0;
    color: #3e252d;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
  }

  .pd-highlight-item strong {
    color: #3a1823;
    font-weight: 850;
  }

  .pd-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .pd-whatsapp,
  .pd-secondary {
    width: 100%;
    min-height: 34px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .pd-whatsapp {
    border: 1px solid var(--primary);
    color: #fff;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: none;
  }

  .pd-secondary {
    border: 1px solid rgba(143, 23, 49, 0.45);
    color: var(--primary);
    background: rgba(255, 255, 255, 0.72);
  }

  .pd-secondary.is-added {
    border-color: rgba(13, 125, 54, 0.55);
    color: #fff;
    background: linear-gradient(135deg, #0e8a3f, #087334);
  }

  .pd-action-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .pd-action-icon svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .pd-service-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 14px;
    border: 1px solid rgba(143, 23, 49, 0.10);
    border-radius: 4px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: none;
  }

  .pd-service {
    min-height: 68px;
    padding: 10px 6px 9px;
    text-align: center;
    border-right: 1px solid rgba(143, 23, 49, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .pd-service:last-child {
    border-right: 0;
  }

  .pd-service-icon {
    width: 18px;
    height: 18px;
    margin-bottom: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
  }

  .pd-service-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .pd-service b {
    display: block;
    color: #3a1823;
    font-size: 10.2px;
    line-height: 1.15;
    font-weight: 900;
  }

  .pd-service span:not(.pd-service-icon) {
    display: block;
    margin-top: 3px;
    color: #5f444b;
    font-size: 8.8px;
    line-height: 1.2;
    font-weight: 600;
  }

  .pd-accordions {
    margin-top: 14px;
    border: 1px solid rgba(143, 23, 49, 0.13);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.52);
    overflow: hidden;
    box-shadow: none;
  }

  .pd-accordions details {
    border-bottom: 1px solid rgba(143, 23, 49, 0.10);
  }

  .pd-accordions details:last-child {
    border-bottom: 0;
  }

  .pd-accordions summary {
    min-height: 43px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    color: var(--primary);
    font-size: 10.5px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    list-style: none;
  }

  .pd-accordions summary::-webkit-details-marker {
    display: none;
  }

  .pd-accordions summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.18s ease;
    flex: 0 0 auto;
    margin-top: -5px;
  }

  .pd-accordions details[open] summary::after {
    transform: rotate(-135deg);
    margin-top: 5px;
  }

  .pd-accordion-body {
    padding: 0 14px 14px;
    color: #5f444b;
    font-size: 11.5px;
    line-height: 1.65;
    font-weight: 600;
  }

  /* Default related grid - for Explore More / You may also like */
  .pd-related {
    margin-top: 30px;
  }

  .pd-related-head {
    margin-bottom: 14px;
    text-align: center;
  }

  .pd-related-head span {
    display: block;
    margin-bottom: 6px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .pd-related-head h2 {
    margin: 0;
    color: var(--text);
    font-family: var(--font-serif);
    font-size: 15px;
    line-height: 1.05;
  }

  .pd-related-head p {
    display: none;
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 11.5px;
    line-height: 1.35;
    font-weight: 650;
  }

  .pd-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .pd-related-card {
    color: inherit;
    text-decoration: none;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--soft-border);
    box-shadow: 0 8px 18px rgba(55, 21, 31, 0.045);
  }

  .pd-related-img {
    aspect-ratio: 0.82 / 1;
    overflow: hidden;
    background: #fff8f2;
  }

  .pd-related-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
  }

  .pd-related-body {
    padding: 10px;
  }

  .pd-related-body h3 {
    margin: 0 0 7px;
    color: #14181f;
    font-family: var(--font-serif);
    font-size: 14px;
    line-height: 1.15;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .pd-related-price {
    color: #111827;
    font-size: 14px;
    font-weight: 950;
  }

  /* Same category - compact mobile swipe slider */
  .pd-related--slider {
    margin-top: 26px;
    padding: 14px 0 2px;
    border-top: 1px solid rgba(143, 23, 49, 0.10);
  }

  .pd-related--slider .pd-related-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    padding: 0 2px;
    text-align: left;
  }

  .pd-related--slider .pd-related-head p {
    display: block;
  }

  .pd-related-swipe {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--primary);
    background: rgba(143, 23, 49, 0.07);
    border: 1px solid rgba(143, 23, 49, 0.10);
    font-size: 9.5px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .pd-related-rail-wrap {
    position: relative;
    margin-left: -10px;
    margin-right: -10px;
    overflow: hidden;
  }

  .pd-related-rail-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 10px;
    width: 24px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 248, 242, 0), #fff8f2);
  }

  .pd-related--slider .pd-related-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 10px;
    -webkit-overflow-scrolling: touch;
    padding: 3px 10px 14px;
    scrollbar-width: none;
  }

  .pd-related--slider .pd-related-grid::-webkit-scrollbar {
    display: none;
  }

  .pd-related-slide {
    flex: 0 0 42%;
    max-width: 158px;
    min-width: 132px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .pd-related-slide .product-card {
    height: 100%;
    min-width: 0;
    border-radius: 12px;
  }

  .pd-related-slide .product-media {
    border-radius: 12px 12px 0 0;
  }

  .pd-related-slide .product-info {
    padding: 9px 9px 10px;
  }

  .pd-related-slide .product-info h3 {
    font-size: 12.5px;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  .pd-related-slide .product-category {
    margin-top: 6px;
    font-size: 9px;
    line-height: 1.1;
    letter-spacing: 0.08em;
  }

  .pd-related-slide .product-price {
    margin-top: 6px;
    gap: 4px;
  }

  .pd-related-slide .product-price strong {
    font-size: 13px;
    line-height: 1;
  }

  .pd-related-slide .product-price del {
    font-size: 9.5px;
  }

  .pd-related-slide .product-offer {
    top: 8px;
    left: 8px;
    padding: 5px 7px;
    border-radius: 6px;
    font-size: 7.5px;
    letter-spacing: 0.05em;
  }

  .pd-related-slide .product-heart {
    top: 7px;
    right: 7px;
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .pd-sticky-cta {
    display: none;
  }

  @media (max-width: 900px) {
    .pd-shell {
      grid-template-columns: 1fr;
    }

    .pd-gallery {
      position: static;
    }

    .pd-main-media {
      max-width: 560px;
      margin: 0 auto;
    }

    .pd-thumbs {
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .pd-related--slider .pd-related-grid {
      display: flex !important;
      grid-template-columns: none !important;
    }

    .pd-gallery-arrow {
      display: none;
    }
  }

  @media (min-width: 520px) {
    .pd-related-slide {
      flex-basis: 31%;
      max-width: 178px;
    }
  }

/* Related section headings - desktop/tablet fix */
@media (min-width: 760px) {
  .pd-related-head span {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .pd-related-head h2 {
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1.05;
  }

  .pd-related-head p {
    font-size: 13px;
    line-height: 1.4;
  }

  .pd-related--slider .pd-related-head h2 {
    font-size: clamp(23px, 2vw, 30px);
  }

  .pd-related--slider .pd-related-head p {
    font-size: 13px;
  }
}

  @media (min-width: 1100px) {
    .pd-related-slide {
      flex-basis: 19%;
      max-width: 218px;
    }

    .pd-related--slider .pd-related-grid {
      gap: 14px;
    }

    .pd-related-swipe {
      display: none;
    }
  }

  @media (max-width: 560px) {
    .pd-accordions {
      margin-top: 12px;
    }

    .pd-accordions summary {
      min-height: 39px;
      padding: 0 12px;
      font-size: 9.8px;
      letter-spacing: 0.1em;
    }

    .pd-accordion-body {
      padding: 0 12px 12px;
      font-size: 10.8px;
      line-height: 1.6;
    }

    .pd-page {
      padding-top: 8px;
      padding-left: 10px;
      padding-right: 10px;
    }

    .pd-back {
      margin-top: 4px;
      margin-bottom: 10px;
      font-size: 11px;
    }

    .pd-main-media {
      border-radius: 14px;
      aspect-ratio: 0.95 / 1;
    }

.pd-badge {
  max-width: 95px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

    .pd-thumbs {
      gap: 8px;
      margin-top: 9px;
    }

    .pd-thumb {
      border-radius: 10px;
    }

    .pd-info {
      padding-top: 18px;
    }

    .pd-title {
      font-size: 25px;
    }

    .pd-review-line {
      font-size: 11.5px;
      gap: 8px;
    }

    .pd-price {
      margin-top: 14px;
    }

    .pd-price strong {
      font-size: 27px;
    }

    .pd-price del {
      font-size: 14px;
    }

    .pd-offer-tag {
      min-height: 26px;
      font-size: 10.5px;
    }

    .pd-highlight-grid {
      column-gap: 12px;
      row-gap: 11px;
      padding-bottom: 13px;
    }

    .pd-highlight-item {
      gap: 8px;
    }

    .pd-highlight-icon,
    .pd-highlight-icon svg {
      width: 18px;
      height: 18px;
    }

    .pd-highlight-icon {
      flex-basis: 18px;
    }

    .pd-highlight-item p {
      font-size: 12px;
    }

    .pd-actions {
      gap: 7px;
      margin-top: 14px;
    }

    .pd-whatsapp,
    .pd-secondary {
      min-height: 32px;
      font-size: 10.5px;
      letter-spacing: 0.1em;
    }

    .pd-action-icon,
    .pd-action-icon svg {
      width: 15px;
      height: 15px;
    }

    .pd-service-row {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      margin-top: 12px;
    }

    .pd-service {
      min-height: 62px;
      padding: 8px 3px 7px;
    }

    .pd-service-icon,
    .pd-service-icon svg {
      width: 15px;
      height: 15px;
    }

    .pd-service-icon {
      margin-bottom: 4px;
    }

    .pd-service b {
      font-size: 8.6px;
    }

    .pd-service span:not(.pd-service-icon) {
      font-size: 7.4px;
      line-height: 1.15;
    }

    .pd-related-grid {
      gap: 10px;
    }

    .pd-related--slider {
      margin-top: 22px;
      padding-top: 13px;
    }

    .pd-related--slider .pd-related-head h2 {
      font-size: 20px;
    }

    .pd-related--slider .pd-related-head p {
      font-size: 10.5px;
    }

    .pd-related-slide {
      flex-basis: 42%;
      max-width: 158px;
      min-width: 132px;
    }

    .pd-sticky-cta {
      position: fixed;
      left: 10px;
      right: 10px;
      bottom: 10px;
      z-index: 30;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(135deg, #0e8a3f, #087334);
      text-decoration: none;
      font-size: 14px;
      font-weight: 950;
      box-shadow: 0 18px 34px rgba(14, 138, 63, 0.25);
    }
  }

  @media (max-width: 380px) {
    .pd-title {
      font-size: 23px;
    }

    .pd-highlight-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      column-gap: 8px;
      row-gap: 9px;
    }

    .pd-highlight-item {
      gap: 6px;
      align-items: flex-start;
    }

    .pd-highlight-icon,
    .pd-highlight-icon svg {
      width: 15px;
      height: 15px;
    }

    .pd-highlight-icon {
      flex-basis: 15px;
      margin-top: 1px;
    }

    .pd-highlight-item p {
      font-size: 10.5px;
      line-height: 1.28;
    }

    .pd-service-row {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .pd-service {
      min-height: 58px;
      padding: 7px 2px 6px;
    }

    .pd-service-icon,
    .pd-service-icon svg {
      width: 14px;
      height: 14px;
    }

    .pd-service b {
      font-size: 7.8px;
    }

    .pd-service span:not(.pd-service-icon) {
      font-size: 6.8px;
    }

    .pd-related-slide {
      flex-basis: 41%;
      max-width: 148px;
      min-width: 126px;
    }

    .pd-related--slider .pd-related-head h2 {
      font-size: 18.5px;
    }

    .pd-related-swipe {
      min-height: 23px;
      padding: 5px 7px;
      font-size: 8.5px;
    }
  }
