/* Basic layout */
.amit-rfq-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px 25px;
    background: #f9fafb;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.amit-rfq-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
}

.amit-rfq-intro {
    text-align: center;
    margin-bottom: 24px;
    color: #4a5568;
}

/* Steps */
.amit-rfq-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 24px;
}

.step-indicator {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #cbd5e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #a0aec0;
}

.step-indicator.active {
    border-color: #3182ce;
    background: #3182ce;
    color: #fff;
}

/* Labels & fields */
.amit-rfq-label {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #4a5568;
    margin-bottom: 8px;
    display: block;
}

#amit-rfq-form select,
#amit-rfq-form input[type="text"],
#amit-rfq-form input[type="email"],
#amit-rfq-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #cbd5e0;
    font-size: 14px;
    box-sizing: border-box;
}

/* Product cards */
.amit-rfq-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(160px,1fr));
    gap: 16px;
    margin-top: 16px;
}

.amit-rfq-product-card {
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 12px;
    cursor: pointer;
    text-align: center;
    transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}

.amit-rfq-product-card.selected,
.amit-rfq-product-card:hover {
    border-color: #3182ce;
    box-shadow: 0 12px 25px rgba(49,130,206,0.15);
    transform: translateY(-2px);
}

.amit-rfq-product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.amit-rfq-product-label {
    margin-top: 8px;
    font-size: 14px;
}

/* Pills */
.amit-rfq-pill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
    gap: 12px;
    margin-top: 10px;
}

.amit-rfq-pill {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid #cbd5e0;
    background: #fff;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.amit-rfq-pill.selected,
.amit-rfq-pill:hover {
    background: #3182ce;
    border-color: #3182ce;
    color: #fff;
}

/* Field grid */
.amit-rfq-field-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 16px;
    margin-top: 10px;
}

.amit-rfq-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
}

/* Nav buttons */
.amit-rfq-nav {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.amit-rfq-nav button,
.amit-rfq-submit {
    border-radius: 999px;
    padding: 10px 22px;
    border: none;
    background: #1a365d;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
}

.amit-rfq-nav .amit-rfq-prev {
    background: #e2e8f0;
    color: #1a202c;
}

.amit-rfq-nav button:hover,
.amit-rfq-submit:hover {
    background: #2b6cb0;
}

/* Status */
.amit-rfq-status {
    margin-top: 15px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
}

.amit-rfq-status.error {
    background: #fed7d7;
    color: #742a2a;
}

.amit-rfq-status.success {
    background: #c6f6d5;
    color: #22543d;
}

/* Thank you */
.amit-rfq-thankyou {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px 30px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.amit-rfq-thankyou-message {
    margin-top: 15px;
    font-size: 16px;
    color: #4a5568;
}
