.receipt-wrapper {
    max-width: 420px;
    margin: 40px auto;
    font-family: -apple-system, system-ui, sans-serif;
    color: #111;
}

.receipt-header {
    text-align: center;
    margin-bottom: 24px;
}

.success-checkmark {
    width: 56px;
    height: 56px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.receipt-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 4px;
}

.receipt-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* 🌟 TICKET CARD */
.ticket-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    margin-bottom: 24px;
}

.ticket-top {
    padding: 24px;
}

.ticket-bottom {
    padding: 24px;
    background: #fdfdfd;
    border-radius: 0 0 16px 16px;
}

/* Stansade hål & Streckad linje */
.ticket-divider {
    height: 0;
    border-top: 2px dashed #eaeaea;
    position: relative;
    margin: 0;
}

.ticket-divider::before,
.ticket-divider::after {
    content: '';
    position: absolute;
    top: -12px;
    width: 24px;
    height: 24px;
    background-color: #f4f5f7;
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.ticket-divider::before {
    left: -12px;
}

.ticket-divider::after {
    right: -12px;
}

/* Innehåll Biljett */
.ticket-brand-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.merchant-logo {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
}

.type-label {
    font-size: 10px;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.5px;
    display: block;
    text-align: right;
    margin-bottom: 4px;
}

.product-title {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    text-align: right;
}

.ticket-meta-row {
    display: flex;
    justify-content: space-between;
}

.meta-block {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 10px;
    font-weight: 600;
    color: #888;
    margin-bottom: 4px;
}

.meta-value {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 2px;
}

.meta-sub {
    font-size: 12px;
    color: #888;
}

.text-right {
    text-align: right;
}

.info-block {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 10px;
    font-weight: 600;
    color: #888;
    margin-bottom: 4px;
}

.info-value-bold {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 2px;
}

.info-value {
    font-size: 13px;
    color: #444;
    line-height: 1.4;
}

.barcode-wrapper {
    text-align: center;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 20px 10px;
    margin-top: 24px;
    background: #fff;
}

.barcode-svg {
    width: 100%;
    max-height: 60px;
}

.barcode-text {
    display: block;
    font-family: monospace;
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 12px;
}

/* Elements below ticket */
.wallet-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-wallet {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 12px;
    font-size: 12px;
    cursor: pointer;
}

.order-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    margin-bottom: 16px;
}

.grid-item {
    padding: 16px;
    border-right: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
}

.grid-item:last-child {
    border-right: none;
}

.grid-label {
    font-size: 9px;
    font-weight: 700;
    color: #888;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.grid-value {
    font-size: 12px;
    font-weight: 500;
}

.btn-dark-action {
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 24px;
}

.support-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

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

.support-icon {
    font-size: 24px;
}

.support-text strong {
    font-size: 14px;
    display: block;
}

.support-text p {
    font-size: 12px;
    color: #666;
    margin: 4px 0 0;
}

.support-links {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #444;
    border-top: 1px solid #eaeaea;
    padding-top: 12px;
    margin-top: 16px;
}

.merchant-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 16px;
}

.footer-logo-wrap {
    width: 48px;
    height: 48px;
    background: #f4f5f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #888;
}

.footer-info {
    flex: 1;
    font-size: 11px;
    color: #888;
}

.footer-info strong {
    font-size: 13px;
    color: #111;
    display: block;
    margin-bottom: 4px;
}

.footer-info p {
    margin: 0 0 2px;
}