.elementor-9620 .elementor-element.elementor-element-1388eb11{--display:flex;}.elementor-widget-text-editor{color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-494725ac *//* =========================================
   PAGE HEADER STYLING
   ========================================= */
.form-page-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  border: 1px solid #f2f2f2;
  font-family: 'Inter', system-ui, sans-serif;
}

.form-page-header h1 {
  font-size: 32px;
  color: #111;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.form-page-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 400;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .form-page-header {
    padding: 30px 15px;
    margin-bottom: 30px;
  }
  .form-page-header h1 {
    font-size: 26px;
  }
  .form-page-header p {
    font-size: 15px;
  }
}
/* Hide CF7 default success messages */
.wpcf7 form.sent .wpcf7-response-output { display: none !important; }

/* 1. PRODUCT GRID */
.quote-wrapper { margin-bottom: 50px; font-family: 'Inter', system-ui, sans-serif; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-top: 25px; }
.product-card { background: #ffffff; border: 1px solid #f0f0f0; border-radius: 16px; padding: 20px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.03); transition: all 0.3s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(0,0,0,0.08); border-color: #e0e0e0; }
.product-card img { width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; margin-bottom: 15px; }
.product-card h4 { margin: 0 0 15px 0; font-size: 18px; color: #222; font-weight: 600; }

.qty-section { display: block; margin-top: 10px; margin-bottom: 15px; padding-top: 0; text-align: left; }
.qty-section label { font-size: 13px; color: #666; font-weight: 600; margin-bottom: 8px; display: block; text-transform: uppercase; letter-spacing: 0.5px; }
.qty-dropdown { width: 100%; padding: 10px; border-radius: 8px; border: 1px solid #ccc; background-color: #fff; }
.qty-dropdown option[value="Not Selected"], .qty-dropdown option[value="0"] { display: none; }

.add-quote-btn { display: none; background-color: #f1f3f5; color: #333; border: 1px solid #e0e0e0; padding: 12px 20px; border-radius: 8px; cursor: pointer; font-weight: 600; width: 100%; transition: all 0.3s ease; }
.add-quote-btn.selected { background-color: #28a745; color: #fff; border-color: #28a745; }

/* 2. BUSINESS INFO */
.business-info-section { background: #ffffff; padding: 50px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); font-family: 'Inter', system-ui, sans-serif; max-width: 900px; margin: 0 auto; border: 1px solid #f2f2f2; }
.business-info-section h2 { font-size: 28px; color: #111; margin-top: 0; margin-bottom: 35px; font-weight: 800; text-align: center; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px 35px; margin-bottom: 35px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; color: #444; margin-bottom: 10px; }
.form-group input { width: 100%; padding: 16px 20px; border: 2px solid #eef0f3; border-radius: 12px; font-size: 15px; color: #222; background-color: #fcfcfd; box-sizing: border-box; outline: none; transition: all 0.3s ease; }
.form-group input:focus { border-color: #fa5c51; background-color: #ffffff; box-shadow: 0 0 0 4px rgba(250, 92, 81, 0.1); }

.submit-quote-btn { background: linear-gradient(135deg, #fa5c51 0%, #e64a3f 100%); color: #ffffff; padding: 18px 30px; border: none; border-radius: 50px; font-size: 17px; font-weight: 700; cursor: pointer; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); display: block; width: 100%; box-shadow: 0 6px 20px rgba(250, 92, 81, 0.3); }
.submit-quote-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(250, 92, 81, 0.4); }

/* 3. MODALS (Popups) */
.custom-modal { display: none; position: fixed; z-index: 99999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.custom-modal.show-modal { display: flex; opacity: 1; }
.custom-modal-content { background-color: #ffffff; padding: 40px; border-radius: 24px; text-align: center; max-width: 450px; width: 90%; box-shadow: 0 20px 50px rgba(0,0,0,0.15); transform: translateY(20px); transition: transform 0.3s ease; max-height: 90vh; overflow-y: auto; }
.custom-modal.show-modal .custom-modal-content { transform: translateY(0); }

.success-icon { background-color: #28a745; color: white; width: 60px; height: 60px; line-height: 60px; border-radius: 50%; font-size: 30px; margin: 0 auto 20px auto; }
.custom-modal-content h3 { font-family: 'Inter', system-ui, sans-serif; font-size: 24px; color: #111; margin-top: 0; margin-bottom: 15px; font-weight: 800; }
.custom-modal-content p { font-family: 'Inter', system-ui, sans-serif; font-size: 16px; color: #555; line-height: 1.6; margin-bottom: 25px; }

.close-modal-btn { background: #f1f3f5; color: #333; padding: 12px 25px; border: none; border-radius: 50px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; margin: 5px; }
.close-modal-btn:hover { background: #e2e6ea; }

/* 4. SUMMARY MODAL SPECIFICS */
.summary-modal-content { max-width: 600px; text-align: left; }
.summary-modal-content h3 { text-align: center; border-bottom: 2px solid #f0f0f0; padding-bottom: 15px; }
.summary-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
.summary-section { background: #f8f9fa; padding: 20px; border-radius: 12px; border: 1px solid #e9ecef; }
.summary-section h4 { margin-top: 0; margin-bottom: 15px; color: #fa5c51; font-size: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.summary-section p { margin: 0 0 8px 0 !important; font-size: 14px; color: #333; }
.summary-product-list { list-style: none; padding: 0; margin: 0; }
.summary-product-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed #ddd; font-size: 15px; color: #222; font-weight: 500; }
.summary-product-list li:last-child { border-bottom: none; }
.prod-qty { color: #fa5c51; font-weight: 700; }
.modal-actions { display: flex; gap: 15px; justify-content: center; }
.confirm-final-btn { margin: 0; width: auto; padding: 12px 25px; }

/* Mobile */
@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .product-card { padding: 12px; }
  .product-card h4 { font-size: 14px; margin-bottom: 10px; }
  .business-info-section { padding: 30px 20px; border-radius: 16px; }
  .form-grid { grid-template-columns: 1fr; gap: 20px; }
  .modal-actions { flex-direction: column; }
  .confirm-final-btn, .close-modal-btn { width: 100%; margin: 5px 0; }
}

/* =========================================
   CATEGORY ACCORDION (DROPDOWNS)
   ========================================= */
.accordion-header {
  background-color: #f8f9fa;
  border: 2px solid #eef0f3;
  border-radius: 12px;
  padding: 18px 25px;
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  color: #111;
  font-weight: 700;
  transition: all 0.3s ease;
  user-select: none;
}

.accordion-header:hover {
  background-color: #ffffff;
  border-color: #fa5c51;
  box-shadow: 0 4px 15px rgba(250, 92, 81, 0.08);
}

.accordion-icon {
  font-size: 16px;
  color: #fa5c51;
  transition: transform 0.3s ease;
}

/* Hide the grid by default */
.accordion-content {
  display: none; 
  padding-top: 25px; /* Adds space between the header and the cards when open */
}

/* When the active class is added via JS, show the grid */
.accordion-content.show-category {
  display: grid;
  animation: slideDown 0.4s ease forwards;
}

/* Rotate the arrow when open */
.accordion-header.active-header .accordion-icon {
  transform: rotate(180deg);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}/* End custom CSS */