/* ============================================================
   ORDER CONFIRMED STYLES
   ============================================================ */

.m-order-confirmed-page {
    background: #FFF8E7; /* Warm cream */
    min-height: 100vh;
    padding-bottom: 90px; /* Space for bottom nav */
    position: relative;
    overflow-x: hidden;
}

/* DECORATIVE SVGS */
.m-decor {
    position: absolute;
    color: #D4A853;
    pointer-events: none;
    z-index: 0;
}
.paw-top-left {
    width: 32px; height: 32px;
    top: 20px; left: -10px;
    opacity: 0.35;
    transform: rotate(-15deg);
}
.paw-top-right {
    width: 48px; height: 48px;
    top: 40px; right: 20px;
    opacity: 0.2;
    transform: rotate(25deg);
}
.paw-bottom-left {
    width: 40px; height: 40px;
    bottom: 120px; left: 20px;
    opacity: 0.35;
    transform: rotate(-25deg);
}
.leaf-middle-right {
    width: 60px; height: 60px;
    top: 30%; right: -20px;
    opacity: 0.4;
    transform: rotate(-45deg);
}
.leaf-bottom-right {
    width: 80px; height: 80px;
    bottom: 80px; right: -20px;
    opacity: 0.3;
    transform: rotate(15deg);
}

/* CONTENT LAYER */
.m-content-layer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
}

/* CELEBRATION DOG */
.celebration-dog {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%; /* Just to make the placeholder look neat */
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* TYPOGRAPHY */
.confirmed-heading {
    text-align: center;
    margin-top: 24px;
    font-size: 30px;
    font-weight: 900;
    color: #2563EB;
    font-style: italic;
    margin-bottom: 8px;
    line-height: 1.1;
}
.confirmed-subtext {
    text-align: center;
    font-size: 15px;
    color: #6B7280;
    margin: 0;
    padding: 0 24px;
    line-height: 1.4;
}

/* TRACK BUTTON */
.track-btn {
    display: flex;
    width: 85%;
    margin: 32px auto 0;
    height: 54px;
    border-radius: 50px;
    background: #2563EB;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}
.track-btn svg {
    width: 18px;
    height: 18px;
}

/* ORDER DETAILS CARD */
.order-details-card {
    margin: 32px 16px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    width: calc(100% - 32px);
    box-sizing: border-box;
}
.order-details-card .row-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.order-details-card .row-1 .order-num {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
}
.order-details-card .row-1 svg {
    width: 24px;
    height: 24px;
}
.order-details-card .m-divider {
    height: 1px;
    background: #F3F4F6;
    margin: 16px 0;
}
.order-details-card .row-2 {
    display: flex;
    align-items: center;
    gap: 6px;
}
.order-details-card .row-2 .est-label {
    font-size: 14px;
    color: #6B7280;
}
.order-details-card .row-2 .est-date {
    font-size: 14px;
    font-weight: 800;
    color: #111827;
}
