﻿.mb-64 {
    margin-bottom: 64px;
}
.mb-72 {
    margin-bottom: 72px;
}
.mb-84 {
    margin-bottom: 84px;
}
.mb-124 {
    margin-bottom: 124px;
}
/* Status Section */
.status-section {
    text-align: center;
    margin-bottom: 24px;
    animation: fadeIn 0.4s ease-out;
}

.status-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 4px;
}

.status-reason {
    Color: var(--text-body);
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.text-left{
    text-align:left;
}
.status-timestamp {
    font-size: 13px;
    Color: var(--text-body);
    margin-top: 2px;
}
.bg-primary\/10 {
    background-color: hsl(348.57deg 72.41% 82.94% / 10.2%);
}
.bg-secondary\/10 {
    background-color: hsl(283deg 38% 80% / 10%);
}
.bg-accent\/10 {
    background-color: hsl(175.3deg 50.22% 44.9% / 10.2%);
}
.text-accent {
    color: #39aca3;
}
.text-muted-foreground {
    color: #936c79;
}
.rounded-xl {
    border-radius: 0.75rem;
}
/* Order Info Section */
.order-info {
    text-align: center;
    margin-bottom: 24px;
    animation: fadeIn 0.4s ease-out 0.1s both;
    padding: 1.75rem;
    box-shadow: 0 2px 12px -2px hsl(var(--foreground) / .08);
    border-radius: 1rem;
}

.order-number {
    font-size: 14px;
    color: var(--foreground);
    font-weight: 600;
}

.order-date {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin: 4px 0;
}

.order-type {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* Pickup Banner */
.pickup-banner {
    background: var(--secondary-dark);
    color: #ffffff;
    border-radius: 14px;
    padding: 12px 20px;
    text-align: center;
    margin-bottom: 16px;
    animation: fadeIn 0.4s ease-out 0.15s both;
}
.detailInfo {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}
.pickup-time {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
/* Pickup Details */
.pickup-details {
    text-align: center;
    margin-bottom: 24px;
    animation: fadeIn 0.4s ease-out 0.2s both;
    border-radius: 14px;
    box-shadow: 0 2px 12px -2px hsl(var(--foreground) / .08);
    border-radius: 1rem;
    border: none;
}

.pickup-instruction {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

.pickup-location-label {
    font-size: 14px;
    color: var(--muted-foreground);
}

.pickup-location {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 16px;
    margin-top: 16px;
}

/* Directions Button */
.directions-button {
    width: 100%;
    background: var(--secondary-dark);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 24px;
}

    .directions-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 16px hsla(280, 45%, 60%, 0.4);
    }

.directions-icon {
    width: 18px;
    height: 18px;
}

/* Order Item */
.order-item {
    background: var(--card);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 12px -2px hsla(340, 25%, 25%, 0.08);
    margin-bottom: 24px;
    animation: fadeIn 0.4s ease-out 0.3s both;
}

.item-image {
   /* width: 56px;
    height: 56px;*/
    border-radius: 12px;
    object-fit: cover;
    background: var(--muted);
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
}

.item-pricing {
    text-align: right;
}

.unit-price-label,
.total-label {
    font-size: 12px;
    color: var(--muted-foreground);
}

.unit-price,
.item-total {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

/* Order Summary */
.order-summary {
    animation: fadeIn 0.4s ease-out 0.35s both;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.summary-label {
    font-size: 14px;
    color: var(--muted-foreground);
}

.summary-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
}

.summary-row.total {
    border-top: 1px solid var(--border);
    margin-top: 8px;
    padding-top: 16px;
}

    .summary-row.total .summary-label,
    .summary-row.total .summary-value {
        font-size: 16px;
        font-weight: 700;
        color: var(--primary);
    }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.call-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 16px;
    background: var(--primary-dark);
    color: #ffffff!important;
    text-decoration: none;
    font-weight: 600;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .call-store-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(164, 127, 176, 0.3);
    }

/* Subtle pulse animation */
.call-store-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(164, 127, 176, 0.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(164, 127, 176, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(164, 127, 176, 0);
    }
}

