.thankyou-two-column {
  display: flex;
  gap: 60px;
  margin-bottom: 120px;
}




@media (max-width: 767px) {
  .thankyou-two-column {
    flex-direction: column;
    max-width: 500px;
   margin: 0 auto 120px;
   gap: 30px;
  }
}

.thankyou-left,
.thankyou-right {
  flex: 1 1 0;
  min-width: 0;
}


.thankyou-order-number{
  font-family: 'Poppins', serif;
  font-size: 16px;
  line-height: 1;
  color: #575851;
  margin-bottom: 15px; 
    letter-spacing: -0.03em;
}

.thankyou-heading-wrapper {
  display: flex;
  align-items: center; 
  gap: 15px;
  margin-bottom: 30px;
}

.thankyou-svg-check {
  flex-shrink: 0;
}

.thankyou-svg-check svg {
  display: block;
}

.thankyou-heading {
  margin: 0;
  font-family: 'Poppins', serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 500;
  color: #000;
}


.thankyou-map-container {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 30px;
  border: 1px solid #DFE0D8;
  overflow: hidden;
}
.thankyou-map-container iframe {
  width: 100%;
  border-radius: 30px;
  height: 100%;
  border: 0;
}




.thankyou-customer-info {
  display: flex;
  gap: 60px;
}
@media (max-width: 1100px) {
  .thankyou-customer-info {
    flex-direction: column;
    gap: 15px;
  }
}


.customer-details h3,
.payment-details h3 {
  margin-bottom: 20px;
  font-family: 'Poppins', serif;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 500;
  color: #000;
}
.customer-details ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.customer-details li strong {
  color: #575851;
}

.customer-details li {
  font-family: 'Poppins', serif;
  font-size: 16px;
  color: #575851;
  line-height: 1;
  margin-bottom: 15px;
}
.payment-details p {
  font-family: 'Poppins', serif;
  font-size: 16px;
  line-height: 1;
  color: #575851;
  margin:0;
}






.order-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}
.order-item-thumb {
  position: relative;
  background: #ffffff;
  padding: 15px;
  border-radius: 30px;
  flex-shrink: 0;
}
.order-item-thumb img {
  display: block;
  width: 75px;
  height: auto;
}
.qty-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #095509;
  color: #fff;
  font-family: 'Poppins', serif;
  font-size: 12px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
}
.order-item-info .item-name {
  margin: 0;
  font-family: 'Poppins', serif;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 500;
  color: #000;
}

/* Priser helt til højre i ordrelinjen */
.price-right {
  margin-left: auto;
  font-family: 'Poppins', serif;
  font-size: 16px;
  color: #575851;
  font-weight: 400;
}

/* ---------------------------------------------------
   6) Subtotal, levering, total i price-row
--------------------------------------------------- */
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', serif;
  font-size: 16px;
  line-height: 1;
  color: #575851;
}

.thankyou-subtotal.price-row{
    margin:30px 0 15px 0;
}


.price-row .price-right {
  font-weight: 400;
  font-family: 'Poppins', serif;
  color: #575851;
}

.thankyou-total.price-row {
        margin-top: 30px;
        font-weight: 500;
        color: #000;
}

.thankyou-total .price-right {
  font-size: 22px;
  font-weight: 500;
  color: #000;
}




.thankyou-tax-note {
  margin-top: 5px;
  text-align: right;
  font-family: 'Poppins', serif;
  line-height: 1;
  font-size: 13px;
  color: #575851;
}

/* ---------------------------------------------------
   8) Overskrift “Ordreoversigt”
--------------------------------------------------- */
.thankyou-summary-heading {
  font-family: 'Poppins', serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #000;
  margin: 0 0 30px 0;
}






.thankyou-footer-mobile {
  display: none;
}
@media (max-width: 767px) {
  .thankyou-footer-desktop {
    display: none;
  }
  .thankyou-footer-mobile {
    display: block;
    margin-top: 30px;
  }
}


@media (min-width: 768px) {
  .thankyou-right {
    position: sticky;
    top: 30px;
    align-self: flex-start; /* sørger for at den ikke strækkes i højden */
  }
}


.thankyou-home-link {
  margin-top: 20px;
}
.thankyou-home-link .button-back-home {
  display: block;
  width: 100%;
  padding: 15px 0; 
  font-family: 'Poppins', serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
  background-color: #095509;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;       
  transition: background-color 0.2s ease;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.thankyou-home-link .button-back-home:hover {
  background-color: #095509;
}
.thankyou-footer-links {
  margin-top: 20px;
  font-family: 'Poppins', serif;
  font-size: 14px;
  line-height: 1;
  color: #575851;
  display: flex;
  gap: 15px;
}
.thankyou-footer-links a {
  color: #575851;
  text-decoration: none;
  font-weight: 400;
}
.thankyou-footer-links a:hover {
  text-decoration: underline;
}




.webcast-code-box{
    margin-top: 45px;

}


.webcast-code-label {
    font-family: 'Poppins', serif;
    font-weight: 700; 
    color: #575851;
    font-size: 16px;
    line-height: 1;
}
.webcast-code-value { 
    font-family: 'Poppins', serif;
    color: #575851;
        font-size: 16px;
    line-height: 1;
}



