body.elementor-page-1279:not(.elementor-motion-effects-element-type-background), body.elementor-page-1279 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}:root{--page-title-display:none;}/* Start custom CSS *//* =========================================================
   Woo Product Page Polish (Specs Table + Gallery Spacing)
   Brand: #003F66
   Paste this whole block in ONE place.
   ========================================================= */

/* ---------- SPECIFICATIONS TABLE (Woo attributes) ---------- */
table.shop_attributes,
.woocommerce-product-attributes,
.woocommerce-product-attributes table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin-top: 12px !important;
}

/* Cells: padding, alignment, dividers */
table.shop_attributes th,
table.shop_attributes td,
.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
  padding: 12px 16px !important;
  vertical-align: middle !important; /* uniform center alignment */
  line-height: 1.45 !important;      /* consistent row height */
  border-bottom: 1px solid rgba(0,63,102,0.12) !important; /* subtle brand divider */
}

/* Label (left) column */
table.shop_attributes th,
.woocommerce-product-attributes th {
  width: 32% !important;
  font-weight: 600 !important;
  color: #003F66 !important;
  background: rgba(0,63,102,0.04) !important; /* subtle tint */
  border-right: 1px solid rgba(0,63,102,0.10) !important; /* soft column divider */
}

/* Value (right) column */
table.shop_attributes td,
.woocommerce-product-attributes td {
  color: #333 !important;
  font-style: normal !important;     /* remove Woo italics */
  padding-left: 22px !important;     /* bump values away from divider */
}

/* Remove last row bottom border */
table.shop_attributes tr:last-child th,
table.shop_attributes tr:last-child td,
.woocommerce-product-attributes tr:last-child th,
.woocommerce-product-attributes tr:last-child td {
  border-bottom: none !important;
}

/* Mobile tweaks */
@media (max-width: 767px) {
  table.shop_attributes th,
  .woocommerce-product-attributes th {
    width: 45% !important;
  }

  table.shop_attributes th,
  table.shop_attributes td,
  .woocommerce-product-attributes th,
  .woocommerce-product-attributes td {
    padding: 10px 12px !important;
  }

  table.shop_attributes td,
  .woocommerce-product-attributes td {
    padding-left: 18px !important;
  }
}

/* ---------- PRODUCT GALLERY SPACING ---------- */
/* Space between main image and thumbnails */
.woocommerce-product-gallery {
  padding-bottom: 16px;
}

/* Push thumbnails down a bit */
.woocommerce-product-gallery .flex-control-thumbs {
  margin-top: 14px !important;
}

/* Optional: add a touch of vertical spacing for each thumb row */
.woocommerce-product-gallery .flex-control-thumbs li {
  margin-top: 8px !important;
}/* =========================================================
   BIGCOMMERCE "REQUEST A QUOTE" PRODUCT PAGE
   Elementor page-specific styling to match global.css
   ---------------------------------------------------------
   HOW TO USE:
   1. In Elementor, add an HTML widget (or Shortcode widget)
      containing: [bigcommerce_product id="112"]
   2. On the SECTION/CONTAINER wrapping that widget, set
      CSS Classes:  bc-quote-page
      (Advanced > CSS Classes)
   3. Paste this whole file into:
      Page Settings > Advanced > Custom CSS
      OR a global stylesheet. Everything is scoped to
      .bc-quote-page so it will not leak to other pages.
   4. Save the page as an Elementor Template to reuse.

   Palette pulled from global.css:
     tonal blue text   #0f3f91
     tonal blue bg     #dbeafe / hover #bfdbfe
     title ink         #111827
     body ink          #374151
     card border       #c3d5fa
     card gradient     #f8fbff to #eef4ff
   ========================================================= */

/* ---------- LAYOUT WRAPPER ---------- */
.bc-quote-page .bc-product-single,
.bc-quote-page .bc-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  background: transparent;
}

@media (max-width: 900px) {
  .bc-quote-page .bc-product-single,
  .bc-quote-page .bc-product {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ---------- GALLERY / IMAGE PANEL ---------- */
.bc-quote-page .bc-product-single__gallery,
.bc-quote-page .bc-product__gallery,
.bc-quote-page .bc-product-gallery {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border: 1px solid #c3d5fa;
  border-radius: 18px;
  padding: 24px;
  box-sizing: border-box;
  box-shadow:
    0 6px 16px rgba(15, 23, 42, 0.07),
    0 12px 28px rgba(30, 64, 175, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.bc-quote-page .bc-product-gallery__image img,
.bc-quote-page .bc-product-single__image img,
.bc-quote-page .bc-product-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(15, 23, 42, 0.10));
}

/* gallery thumbnails */
.bc-quote-page .bc-product-gallery__thumbs,
.bc-quote-page .bc-product-gallery__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.bc-quote-page .bc-product-gallery__thumb,
.bc-quote-page .bc-product-gallery__nav img {
  border: 1px solid #cfe0ff;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}

.bc-quote-page .bc-product-gallery__thumb:hover,
.bc-quote-page .bc-product-gallery__nav img:hover {
  border-color: #93c5fd;
  transform: translateY(-1px);
}

/* ---------- SUMMARY / DETAILS PANEL ---------- */
.bc-quote-page .bc-product-single__meta,
.bc-quote-page .bc-product__meta,
.bc-quote-page .bc-product-single__summary {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  padding: 28px;
  box-sizing: border-box;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

/* ---------- TITLE ---------- */
.bc-quote-page .bc-product-single__title,
.bc-quote-page .bc-product__title,
.bc-quote-page h1.bc-product-single__title {
  margin: 0 0 14px 0;
  color: #111827;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.bc-quote-page .bc-product-single__title sup {
  font-size: 0.55em;
  vertical-align: super;
  line-height: 0;
}

/* ---------- BRAND / SKU / CONDITION META ---------- */
.bc-quote-page .bc-product-single__brand,
.bc-quote-page .bc-product__brand,
.bc-quote-page .bc-product-single__sku,
.bc-quote-page .bc-product-single__condition {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  margin: 0 6px 10px 0;
  border-radius: 7px;
  border: 1px solid #d6d9df;
  background: #f3f4f6;
  color: #374151;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1px;
}

/* ---------- PRICE (hidden style fallback for quote products) ---------- */
.bc-quote-page .bc-product__price,
.bc-quote-page .bc-product-single__price,
.bc-quote-page .bc-product-prices {
  color: #0f3f91;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 6px 0 18px;
}

.bc-quote-page .bc-product__sale-price,
.bc-quote-page .bc-product-prices--sale {
  color: #dc2626;
}

.bc-quote-page .bc-product__regular-price--rrp,
.bc-quote-page .bc-product-prices__rrp {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 500;
  margin-left: 8px;
}

/* ---------- DESCRIPTION ---------- */
.bc-quote-page .bc-product__description,
.bc-quote-page .bc-product-single__description {
  color: #374151;
  line-height: 1.6;
  margin: 0 0 22px;
}

.bc-quote-page .bc-product__description p {
  margin: 0 0 12px;
}

.bc-quote-page .bc-product__description ul {
  margin: 0 0 12px;
  padding-left: 18px;
}

.bc-quote-page .bc-product__description a {
  color: #0f3f91;
  text-decoration: underline;
}

/* ---------- PRODUCT FORM (options + quantity + button) ---------- */
.bc-quote-page .bc-product-single__form,
.bc-quote-page .bc-product__form,
.bc-quote-page form.bc-product-form {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e5eaf3;
}

/* option labels */
.bc-quote-page .bc-product-form__option-label,
.bc-quote-page .bc-product-single__meta-label,
.bc-quote-page .bc-product-form__control-label {
  display: block;
  font-weight: 600;
  color: #334155;
  font-size: 14px;
  margin: 0 0 6px;
}

/* selects + text inputs */
.bc-quote-page .bc-product-form__control select,
.bc-quote-page .bc-product-form__control input[type="text"],
.bc-quote-page .bc-product-form__control input[type="number"],
.bc-quote-page .bc-product-form select,
.bc-quote-page .bc-product-form input[type="number"] {
  width: 100%;
  max-width: 260px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #f9fbff;
  color: #111827;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.bc-quote-page .bc-product-form__control select:focus,
.bc-quote-page .bc-product-form__control input:focus {
  outline: none;
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* swatch / radio option chips */
.bc-quote-page .bc-product-form__option-pa,
.bc-quote-page .bc-product-form__pa-item label {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  margin: 0 8px 8px 0;
  border-radius: 10px;
  border: 1px solid #cfe0ff;
  background: #f3f8ff;
  color: #18479b;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s ease;
}

.bc-quote-page .bc-product-form__pa-item input:checked + label,
.bc-quote-page .bc-product-form__option-pa:hover {
  background: #e2eeff;
  border-color: #bfd3fb;
}

/* quantity stepper row */
.bc-quote-page .bc-product-form__quantity,
.bc-quote-page .bc-product-single__quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0;
}

/* ---------- ADD TO CART / BUY NOW / REQUEST QUOTE BUTTON ---------- */
.bc-quote-page .bc-product-form__add-to-cart,
.bc-quote-page .bc-product__add-to-cart,
.bc-quote-page .bc-btn--form-submit,
.bc-quote-page button.bc-product-form__buttons,
.bc-quote-page .bc-product-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;

  padding: 14px 28px;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid #bfd3fb;

  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  cursor: pointer;

  color: #0f3f91;
  background: linear-gradient(180deg, #eaf2ff 0%, #dbeafe 100%);
  box-shadow:
    0 10px 24px rgba(30, 64, 175, 0.22),
    0 2px 6px rgba(30, 64, 175, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.bc-quote-page .bc-product-form__add-to-cart:hover,
.bc-quote-page .bc-product__add-to-cart:hover,
.bc-quote-page .bc-btn--form-submit:hover,
.bc-quote-page button.bc-product-form__buttons:hover,
.bc-quote-page .bc-product-form button[type="submit"]:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #dfeaff 0%, #bfdbfe 100%);
  border-color: #a9c6fa;
  color: #0b2f73;
  box-shadow:
    0 16px 30px rgba(30, 64, 175, 0.26),
    0 6px 14px rgba(30, 64, 175, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.bc-quote-page .bc-product-form__add-to-cart:active,
.bc-quote-page .bc-btn--form-submit:active {
  transform: translateY(0);
  box-shadow:
    0 6px 14px rgba(30, 64, 175, 0.18),
    inset 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* secondary buttons (e.g. wishlist) -> mono tonal */
.bc-quote-page .bc-product__wishlist,
.bc-quote-page .bc-btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  border: 0;
  font-weight: 600;
  color: #111827;
  background: #f3f4f6;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.12);
  cursor: pointer;
  transition: all .2s ease;
}

.bc-quote-page .bc-product__wishlist:hover,
.bc-quote-page .bc-btn--secondary:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

/* ---------- MESSAGES / NOTICES ---------- */
.bc-quote-page .bc-form__feedback,
.bc-quote-page .bc-alert {
  width: 100%;
  margin: 12px 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfe0ff;
  background: #f8fbff;
  color: #1f2937;
  font-size: 14px;
  box-sizing: border-box;
}

.bc-quote-page .bc-alert--error,
.bc-quote-page .bc-form__feedback--error {
  background: #fff1f2;
  border-color: #fecdd3;
}

.bc-quote-page .bc-alert--success,
.bc-quote-page .bc-form__feedback--success {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

/* ---------- TABS / EXTRA CONTENT (specs etc.) ---------- */
.bc-quote-page .bc-product-single__description-tabs,
.bc-quote-page .bc-product__tabs {
  grid-column: 1 / -1;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

/* spec table reuse from global */
.bc-quote-page table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #dbe3f0;
  border-radius: 10px;
  overflow: hidden;
}

.bc-quote-page table th,
.bc-quote-page table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e5eaf3;
  text-align: left;
  font-size: 14px;
}

.bc-quote-page table th {
  width: 35%;
  background: #f8fafc;
  color: #334155;
  font-weight: 600;
}

.bc-quote-page table td {
  background: #fff;
  color: #111827;
}

.bc-quote-page table tr:last-child th,
.bc-quote-page table tr:last-child td {
  border-bottom: 0;
}

/* ---------- MOBILE ---------- */
@media (max-width: 767px) {
  .bc-quote-page .bc-product-single__gallery,
  .bc-quote-page .bc-product__gallery,
  .bc-quote-page .bc-product-gallery {
    padding: 16px;
    border-radius: 16px;
  }

  .bc-quote-page .bc-product-single__meta,
  .bc-quote-page .bc-product__meta,
  .bc-quote-page .bc-product-single__summary {
    padding: 20px;
    border-radius: 16px;
  }

  .bc-quote-page .bc-product-form__add-to-cart,
  .bc-quote-page .bc-btn--form-submit,
  .bc-quote-page button.bc-product-form__buttons {
    width: 100%;
    padding: 12px 22px;
    min-height: 48px;
    border-radius: 12px;
  }

  .bc-quote-page .bc-product-form__control select,
  .bc-quote-page .bc-product-form__control input {
    max-width: 100%;
  }
}

body.elementor-page-1279 .bc-product-form__add-to-cart,
body.elementor-page-1279 .bc-product__add-to-cart,
body.elementor-page-1279 button.bc-product-form__buttons {
  display: none !important;
}/* End custom CSS */