.confirmation-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.thank-you-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thank-you-section i {
    font-size: 64px;
    color: #28a745;
    margin-bottom: 20px;
}

.thank-you-section h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.thank-you-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
}

.order-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.shipping-info, .order-summary, .next-steps {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.shipping-info h2, .order-summary h2, .next-steps h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-item h3 {
    color: #666;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.info-item p {
    margin-bottom: 10px;
    color: #333;
}

.items-list {
    margin-bottom: 30px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

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

.item-details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-details img {
    width: 60px;
    height: auto;
    border-radius: 4px;
}

.totals {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.grand-total {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #eee;
}

.next-steps ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.next-steps li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.next-steps li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.continue-shopping, .track-order {
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.continue-shopping {
    background-color: #333;
    color: white;
}

.track-order {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.continue-shopping:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.track-order:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .confirmation-container {
        margin: 20px auto;
    }

    .thank-you-section {
        padding: 20px;
    }

    .thank-you-section h1 {
        font-size: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .continue-shopping, .track-order {
        width: 100%;
        text-align: center;
    }
} 