/* ==========================================================================
   RFQ PAGE STYLES
   Matches premium reference design
   ========================================================================== */

.ms-rfq-page {
    background-color: #F8F6F1;
    padding-bottom: 80px;
}

/* Enforce 1400px Container */
.ms-rfq-page .ms-container {
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Hero Section */
.ms-rfq-hero {
    position: relative;
    padding: 140px 2rem 64px 2rem;
}
.ms-rfq-hero-bg {
    position: absolute;
    top: -20px; right: 0; 
    width: 50%;
    height: 700px;
    background: url('../images/ship-globe-bg.png') no-repeat right top / contain;
    opacity: 1;
    mix-blend-mode: normal;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%), linear-gradient(to bottom, black 20%, transparent 60%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent, black 20%), linear-gradient(to bottom, black 20%, transparent 60%);
    mask-composite: intersect;
}
.ms-rfq-hero .ms-container {
    position: relative;
    z-index: 1;
}

/* Breadcrumbs (Custom) */
.ms-single-breadcrumbs {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #6b7280;
    margin-bottom: 24px;
}
.ms-breadcrumb-link {
    color: #6b7280;
    text-decoration: none;
    text-transform: uppercase;
}
.ms-breadcrumb-link:first-child {
    color: #C7A24B;
}

.ms-rfq-title {
    font-size: 56px;
    font-family: 'Playfair Display', serif;
    color: #102A1D;
    margin: 0 0 16px;
    font-weight: 600;
}
.ms-rfq-subtitle {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    max-width: 500px;
    margin: 0;
}

/* Layout */
.ms-rfq-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}
.ms-rfq-main-col {
    flex: 1;
    min-width: 0;
	margin-bottom: 45px;
}
.ms-rfq-sidebar-col {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Product Card (Dark) */
.ms-rfq-product-card {
    background: #523C1B;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 20px 40px rgba(82, 60, 27, 0.2);
    position: relative;
}
.ms-rfq-product-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    background-size: cover;
    background-position: left center;
    z-index: 1;
}
.ms-rfq-product-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(82,60,27,0) 0%, rgba(82,60,27,0.85) 45%, rgba(82,60,27,1) 65%);
}
.ms-rfq-product-details-col {
    flex: 1;
    padding: 24px 32px;
    color: #fff;
    position: relative;
    z-index: 2;
    margin-left: 35%;
}
.ms-rfq-badge {
    display: inline-block;
    background: #ce9847;
    color: #102A1D;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.ms-rfq-product-header h2 {
    font-size: 32px;
    font-family: 'Outfit', system-ui, sans-serif;
    color: #fff;
    margin: 0 0 8px 0;
    font-weight: 500;
}
.ms-rfq-product-sub {
    font-size: 14px;
    color: #e5e7eb;
    margin: 0 0 16px 0;
    font-weight: 400;
}
.ms-rfq-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(206, 152, 71, 0.25);
    margin-bottom: 16px;
    margin-top: 12px;
    gap: 0 !important;
}
.ms-rfq-spec {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    margin: 0 !important;
    border-bottom: 1px solid rgba(206, 152, 71, 0.25);
}
.ms-rfq-spec:nth-child(odd) {
    border-right: 1px solid rgba(206, 152, 71, 0.25);
    padding-left: 0;
    padding-right: 20px;
}
.ms-rfq-spec:nth-child(even) {
    padding-right: 0;
    padding-left: 20px;
}
.ms-rfq-spec.ms-full {
    grid-column: 1 / 2;
}
.ms-rfq-spec-icon {
    color: #ce9847;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ms-rfq-spec-icon svg {
    stroke: #ce9847;
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}
.ms-rfq-spec-text {
    display: flex;
    flex-direction: column;
}
.ms-rfq-spec-label {
    font-size: 13px;
    color: #ce9847;
    margin-bottom: 4px;
    font-weight: 500;
}
.ms-rfq-spec-value {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
}
.ms-rfq-product-desc {
    font-size: 14px;
    color: #e5e7eb;
    line-height: 1.6;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
}

/* Form Container */
.ms-rfq-form-container {
    background: #F8F6F1;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgb(69 64 64 / 10%);
}
.ms-rfq-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin: 40px 0;
}
.ms-rfq-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 30px 0px;
	
}
.ms-rfq-section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C7A24B;
}
.ms-rfq-section-header h3 {
    font-size: 20px;
    color: #102A1D;
    margin: 0;
    font-weight: 600;
}

/* Form Grid */
.ms-rfq-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px; /* Increased vertical gap */
}
.ms-rfq-inquiry-grid {
    grid-template-columns: 1fr 1fr;
}
.ms-form-group.ms-full-width {
    grid-column: 1 / -1;
}
.ms-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #102A1D;
    margin-bottom: 8px;
}
.ms-form-group label span {
    color: #C7A24B;
}
.ms-input-icon-wrapper,
.ms-textarea-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px; /* More rounded */
    transition: border-color 0.3s;
}
.ms-input-icon-wrapper:focus-within,
.ms-textarea-wrapper:focus-within {
    border-color: #102A1D;
}
.ms-input-icon-wrapper svg {
    position: absolute;
    left: 16px;
    color: #9ca3af;
    width: 20px;
    height: 20px;
    pointer-events: none;
}
.ms-input-icon-wrapper input,
.ms-input-icon-wrapper select,
.ms-textarea-wrapper textarea {
    width: 100%;
    border: none;
    background: transparent;
    padding: 14px 16px 14px 48px;
    font-size: 14px;
    color: #102A1D;
    font-family: inherit;
}
.ms-input-icon-wrapper input:focus,
.ms-input-icon-wrapper select:focus,
.ms-textarea-wrapper textarea:focus {
    outline: none;
}
.ms-input-icon-wrapper input::placeholder,
.ms-textarea-wrapper textarea::placeholder {
    color: #9ca3af;
}

/* Select specific */
.ms-select-wrapper {
    position: relative;
}
.ms-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.ms-select-wrapper svg.icon-right {
    left: auto;
    right: 16px;
}

/* Readonly Input */
.ms-readonly-input {
    background-color: #f9fafb;
}
.ms-readonly-input input {
    color: #4b5563;
    cursor: default;
}
.ms-readonly-input svg.icon-right {
    left: auto;
    right: 16px;
    color: #C7A24B;
}

/* Textarea */
.ms-textarea-wrapper {
    align-items: flex-start;
}
.ms-textarea-wrapper svg.textarea-icon {
    position: absolute;
    left: 16px;
    top: 16px;
    color: #9ca3af;
    width: 20px;
    height: 20px;
    pointer-events: none;
}

/* Dynamic Add More Products Section */
.ms-add-products-wrapper {
    margin-bottom: 40px;
}
.ms-add-products-header {
    margin-bottom: 24px;
}
.ms-add-products-title {
    font-size: 28px;
    font-weight: 700;
    color: #102A1D;
    margin: 0 0 4px 0;
}
.ms-add-products-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

/* Category Block / Card */
.ms-category-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    margin-bottom: 40px;
}
.ms-category-card:last-child {
    margin-bottom: 0;
}

/* Top Section Layout (Category/Product Search & Selected Category) */
.ms-cat-top-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 16px;
}
.ms-cat-search-col {
    width: 65%;
}
.ms-cat-selected-col {
    width: 35%;
}

/* Bottom Section Layout (Checkboxes & Selected Products Table) */
.ms-cat-bottom-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
}
.ms-prod-checkbox-col {
    width: 35%;
    display: flex;
    flex-direction: column;
}
.ms-prod-table-col {
    width: 65%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .ms-cat-top-section,
    .ms-cat-bottom-section {
        flex-direction: column;
        gap: 20px;
    }
    .ms-cat-search-col,
    .ms-cat-selected-col,
    .ms-prod-checkbox-col,
    .ms-prod-table-col {
        width: 100%;
    }
}

.ms-card-divider {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #e5e7eb;
    display: flex;
    justify-content: center;
}
.ms-add-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #ffffff;
    border: 1px solid #16a34a;
    border-radius: 8px;
    color: #166534;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.ms-add-cat-btn:hover {
    background: #f0fdf4;
}

/* Custom Dropdown */
.ms-custom-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    height: 56px;
    background: #ffffff;
    padding: 0 16px;
    transition: border-color 0.3s;
}
.ms-custom-dropdown.active {
    border-color: #102A1D;
}
.ms-custom-dropdown .search-icon {
    color: #9ca3af;
    margin-right: 12px;
    flex-shrink: 0;
}
.ms-custom-dropdown input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    color: #111827;
    height: 100%;
    outline: none;
}
.ms-custom-dropdown .arrow-icon {
    color: #9ca3af;
    margin-left: 12px;
    cursor: pointer;
    flex-shrink: 0;
}
.ms-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    display: none;
}
.ms-custom-dropdown.active .ms-dropdown-menu {
    display: block;
}
.ms-dropdown-item {
    padding: 12px 16px;
    font-size: 15px;
    color: #111827;
    cursor: pointer;
    transition: background 0.2s;
}
.ms-dropdown-item:hover {
    background: #f9fafb;
}

/* Products List */
.ms-product-group {
    margin-top: 24px;
    transition: opacity 0.3s;
}
.ms-product-checkbox-list {
    margin-top: 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    max-height: 220px;
    overflow-y: auto;
    background: #ffffff;
    flex: 1;
}
.ms-product-checkbox-list:empty {
    border: none;
}
.ms-prod-checkbox-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px !important;
    height: 50px !important;
    padding: 0 16px !important;
    border-bottom: 1px solid #e5e7eb !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    margin: 0 !important;
    border-radius: 0 !important;
}
.ms-prod-checkbox-row:last-child {
    border-bottom: none;
}
.ms-prod-checkbox-row:hover {
    background: #f0fdf4;
}
.ms-checkbox.selected {
    /* No background change */
}
.ms-checkbox {
    position: relative !important;
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}
.ms-checkbox input {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}
.ms-checkbox-box {
    position: absolute;
    inset: 0;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.ms-checkbox-box svg {
    opacity: 0;
}
.ms-checkbox input:checked + .ms-checkbox-box {
    background: #16a34a;
    border-color: #16a34a;
}
.ms-checkbox input:checked + .ms-checkbox-box svg {
    opacity: 1;
}
.ms-prod-name {
    font-size: 15px !important;
    color: #374151 !important;
    font-weight: 500 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-transform: none !important;
}

/* Selected Category Card */
.ms-selected-cat-card {
    background: #c39c4a1c;
    border: 1px solid #c39c4a;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
}
.ms-cat-card-label {
    font-size: 12px;
    color: #c39c4a;
    font-weight: 600;
    margin-bottom: 4px;
}
.ms-cat-card-value {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-weight: 700;
    font-size: 16px;
}
.ms-cat-card-value svg {
    color: #c39c4a;
}

/* Selected Products Table */
.ms-selected-products-table {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
    max-height: 220px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ms-table-header {
    background: #f9fafb;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}
.ms-table-labels {
    display: flex;
    padding: 12px 16px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    flex-shrink: 0;
}
.ms-table-labels .label-name { flex: 1; }
.ms-table-labels .label-qty { width: 140px; }

.ms-table-rows {
    background: #ffffff;
    flex: 1;
    overflow-y: auto;
}
.ms-table-row {
    display: flex;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #f3f4f6;
}
.ms-table-row:last-child {
    border-bottom: none;
}
.ms-row-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}
.ms-row-qty {
    width: 110px;
}
.ms-qty-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    height: 40px;
    width: 90px;
    overflow: hidden;
}
.ms-qty-input-wrapper input {
    flex: 1;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0 10px;
    font-size: 14px;
    outline: none;
    text-align: center;
}
.ms-qty-unit {
    background: #f3f4f6;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    border-left: 1px solid #d1d5db;
}
.ms-row-delete {
    width: 30px;
    display: flex;
    justify-content: flex-end;
}
.ms-delete-btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}
.ms-delete-btn:hover {
    opacity: 0.7;
}

/* Card Divider inside card */
.ms-card-divider {
    position: relative;
    margin-top: 20px;
    text-align: center;
}
.ms-card-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px dashed #d1d5db;
    z-index: 1;
}
.ms-add-cat-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 32px;
    background: #ffffff;
    border: 1px solid #c39c4a;
    color: #c39c4a;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.ms-add-cat-btn:hover {
    background: #c39c4a1c;
}

/* File Dropzone */
.ms-file-dropzone {
    border: 1px dashed #e5e7eb;
    border-radius: 8px;
    background: #fafafa;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
    position: relative;
}
.ms-file-dropzone:hover,
.ms-file-dropzone.dragover {
    border-color: #C7A24B;
    background: #fffdf5;
}
.ms-drop-text {
    font-size: 14px;
    color: #4b5563;
}
.ms-browse-link {
    color: #C7A24B;
    font-weight: 600;
}
.ms-file-hint {
    font-size: 12px;
    color: #9ca3af;
}
.ms-hidden-input {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
}
.ms-file-preview {
    font-size: 14px;
    color: #102A1D;
    font-weight: 600;
    display: none;
}

/* Submit Button & Secure Note */
.ms-rfq-submit-btn {
    width: 100%;
    background: #ce9847;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    transition: background 0.3s, transform 0.3s;
}
.ms-rfq-submit-btn:hover {
    background: #b5853e;
    transform: translateY(-2px);
}
.ms-rfq-submit-btn svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}
.ms-rfq-secure-note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
    color: #6b7280;
}
.ms-rfq-secure-note svg {
    width: 14px;
    height: 14px;
    color: #C7A24B;
}

/* Sidebar Widgets */
.ms-rfq-sidebar-widget {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.ms-widget-title {
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    color: #102A1D;
    margin: 0 0 24px 0;
    font-weight: 600;
}
.ms-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ms-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.ms-why-icon {
    width: 40px;
    height: 40px;
    background: #ce9847;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}
.ms-why-icon svg {
    width: 20px;
    height: 20px;
}
.ms-why-text {
    display: flex;
    flex-direction: column;
}
.ms-why-text strong {
    font-size: 14px;
    color: #102A1D;
    margin-bottom: 4px;
}
.ms-why-text span {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

.ms-help-widget {
    background: #ce9847;
    color: #fff;
    padding: 32px 24px;
}
.ms-help-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.ms-help-header svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.ms-help-text strong {
    display: block;
    font-size: 16px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 6px;
    color: #fff;
}
.ms-help-text span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}
.ms-help-btn {
    display: block;
    text-align: center;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.3s, color 0.3s;
}
.ms-help-btn:hover {
    background: #ffffff;
    color: #ce9847;
}

/* Footer Features */
.ms-rfq-footer-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 140px; /* Increased gap */
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    overflow: hidden;
    width: 100%;
}
.ms-rfq-footer-card {
    padding: 32px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-right: 1px solid rgba(0,0,0,0.05);
}
.ms-rfq-footer-card:last-child {
    border-right: none;
}
.ms-footer-icon {
    width: 48px;
    height: 48px;
    background: #ce9847;
    color: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ms-footer-icon svg {
    width: 24px;
    height: 24px;
}
.ms-footer-text h4 {
    font-size: 14px;
    color: #102A1D;
    margin: 0 0 4px 0;
    font-weight: 700;
}
.ms-footer-text p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .ms-rfq-layout {
        flex-direction: column;
    }
    .ms-rfq-sidebar-col {
        width: 100%;
        flex-direction: row;
    }
    .ms-why-widget, .ms-help-widget {
        flex: 1;
    }
    .ms-rfq-footer-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .ms-rfq-footer-card:nth-child(2) {
        border-right: none;
    }
    .ms-rfq-footer-card:nth-child(1),
    .ms-rfq-footer-card:nth-child(2) {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
}
@media (max-width: 768px) {
    .ms-rfq-product-card {
        flex-direction: column;
    }
	.ms-rfq-product-details-col{
		margin-left: 0% !important;
	}
    .ms-rfq-product-img-col {
        width: 100%;
        height: 250px;
    }
    .ms-rfq-product-grid {
        grid-template-columns: 1fr;
    }
    .ms-rfq-form-grid {
        grid-template-columns: 1fr;
    }
    .ms-rfq-inquiry-grid {
        grid-template-columns: 1fr;
    }
    .ms-rfq-sidebar-col {
        flex-direction: column;
    }
	.ms-rfq-form-container {
    background: #F8F6F1;
		margin-top: 30px !important;
	}
	.ms-rfq-hero {
		padding: 140px 1rem 64px 1rem !important;
	}
}
@media (max-width: 575px) {
    .ms-rfq-footer-features {
        grid-template-columns: 1fr;
    }
}
