/* ==========================================================================
   Quantity Selector Component
   Used on product pages and cart drawer
   ========================================================================== */
/* line 6, app/assets/stylesheets/components/_quantity_selector.scss */
.simple-quantity-selector {
  display: inline-flex;
  align-items: center;
}

/* line 11, app/assets/stylesheets/components/_quantity_selector.scss */
.quantity-controls {
  display: inline-flex;
  align-items: center;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
}

/* line 20, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.15s ease;
}

/* line 32, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-btn svg {
  width: 18px;
  height: 18px;
}

/* line 37, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-btn:hover:not(:disabled) {
  background: #F3F4F6;
  color: #111827;
}

/* line 42, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* line 47, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-btn.minus {
  border-right: 1px solid #E5E7EB;
}

/* line 51, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-btn.plus {
  border-left: 1px solid #E5E7EB;
}

/* line 56, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-input {
  width: 52px;
  height: 44px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  background: #fff;
  border: none;
  outline: none;
  -moz-appearance: textfield;
}

/* line 68, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* line 74, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-input:focus {
  background: #F0F9FF;
}

/* line 78, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-input:disabled {
  background: #F9FAFB;
  color: #9CA3AF;
}

/* line 2, app/assets/stylesheets/components/_accordion.scss */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 8, app/assets/stylesheets/components/_accordion.scss */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

/* line 11, app/assets/stylesheets/components/_accordion.scss */
.faq-item:last-child {
  border-bottom: none;
}

/* line 16, app/assets/stylesheets/components/_accordion.scss */
.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 0;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  transition: color 0.15s ease;
  outline: none;
}

/* line 32, app/assets/stylesheets/components/_accordion.scss */
.faq-item__trigger:focus-visible {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
  border-radius: 4px;
}

/* line 39, app/assets/stylesheets/components/_accordion.scss */
.faq-item__icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-left: 0.75rem;
  color: #94a3b8;
  transition: transform 0.2s ease;
}

/* line 48, app/assets/stylesheets/components/_accordion.scss */
.faq-item[data-accordion-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
}

/* line 54, app/assets/stylesheets/components/_accordion.scss */
.faq-item__content {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* line 60, app/assets/stylesheets/components/_accordion.scss */
[data-accordion-connected] .faq-item__content {
  max-height: 0;
}

/* line 64, app/assets/stylesheets/components/_accordion.scss */
[data-accordion-connected] .faq-item[data-accordion-expanded="true"] .faq-item__content {
  max-height: 2000px;
}

/* line 68, app/assets/stylesheets/components/_accordion.scss */
.faq-item__answer {
  padding: 0 0 0.75rem;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
}
