/** Shopify CDN: Minification failed

Line 556:0 Unexpected "}"

**/
/* ============================================
   BULK ORDER TABLE v2 - B2B Wholesale
   Color selector + Size table + Sticky footer
   ============================================ */

/* ── Wrapper ────────────────────────────────── */
.bulk-order-wrapper {
  margin-top: 2.4rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  position: relative;
}

/* ── Header ─────────────────────────────────── */
.bulk-order-header {
  padding: 1.6rem 2rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.bulk-order-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.3rem 0;
  letter-spacing: -0.01em;
}

.bulk-order-title svg {
  color: #3b82f6;
  flex-shrink: 0;
}

.bulk-order-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  margin: 0;
}

/* ── Color Selector ──────────────────────────── */
.bulk-color-selector {
  padding: 1.6rem 2rem;
  border-bottom: 1px solid #e2e8f0;
  background: white;
}

.bulk-color-label {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.bulk-color-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.bulk-color-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.4rem 0.6rem 0.8rem;
  border: 2px solid #e2e8f0;
  border-radius: 100px;
  background: white;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 500;
  color: #475569;
  transition: all 0.15s ease;
}

.bulk-color-btn:hover {
  border-color: #94a3b8;
  background: #f8fafc;
}

.bulk-color-btn--active {
  border-color: #1e293b;
  background: #f8fafc;
  color: #1e293b;
  font-weight: 700;
}

.bulk-color-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  flex-shrink: 0;
  display: inline-block;
}

/* ── Rows Container ──────────────────────────── */
.bulk-table-container {
  background: white;
  width: 100%;
  border-top: 1px solid #e2e8f0;
}

.bulk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.3rem;
}

.bulk-table thead { display: none; }

/* ── Rows — Flex layout ──────────────────────── */
.bulk-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s;
}

.bulk-row:last-child { border-bottom: none; }
.bulk-row:hover { background: #fafbff; }
.bulk-row--soldout { opacity: 0.5; }
.bulk-row--selected { background: #f0f7ff !important; }

.bulk-row td { display: contents; }

/* ── Image ───────────────────────────────────── */
.bulk-variant-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: block;
  flex-shrink: 0;
}

.bulk-no-img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  flex-shrink: 0;
}

/* ── Size ────────────────────────────────────── */
.bulk-size-name {
  font-weight: 600;
  color: #1e293b;
  font-size: 1.4rem;
  flex: 0 0 55px;
}

/* ── Quantity + Stock (grouped) ──────────────── */
.td-qty {
  flex: 0 0 auto;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.qty-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qty-stock-badge {
  font-size: 1.05rem;
  color: #64748b;
  white-space: nowrap;
}

.qty-stock-badge--low { color: #d97706; }
.qty-stock-badge--out { color: #dc2626; }

/* ── Price ───────────────────────────────────── */
.td-price {
  flex: 0 0 auto;
  text-align: right;
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  margin-left: auto;
  min-width: 0;
}

.price-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bulk-price {
  font-weight: 700;
  color: #1e293b;
  font-size: 1.4rem;
  white-space: nowrap;
}

.price-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bulk-price {
  font-weight: 700;
  color: #1e293b;
  font-size: 1.5rem;
  white-space: nowrap;
}

.bulk-compare-price {
  font-size: 1.1rem;
  color: #94a3b8;
  text-decoration: line-through;
}

/* Hide stock column (now inside qty cell) */
.td-stock { display: none !important; }

/* ── Stock badges ────────────────────────────── */
.stock-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
}

.stock-badge--high  { background: #dcfce7; color: #16a34a; }
.stock-badge--low   { background: #fef3c7; color: #d97706; }
.stock-badge--out   { background: #fee2e2; color: #dc2626; }
.stock-badge--free  { background: #eff6ff; color: #3b82f6; }

/* ── Qty controls ────────────────────────────── */
.qty-wrapper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.bulk-row--selected .qty-wrapper {
  border-color: #3b82f6;
}

.qty-btn {
  background: none;
  border: none;
  width: 2.8rem;
  height: 2.8rem;
  cursor: pointer;
  font-size: 1.6rem;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
  line-height: 1;
  padding: 0;
  user-select: none;
}

.qty-btn:hover:not(:disabled) {
  background: #f1f5f9;
  color: #1e293b;
}

.qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.qty-input {
  width: 3.8rem;
  height: 2.8rem;
  border: none;
  border-left: 1.5px solid #e2e8f0;
  border-right: 1.5px solid #e2e8f0;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  background: white;
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-input:focus {
  outline: none;
  background: #f8faff;
}

.soldout-dash {
  color: #cbd5e1;
  font-size: 1.8rem;
  display: block;
  text-align: center;
}

/* ── Sticky Footer ───────────────────────────── */
.bulk-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: white;
  border-top: 2px solid #e2e8f0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  /* Κρύβεται αρχικά, εμφανίζεται μόνο όταν το bulk table είναι ορατό */
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.bulk-sticky-footer--visible {
  transform: translateY(0);
}

.bulk-sticky-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.bulk-totals {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.bulk-total-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.bulk-total-label {
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bulk-total-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
}

.bulk-total-price {
  color: #3b82f6;
}

.bulk-total-divider {
  width: 1px;
  height: 36px;
  background: #e2e8f0;
}

/* ── Add to Cart Button ──────────────────────── */
.bulk-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #1e293b;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 1.2rem 2.4rem;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, opacity 0.2s;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.bulk-add-btn:hover:not(:disabled) {
  background: #0f172a;
  transform: translateY(-1px);
}

.bulk-add-btn:active:not(:disabled) {
  transform: translateY(0);
}

.bulk-add-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ── Message ─────────────────────────────────── */
.bulk-message {
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.bulk-message--success {
  padding: 0.8rem 2rem;
  color: #15803d;
  background: #dcfce7;
  border-top: 1px solid #bbf7d0;
  max-height: 50px;
}

.bulk-message--error {
  padding: 0.8rem 2rem;
  color: #dc2626;
  background: #fee2e2;
  border-top: 1px solid #fecaca;
  max-height: 50px;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 749px) {
  .bulk-order-header,
  .bulk-color-selector { padding: 1rem; }

  .bulk-row {
    gap: 0.6rem;
    padding: 0.8rem 0.8rem;
  }

  .bulk-variant-img,
  .bulk-no-img {
    width: 44px;
    height: 44px;
  }

  .bulk-size-name {
    font-size: 1.2rem;
    flex: 0 0 40px;
  }

  .qty-label { font-size: 1rem; }
  .price-label { font-size: 1rem; }
  .bulk-price { font-size: 1.3rem; }
  .qty-stock-badge { font-size: 0.95rem; }

  .qty-btn {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.5rem;
  }

  .qty-input {
    width: 3.2rem;
    height: 2.6rem;
    font-size: 1.2rem;
  }

  .bulk-sticky-inner {
    padding: 0.8rem 1rem;
    flex-direction: row;
  }

  .bulk-add-btn {
    padding: 0.9rem 1.2rem;
    font-size: 1.2rem;
  }
}

  .qty-wrapper {
    border-radius: 6px;
  }

  .qty-btn {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.4rem;
  }

  .qty-input {
    width: 3rem;
    height: 2.4rem;
    font-size: 1.2rem;
  }

  .qty-stock-badge {
    font-size: 0.95rem;
  }

  .bulk-price {
    font-size: 1.3rem;
  }

  .td-price {
    min-width: 55px;
  }

  .bulk-sticky-inner {
    padding: 1rem 1.2rem;
    flex-direction: column;
    align-items: stretch;
  }

  .bulk-totals { justify-content: center; }

  .bulk-add-btn {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
  }
}
/* Κρύβει το MultiVariants UI */
#multivariant-app,
.multivariant-container,
[class*="multivariant"],
[id*="multivariant"],
#MULTIVARIANTS_APP_SECTION_PLACE,
#multivariants_setbox_package,
#multivariants_setbox_header,
#multivariants_setbox_body,
#multivariants_setbox_footer,
#MULTIVARIANTS_APP_BLOCK_CONTENT,
.product-form .product-form__input--pill,
.product-form .product-form__input--dropdown,
fieldset.product-form__input--pill,
fieldset.product-form__input--dropdown {
  display: none !important;
}