.mt-shuttle-wrap {
    max-width: 760px;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    font-family: inherit;
    background: #fff;
} 
.mt-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}
.mt-title {
    margin: 0;
    color: #6b4f2d;
    font-size: 1.5rem;
}
.mt-sub {
    color: #6b4f2d;
    font-weight: 600;
}
.mt-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mt-form input[type="text"],
.mt-form input[type="email"],
.mt-form select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}
.mt-row {
    display: flex;
    gap: 10px;
}
.mt-price {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 700;
}
.mt-desc {
    color: #666;
    margin-bottom: 12px;
}
.mt-button {
    background: #6b4f2d;
    color: #d4af37;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    width: 100%;
    font-size: 1rem;
}
.mt-response {
    margin-top: 12px;
    font-size: 0.95rem;
}
.mt-success {
    background: #e6ffed;
    border: 1px solid #b7f0c9;
    padding: 10px;
    border-radius: 6px;
}
.mt-error {
    background: #ffe6e6;
    border: 1px solid #f0b7b7;
    padding: 10px;
    border-radius: 6px;
}
.mt-suggestions {
    position: relative;
    z-index: 9999;
    max-height: 200px;
    overflow-y: auto;
}
.mt-sug-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px;
    cursor: pointer;
    font-size: 0.95rem;
}
.mt-sug-item:hover {
    background: #f7f7f7;
}

/* MOBILE STYLING */
@media (max-width: 600px) {
    .mt-row {
        flex-direction: column !important;
    }
    .mt-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .mt-title {
        font-size: 1.3rem;
    }
    .mt-sub {
        font-size: 1rem;
    }
    .mt-button {
        padding: 12px;
        font-size: 1rem;
    }
    .mt-form {
        gap: 10px;
    }
}
