.scqs-shop-wrapper {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 18px 12px 80px;
  background: linear-gradient(145deg, #fdfbff 0%, #f5fbff 45%, #fffdf8 100%);
  color: #1f2933;
}

/* RTL */
.scqs-shop-wrapper.scqs-rtl {
  direction: rtl;
  text-align: right;
}

.scqs-shop-wrapper.scqs-rtl .scqs-filters {
  flex-direction: row-reverse;
}

.scqs-shop-wrapper.scqs-rtl .scqs-filter-group label {
  text-align: right;
}

/* Bannière atelier */
.scqs-shop-banner {
  background: linear-gradient(135deg, #fef3c7, #e0f2fe);
  border-radius: 18px;
  padding: 12px 14px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.scqs-shop-banner::after {
  content: "✂";
  position: absolute;
  font-size: 46px;
  opacity: 0.07;
  right: 10px;
  bottom: -8px;
  transform: rotate(-10deg);
}

.scqs-shop-wrapper.scqs-rtl .scqs-shop-banner::after {
  right: auto;
  left: 10px;
  transform: rotate(10deg);
}

.scqs-shop-banner-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  color: #1f2937;
}

.scqs-icon-bobbin {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.scqs-banner-title {
  letter-spacing: 0.02em;
}

.scqs-banner-subtitle {
  margin: 0;
  font-size: 12px;
  color: #4b5563;
}

/* Filtres */

.scqs-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 16px;
}

.scqs-filter-group {
  display: flex;
  flex-direction: column;
  min-width: 180px;
}

.scqs-filter-group label {
  font-size: 12px;
  margin-bottom: 4px;
  color: #6b7280;
}

.scqs-filter-input,
.scqs-filter-select {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 13px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.scqs-filter-input:focus,
.scqs-filter-select:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.35);
  background: #f9fafb;
}

/* Toast */

.scqs-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.45);
}

.scqs-toast.scqs-toast-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(-6px);
}

/* Responsive léger */

@media (min-width: 768px) {
  .scqs-shop-wrapper {
    padding: 22px 24px 90px;
  }
}
.scqs-info-only-msg {
  padding: 10px 14px;
  margin: 15px 0;
  border-radius: 8px;
  background: #f4f7ff;
  border: 1px dashed #c2cff9;
  font-size: 14px;
  line-height: 1.5;
}
