.sp-thank-you-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.sp-thank-you-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 40px;
    text-align: center;
}

.sp-success-icon {
    margin-bottom: 30px;
}

.sp-thank-you-card h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 32px;
}

.sp-thank-you-message {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.sp-order-details {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    text-align: left;
}

.sp-order-details h2 {
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
}

.sp-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.sp-order-item:last-child {
    border-bottom: none;
}

.sp-order-item-name {
    flex: 2;
    font-weight: 600;
}

.sp-order-item-name small {
    font-weight: normal;
    color: #666;
    font-size: 14px;
}

.sp-order-item-quantity {
    flex: 1;
    color: #666;
}

.sp-order-item-total {
    flex: 0.5;
    text-align: right;
    font-weight: 600;
}

.sp-order-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #333;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
}

.sp-loading {
    color: #666;
    font-style: italic;
    text-align: center;
}

.sp-error {
    color: #dc3545;
    text-align: center;
}

.sp-thank-you-actions {
    margin-top: 30px;
}

.sp-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.sp-button-primary {
    background-color: #4CAF50;
    color: white;
}

.sp-button-primary:hover {
    background-color: #45a049;
}