/* =========================================
   PRINTVERSA - Service Detail Pages
   ========================================= */

.service-detail {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px 70px;
}


/* Breadcrumb */

.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 24px 0 18px;
  font-size: 0.92rem;
  color: #777;
}

.service-breadcrumb a {
  color: #d94f8a;
  text-decoration: none;
  font-weight: 600;
}

.service-breadcrumb a:hover {
  text-decoration: underline;
}


/* Small Section Label */

.service-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #d94f8a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* =========================================
   Hero
   ========================================= */

.service-detail-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 55px;
  align-items: center;
  padding: 42px 0 72px;
}

.service-detail-hero-text h1 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.service-detail-hero-text p {
  max-width: 650px;
  margin: 0 0 30px;
  color: #5e5e5e;
  font-size: 1.08rem;
  line-height: 1.75;
}

.service-detail-hero-image {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.service-detail-hero-image img {
  display: block;
  width: 100%;
  height: 470px;
  object-fit: cover;
}


/* Order Button */

.service-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}


/* =========================================
   General Sections
   ========================================= */

.service-detail-section {
  padding: 68px 0;
  border-top: 1px solid #ececec;
}

.service-section-heading {
  max-width: 720px;
  margin-bottom: 35px;
}

.service-section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.15;
}

.service-section-heading p {
  margin: 0;
  color: #666;
  font-size: 1.02rem;
  line-height: 1.7;
}


/* =========================================
   What You Can Order
   ========================================= */

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-feature-card,
.service-option-card,
.service-info-card {
  padding: 30px;
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.045);
}

.service-feature-card h3,
.service-option-card h3,
.service-info-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.service-feature-card p,
.service-option-card p,
.service-info-card p {
  margin: 0;
  color: #666;
  line-height: 1.7;
}


/* =========================================
   Printing Options
   ========================================= */

.service-option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-option-card {
  position: relative;
  padding-top: 34px;
}

.service-option-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 55px;
  height: 4px;
  border-radius: 0 0 5px 5px;
  background: #d94f8a;
}


/* =========================================
   Pricing
   ========================================= */

.service-price-table-wrapper {
  overflow-x: auto;
  border: 1px solid #e7e7e7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

.service-price-table th,
.service-price-table td {
  padding: 22px 25px;
  text-align: left;
  border-bottom: 1px solid #ededed;
}

.service-price-table thead th {
  background: #faf7f9;
  color: #333;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-price-table tbody tr:last-child td {
  border-bottom: none;
}

.service-price-table td strong {
  font-size: 1.08rem;
}

.service-price-table td:first-child span {
  display: block;
  margin-top: 5px;
  color: #777;
  font-size: 0.88rem;
}


/* =========================================
   Shape / Size Information
   ========================================= */

.service-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}


/* =========================================
   Artwork Section
   ========================================= */

.service-artwork-content {
  max-width: 850px;
  padding: 30px 34px;
  border-radius: 18px;
  background: #faf7f9;
}

.service-artwork-content p {
  margin: 0 0 15px;
  color: #555;
  line-height: 1.75;
}

.service-artwork-content p:last-child {
  margin-bottom: 0;
}


/* =========================================
   Final CTA
   ========================================= */

.service-final-cta {
  margin-top: 65px;
  padding: 65px 35px;
  border-radius: 26px;
  text-align: center;
  background: #faf3f6;
}

.service-final-cta h2 {
  max-width: 700px;
  margin: 0 auto 15px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.service-final-cta p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: #666;
  font-size: 1.03rem;
  line-height: 1.7;
}


/* =========================================
   Tablet
   ========================================= */

@media (max-width: 900px) {

  .service-detail-hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 25px;
  }

  .service-detail-hero-image img {
    height: 420px;
  }

  .service-feature-grid {
    grid-template-columns: 1fr;
  }

}


/* =========================================
   Mobile
   ========================================= */

@media (max-width: 650px) {

  .service-detail {
    padding: 0 18px 45px;
  }

  .service-breadcrumb {
    padding-top: 18px;
    font-size: 0.82rem;
    flex-wrap: wrap;
  }

  .service-detail-hero {
    padding-bottom: 50px;
  }

  .service-detail-hero-text h1 {
    font-size: 2.35rem;
  }

  .service-detail-hero-image {
    border-radius: 18px;
  }

  .service-detail-hero-image img {
    height: 300px;
  }

  .service-detail-section {
    padding: 50px 0;
  }

  .service-option-grid,
  .service-info-grid {
    grid-template-columns: 1fr;
  }

  .service-feature-card,
  .service-option-card,
  .service-info-card {
    padding: 24px;
  }

  .service-price-table th,
  .service-price-table td {
    padding: 17px 18px;
  }

  .service-artwork-content {
    padding: 24px;
  }

  .service-final-cta {
    margin-top: 45px;
    padding: 48px 22px;
  }

  .service-order-btn {
    width: 100%;
  }

}