/* Thank You Page */
.woocommerce-order-received .site-header {
    display: none;
}

.lapizza-thankyou {
    min-height: 100vh;
    background: #1E1C1F;
    padding: 20px 16px;
    padding-bottom: 100px;
}

/* Header */
.thankyou-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.thankyou-title {
    font-family: 'Figtree', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.thankyou-back {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-back img {
    width: 28px;
    height: 28px;
}

/* Hero */
.thankyou-hero {
    text-align: center;
    padding: 24px 16px;
    margin-bottom: 8px;
}

.thankyou-check {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
}

.thankyou-check svg {
    width: 64px;
    height: 64px;
}

.thankyou-subtitle {
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.thankyou-desc {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Meta rows */
.thankyou-meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.meta-label {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.meta-value {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-align: right;
}

/* Footer */
.thankyou-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: #1E1C1F;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.thankyou-home-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    background: #4285F4;
    border-radius: 10px;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
}

.thankyou-home-btn:hover {
    background: #3b78e7;
}

/* =========================================
   Desktop
   ========================================= */
@media (min-width: 1024px) {
    .woocommerce-order-received .site-header {
        display: flex;
    }

    .lapizza-thankyou {
        min-height: auto;
        margin: 20px 16px 40px;
        padding: 32px 40px;
        padding-bottom: 32px;
        border-radius: 10px;
    }

    .thankyou-header {
        margin-bottom: 28px;
    }

    .thankyou-title {
        font-size: 28px;
    }

    .thankyou-back img {
        width: 32px;
        height: 32px;
    }

    .thankyou-hero {
        padding: 32px 20px;
        margin-bottom: 16px;
    }

    .thankyou-check,
    .thankyou-check svg {
        width: 80px;
        height: 80px;
    }

    .thankyou-subtitle {
        font-size: 24px;
    }

    .thankyou-desc {
        font-size: 15px;
    }

    .meta-label,
    .meta-value {
        font-size: 15px;
    }

    .thankyou-footer {
        position: static;
        padding: 0;
        margin-top: 24px;
        background: transparent;
        border-top: none;
    }

    .thankyou-home-btn {
        height: 56px;
        border-radius: 12px;
        font-size: 17px;
    }
}
