/* Thank You Page Styles */
.thank-you-page {
    min-height: 100vh;
    background: var(--color-secondary);
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* Logo */
.thank-you-logo {
    margin-bottom: 2rem;
    animation: fadeInScale 0.8s ease-out;
}

/* .thank-you-logo svg {
    width: 450px;
    height: 450px;
    color: var(--color-primary);
} */

@media (min-width: 768px) {
    .thank-you-logo svg {
        width: 100px;
        height: 50px;
    }
}

/* Heading */
.thank-you-heading {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@media (min-width: 768px) {
    .thank-you-heading {
        font-size: 3.5rem;
    }
}

/* Order Info Card */
.order-info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    /* box-shadow: 0 4px 20px rgba(90, 54, 54, 0.1); */
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.order-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-primary);
    color: #333;
    margin-bottom: 1.5rem;
}

.order-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fff5f7;
    border-radius: 12px;
}

.order-number-label {
    font-size: 0.9rem;
    font-family: var(--font-primary);
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-number-value {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--color-primary);
}

/* Order Details */
.order-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 12px;
}

.order-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

.order-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    font-size: 0.95rem;
    font-family: var(--font-primary);
    color: #666;
    font-weight: 500;
}

.detail-value {
    font-size: 0.95rem;
    font-family: var(--font-primary);
    color: #333;
    font-weight: 600;
    text-align: right;
}

.order-confirmation-text {
    font-size: 0.95rem;
    font-family: var(--font-primary);
    color: #666;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

/* Important Information Section */
.important-info-section {
    margin-top: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--color-secondary);
    border-radius: 50%;
    color: var(--color-primary);
}

.info-icon svg {
    width: 32px;
    height: 32px;
}

.info-text {
    font-size: 0.9rem;
    font-family: var(--font-primary);
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 480px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-icon {
        width: 56px;
        height: 56px;
    }
    
    .info-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Social Media Section */
.social-media-section {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.social-title {
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-primary);
    color: #333;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    color: var(--color-primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(90, 54, 54, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(90, 54, 54, 0.2);
    background: var(--color-primary);
    color: white;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Back to Shop Button */
.back-to-shop {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.back-to-shop-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--color-primary);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(90, 54, 54, 0.3);
}

.back-to-shop-btn:hover {
    background: #4a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 54, 54, 0.4);
    color: white;
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .thank-you-page {
        padding: 1rem 0.75rem;
    }

    .thank-you-heading {
        font-size: 2rem;
    }

    .order-info-card {
        padding: 1.5rem;
    }

    .order-number-value {
        font-size: 1.5rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .back-to-shop-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}
