
  .category-plp-info,
  .category-plp,
  .live-chat-container,
  ol.breadcrumbs,
  .its-global-banner,
  .footer-content {
    display: none;
  }

  /* ========================= */
  /* PRODUCT CARD + DRAG STYLES */
  /* ========================= */

  .sku-product-card {
    transition: box-shadow 0.15s ease, transform 0.15s ease,
                background-color 0.15s ease, border-color 0.15s ease;
    cursor: grab;
  }

  .sku-product-card:active { cursor: grabbing; }

  .sku-product-card.dragging {
    box-shadow: 0 6px 14px rgba(0,0,0,0.18);
    transform: translateY(-2px);
    opacity: 0.96;
    background-color: #f3fff7;
    border-color: #0f9c1f;
  }

  .sku-product-card.drag-over {
    outline: 2px dashed #0f9c1f;
    outline-offset: 3px;
  }

  .sku-product-card.pinned {
    border-color: #f5a623;
    box-shadow: 0 0 0 1px rgba(245,166,35,0.5);
  }

  /* Tint when out of stock OR data not found */
  .sku-product-card.red-tint {
    background-color: rgb(253 0 0 / 31%) !important;
  }

  .sku-card-handle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    font-size: 10px;
    color: #999;
    margin-bottom: 4px;
    user-select: none;
  }

  .sku-card-handle .handle-left {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .sku-card-handle .dots {
    font-size: 14px;
    line-height: 1;
  }

  .sku-card-handle .hint-text { font-size: 10px; }

  .sku-card-handle .handle-actions {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .sku-star-button,
  .sku-send-bottom-button {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 20px;
    padding: 0;
    margin: 0;
    color: #bbb;
  }

  .sku-star-button:hover,
  .sku-send-bottom-button:hover {
    color: #555;
  }

  .sku-product-card.pinned .sku-star-button { color: #f5a623; }

  /* Inline price edit input */
  .price-edit-input {
    width: 80px;
    font-size: 14px;
    padding: 2px 4px;
    border: 1px solid #999;
    border-radius: 4px;
    text-align: center;
  }

  /* ========================= */
  /* TOP CONTROL PANEL / TOOLBAR */
  /* ========================= */

  #sku-controls {
    margin-bottom: 16px;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fafafa;
  }

  .sku-toolbar-row {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    align-items: center;
  }

  .sku-toolbar-row button {
    height: 40px;
    padding: 0 18px;
    border-radius: 4px;
    border: none;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
  }

  .sku-toolbar-row input[type="file"] {
    height: 40px;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    background: #fff;
    max-width: 260px;
  }

  .sku-toolbar-row input[type="number"] {
    width: 120px;
    height: 40px;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    box-sizing: border-box;
  }

  .sku-toolbar-spacer {
    flex: 1 1 auto;
  }

  .sku-control-label {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
    display: block;
  }

  .sku-control-subtext {
    font-size: 11px;
    color: #777;
    margin-top: 3px;
  }

  /* ========================= */
  /* CARD BOTTOM ROW / REMOVE  */
  /* ========================= */

  .sku-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-size: 11px;
  }

  .sku-stock-info {
    font-size: 11px;
    color: #555;
  }

  .sku-remove-button {
    border: none;
    background: none;
    color: #e41520;
    font-size: 11px;
    cursor: pointer;
    padding: 2px 0 2px 8px;
    white-space: nowrap;
  }

  .sku-remove-button:hover {
    text-decoration: underline;
  }

 body { padding-bottom: 70px; }

  #email-export-controls.fixed-bottom .export-flex-row {
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 8px !important;
  }

  #email-export-controls.fixed-bottom .export-extra {
    display: none !important;
  }

  #email-export-controls.fixed-bottom #exportBaseName {
    max-width: 220px !important;
  }

  #email-export-controls.fixed-bottom #titleLineLimit {
    max-width: 120px !important;
  }

/* =============================== */
/* LEFT SIDEBAR – KLAVIYO EXPORT   */
/* =============================== */

.export-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  padding: 16px 14px;
  box-sizing: border-box;
  background: #f7f8fa;
  border-right: 1px solid #d7dce2;
  z-index: 9999;
  font-family: Karla, Arial, sans-serif;
  font-size: 13px;
  color: #222;
}

.export-sidebar-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}

/* Push main content over so it doesn't sit underneath the sidebar */
body {
  margin-left: 280px !important;
}

.export-header h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
}

.export-header p {
  margin: 0;
  font-size: 12px;
  color: #666;
}

.export-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.export-group label {
  font-size: 12px;
  font-weight: 600;
  color: #333;
}

.export-group input,
.export-group select {
  height: 34px;
  padding: 6px 8px;
  border-radius: 4px;
  border: 1px solid #c3c8d0;
  font-size: 13px;
  box-sizing: border-box;
  width: 100%;
  background: #ffffff;
}

.export-group input:focus,
.export-group select:focus {
  outline: none;
  border-color: #0f9c1f;
  box-shadow: 0 0 0 1px rgba(15, 156, 31, 0.25);
}

.export-help {
  margin: 0;
  font-size: 11px;
  color: #7a7f88;
}

.export-help code {
  font-size: 11px;
}

/* Primary block just to separate the big CTA slightly */
.export-group-primary {
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid #e0e4ea;
}

#downloadBundleBtn {
  width: 100%;
  height: 38px;
  border-radius: 4px;
  border: none;
  background: #0f9c1f;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease,
              transform 0.05s ease;
}

#downloadBundleBtn:hover {
  background: #0c7b19;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

#downloadBundleBtn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.export-preview {
  font-size: 11px;
  color: #555;
  line-height: 1.4;
}

.export-status {
  margin-top: 4px;
  font-size: 11px;
  color: #555;
  padding: 6px 8px;
  border-radius: 4px;
  background: #eef3ff;
  border: 1px solid #c9d5ff;
}

/* ========================= */
/* SECTION GROUP HEADERS     */
/* ========================= */

.sku-section-header {
  grid-column: 1 / -1;           /* span all 3 columns in the CSS grid */
  background: #f5f5f5;
  border-radius: 6px;
  padding: 6px 10px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.sku-section-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
}

.sku-section-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sku-section-handle {
  font-size: 14px;
  cursor: grab;
  color: #888;
}

.sku-section-name {
  border: none;
  background: transparent;
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 12px;
  font-weight: 600;
  min-width: 120px;
}

.sku-section-name:focus {
  outline: 1px solid #0f9c1f;
  background: #ffffff;
}

.sku-section-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #555;
}

.sku-section-count {
  white-space: nowrap;
}

.sku-section-color {
  width: 26px;
  height: 20px;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
