/* Merchandise Tracking Page Styles */
.track-order-section {
    padding: 50px 0 100px;
    min-height: 70vh;
    background: radial-gradient(circle at top right, rgba(21, 156, 51, 0.05), transparent),
                radial-gradient(circle at bottom left, rgba(107, 60, 146, 0.05), transparent);
}

.track-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.track-card-header {
    background: linear-gradient(135deg, #159C33 0%, #0d6d24 100%);
    padding: 40px;
    text-align: center;
    color: #ffffff;
}

.track-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.track-body {
    padding: 40px;
}

.form-floating-custom {
    position: relative;
    margin-bottom: 25px;
}

.form-floating-custom label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 8px;
    margin-left: 4px;
}

.form-control-premium {
    width: 100%;
    height: 55px;
    border-radius: 12px;
    background: #f8fafc;
    border: 2px solid transparent;
    padding: 0 20px;
    font-weight: 500;
    color: #2d3748;
    transition: all 0.3s ease;
}

.form-control-premium:focus {
    background: #ffffff;
    border-color: #159C33;
    box-shadow: 0 10px 20px rgba(21, 156, 51, 0.1);
    outline: none;
}

.btn-track {
    height: 55px;
    border-radius: 12px;
    background: linear-gradient(135deg, #159C33 0%, #0d6d24 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    border: none;
    box-shadow: 0 10px 20px rgba(21, 156, 51, 0.2);
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.btn-track:hover {
    box-shadow: 0 15px 30px rgba(21, 156, 51, 0.3);
    color: #ffffff;
}

.btn-back-light {
    height: 55px;
    border-radius: 12px;
    background: transparent;
    color: #718096;
    font-weight: 600;
    border: 2px solid #edf2f7;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.btn-back-light:hover {
    background: #f8fafc;
    color: #2d3748;
    border-color: #cbd5e0;
}

.alert-premium {
    background: #fff5f5;
    border-left: 4px solid #f56565;
    color: #c53030;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.alert-premium i {
    font-size: 18px;
    margin-right: 12px;
}

/* Responsive fixes */
@media (max-width: 576px) {
    .track-card-header {
        padding: 30px 20px;
    }
    .track-body {
        padding: 30px 20px;
    }
}
