/* Luxury Theme - Success Page Styles */

.success-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: #fff;
}

.success-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 0;
    text-align: center;
    max-width: 650px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #d4af37;
}

.success-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: #1a1a1a;
    margin: 30px 0 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.success-message {
    color: #888;
    font-size: 1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.order-details-box {
    background: #fafafa;
    padding: 30px;
    border: 1px solid #f0f0f0;
    margin-bottom: 40px;
}

.order-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 8px;
    font-weight: 600;
}

.order-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 200;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.order-amount {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #555;
}

.order-amount strong {
    color: #d4af37;
    margin-left: 5px;
}

.email-notice {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 40px;
    font-style: italic;
}

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

.btn-luxury-success {
    display: inline-block;
    padding: 16px 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s;
    min-width: 200px;
}

.btn-success-view {
    border: 1px solid #e5e5e5;
    color: #1a1a1a;
    background: transparent;
}

.btn-success-view:hover {
    background: #f9f9f9;
    border-color: #1a1a1a;
}

.btn-success-home {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
}

.btn-success-home:hover {
    background: #d4af37;
    border-color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Checkmark Animation */
.success-icon-wrapper {
    margin-bottom: 30px;
}

.checkmark {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #d4af37;
    stroke-miterlimit: 10;
    margin: 0 auto;
    box-shadow: inset 0px 0px 0px #d4af37;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #d4af37;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}

@keyframes scale {
    0%, 100% { transform: none; }
    50% { transform: scale3d(1.1, 1.1, 1); }
}

@keyframes fill {
    100% { box-shadow: inset 0px 0px 0px 30px transparent; }
}

/* Responsive */
@media(max-width: 600px) {
    .success-card { padding: 40px 20px; }
    .success-title { font-size: 1.8rem; letter-spacing: 2px; }
    .order-number { font-size: 2rem; }
    .action-buttons { 
        flex-direction: column; 
        align-items: center;
        gap: 15px;
    }
    .btn-luxury-success { 
        width: 100%;
        min-width: 0;
    }
}