/* Track Order Form */
.track_order {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.track_order .form-row {
    margin-bottom: 15px;
}

.track_order .input-text {
    width: 100%;
    height: 45px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.track_order .button {
    width: 100%;
    height: 48px;
    background: #000;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
}

.track_order .button:hover {
    background: #333;
}

/* Main container */
.yaarique-tracking {
    max-width: 900px;
    margin: auto;
    padding: 10px;
}

/* Order summary */
.yaarique-tracking .woocommerce-notice {
    background: #f6fef9;
    border-left: 4px solid #28a745;
    padding: 16px 18px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Status badge */
.yaarique-tracking .order-status {
    padding: 6px 12px;
    background: #000;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Tracking box */
.yaarique-tracking .tracking-info,
.yaarique-tracking .ast-tracking-number {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Table */
.yaarique-tracking table.shop_table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    border: none;
}

.yaarique-tracking table.shop_table th {
    background: #f8f8f8;
    font-weight: 600;
    font-size: 14px;
}

.yaarique-tracking table.shop_table td,
.yaarique-tracking table.shop_table th {
    padding: 14px;
    border-bottom: 1px solid #eee;
}

.yaarique-tracking table.shop_table tr:last-child td {
    border-bottom: none;
}

/* Buttons */
.yaarique-tracking .button {
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.yaarique-tracking .button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Headings */
.yaarique-tracking h2 {
    font-size: 26px;
    font-weight: 600;
    margin-top: 30px;
}

.yaarique-tracking h3 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
}

/* Customer details */
.yaarique-tracking .woocommerce-customer-details {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* Error message */
.yaarique-error {
    max-width: 600px;
    margin: 20px auto;
    padding: 14px 16px;
    border-radius: 10px;
    background: #fff5f5;
    border-left: 4px solid #e53935;
    color: #d32f2f;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.yaarique-error::before {
    content: "❌ ";
}