.success-page-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.success-icon {
    margin-bottom: 30px;
}

.checkmark {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 50px;
    color: white;
    background-color: #28a745;
    border-radius: 50%;
    font-weight: bold;
}

.success-page-container h1 {
    color: #28a745;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 20px;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.order-summary {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.order-summary h2 {
    color: #495057;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.order-info {
    max-width: 400px;
    margin: 0 auto;
}

.order-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #dee2e6;
}

.order-row:last-child {
    border-bottom: none;
}

.order-row .label {
    font-weight: bold;
    color: #495057;
}

.order-row .value {
    color: #007bff;
    font-weight: bold;
}

.next-steps,
.grape-info,
.contact-info {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.next-steps h2,
.grape-info h2,
.contact-info h2 {
    color: #495057;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
}

.next-steps ul,
.grape-info ul {
    padding-left: 20px;
    line-height: 1.6;
}

.next-steps li,
.grape-info li {
    margin-bottom: 8px;
}

.contact-info p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.action-buttons {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #545b62;
}

@media (max-width: 768px) {
    .success-page-container {
        padding: 20px 15px;
    }
    
    .success-page-container h1 {
        font-size: 2em;
    }
    
    .checkmark {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 35px;
    }
    
    .order-summary,
    .next-steps,
    .grape-info,
    .contact-info {
        padding: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
}

@media print {
    .action-buttons {
        display: none;
    }
    
    body {
        margin: 0;
        padding: 0;
    }
    
    .success-page-container {
        max-width: none;
        padding: 20px;
    }
}