

/* ---- Header ---- */
.billing-header {
  border-bottom: 1px solid #e4e2de;
  padding: 22px 0;
  background: #f5f4f1;
}

.billing-header .luxe-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.billing-secure {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  color: #444844;
  text-transform: uppercase;
}

.billing-secure svg {
  width: 14px;
  height: 14px;
  stroke: #444844;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- Main content ---- */
.thankyou-main {
  padding: 64px 0 80px;
  background: #f5f4f1;
  min-height: calc(100vh - 67px - 72px);
}

.thankyou-main .luxe-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* ---- Left: dark editorial image panel ---- */
.thankyou-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1.22;
  position: relative;
  overflow: hidden;
  background: #ec5c00;   /* deep teal fallback that matches the photo */
}

.thankyou-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay text centred on the image */
.thankyou-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  /* only visible when no real image, or always if you want text over image */
}

.thankyou-img-overlay h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 18px;
}

/* thin rule under "Thank You" */
.thankyou-img-overlay h2::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,.5);
  margin: 16px auto 0;
}

.thankyou-img-overlay p {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

/* ---- Right: confirmation details ---- */
.thankyou-details {
  padding-top: 64px;
  display: flex;
  flex-direction: column;
}

.thankyou-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .18em;
  color: #1A1C1C;
  margin-bottom: 48px;
}

.thankyou-headline {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  color: #1A1C1C;
  margin-bottom: 32px;
}

.thankyou-body {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 48px;
  max-width: 340px;
}

/* Divider */
.thankyou-divider {
  border: none;
  border-top: 1px solid #C4C7C3;
  margin-bottom: 36px;
}

/* Order reference block */
.thankyou-order-ref {
  margin-bottom: 48px;
}

.order-ref-label {
  font-size: 12px;
  color: #444844;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 1.2px;

}

.order-ref-value {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #1A1C1C;
}

/* CTA */
.btn-return {
  display: inline-block;
  width: 100%;
  max-width: 324px;
  height: 58px;
  background: #1A1C1C;
  color: #fff;
  border: none;
  border-radius: 60px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .2s;
  text-align: center;
  line-height: 58px;
  text-decoration: none;
}

.btn-return:hover {
  background: #333;
  color: #fff;
}

/* ---- Footer ---- */
.billing-footer {
  border-top: 1px solid #e4e2de;
  padding: 24px 0;
  background: #f5f4f1;
}

.billing-footer .luxe-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.billing-footer-copy {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #444844;
  text-transform: uppercase;
}

.billing-footer-links {
  display: flex;
  gap: 32px;
}

.billing-footer-links a {
  font-size: 16px;
  color: #444844;
  text-decoration: none;
  transition: color .15s;
}

.billing-footer-links a:hover { color: #1A1C1C; }

/* ---- Responsive ---- */

@media (max-width: 992px) {
  .billing-header .luxe-container{text-align: center;justify-content: center;}
}

@media (max-width: 900px) {
  .thankyou-main .luxe-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .thankyou-details {
    padding-top: 0;
  }

  .thankyou-headline {
    font-size: 52px;
  }

  .btn-return {
    max-width: 100%;
  }

  .billing-footer .luxe-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}