/** Shopify CDN: Minification failed

Line 20:14 Expected identifier but found whitespace
Line 20:16 Unexpected "{"
Line 20:26 Expected ":"
Line 20:51 Unexpected ","
Line 20:54 Unexpected "{"
Line 20:64 Expected ":"
Line 24:16 Expected identifier but found whitespace
Line 24:17 Unexpected "2px"
Line 24:28 Unexpected "{"
Line 24:38 Expected ":"
... and 47 more hidden warnings

**/
.fw-comments {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 0 16px;
  font-family: {{ settings.type_body_font.family }}, {{ settings.type_body_font.fallback_families }};
}

.fw-comments__header {
  border-bottom: 2px solid {{ settings.colors_button_background }};
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.fw-comments__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: {{ settings.colors_text }};
  margin: 0;
}

.fw-comments__empty {
  color: rgba(var(--color-foreground), 0.65);
  font-style: italic;
  padding: 16px 0;
}

.fw-comments__list {
  margin-bottom: 32px;
}

.fw-comment {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
}

.fw-comment--first {
  padding-top: 0;
}

.fw-comment__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: {{ settings.colors_button_background }};
  color: {{ settings.colors_button_label }};
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.fw-comment__body {
  flex: 1;
  min-width: 0;
}

.fw-comment__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.fw-comment__author {
  font-weight: 600;
  color: {{ settings.colors_text }};
  font-size: 0.95rem;
}

.fw-comment__date {
  font-size: 0.8rem;
  color: rgba(var(--color-foreground), 0.55);
}

.fw-comment__content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(var(--color-foreground), 0.85);
  word-break: break-word;
}

.fw-comment__content p {
  margin: 0 0 8px;
}

.fw-comment__content p:last-child {
  margin-bottom: 0;
}

.fw-comment__actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.fw-comment__like-btn,
.fw-comment__reply-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1px solid rgba(var(--color-foreground), 0.12);
  border-radius: 20px;
  padding: 4px 12px;
  cursor: pointer;
  font-size: 0.8rem;
  color: rgba(var(--color-foreground), 0.65);
  transition: all 0.2s ease;
}

.fw-comment__like-btn:hover,
.fw-comment__reply-btn:hover {
  border-color: {{ settings.colors_button_background }};
  color: {{ settings.colors_button_background }};
}

.fw-comment__like-btn--active {
  color: {{ settings.colors_button_background }} !important;
  border-color: {{ settings.colors_button_background }} !important;
  background: rgba({{ settings.colors_button_background }}, 0.08);
}

.fw-comment__reply-form {
  margin-top: 12px;
  padding: 12px;
  background: rgba(var(--color-foreground), 0.03);
  border-radius: 8px;
}

.fw-comment__reply-form textarea {
  width: 100%;
  border: 1px solid rgba(var(--color-foreground), 0.15);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.9rem;
  resize: vertical;
  margin-bottom: 8px;
  font-family: inherit;
}

.fw-comments__form-wrapper {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid rgba(var(--color-foreground), 0.08);
}

.fw-comments__form-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: {{ settings.colors_text }};
}

.fw-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media screen and (max-width: 600px) {
  .fw-form-grid {
    grid-template-columns: 1fr;
  }
}

.fw-field {
  margin-bottom: 12px;
}

.fw-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: {{ settings.colors_text }};
}

.fw-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(var(--color-foreground), 0.2);
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.fw-input:focus {
  outline: none;
  border-color: {{ settings.colors_button_background }};
  box-shadow: 0 0 0 2px rgba({{ settings.colors_button_background }}, 0.15);
}

.fw-rich-editor {
  border: 1px solid rgba(var(--color-foreground), 0.2);
  border-radius: 6px;
  overflow: hidden;
}

.fw-rich-editor__toolbar {
  display: flex;
  gap: 2px;
  padding: 6px 8px;
  background: rgba(var(--color-foreground), 0.03);
  border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
}

.fw-rich-editor__toolbar button {
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 0.85rem;
  color: rgba(var(--color-foreground), 0.7);
  transition: all 0.15s ease;
}

.fw-rich-editor__toolbar button:hover {
  background: rgba(var(--color-foreground), 0.06);
  border-color: rgba(var(--color-foreground), 0.1);
}

.fw-textarea {
  width: 100%;
  padding: 12px 14px;
  border: none;
  font-size: 0.95rem;
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
  box-sizing: border-box;
}

.fw-textarea:focus {
  outline: none;
}

.fw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: inherit;
}

.fw-btn--primary {
  background: {{ settings.colors_button_background }};
  color: {{ settings.colors_button_label }};
}

.fw-btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.fw-btn--small {
  padding: 6px 16px;
  font-size: 0.85rem;
  background: {{ settings.colors_button_background }};
  color: {{ settings.colors_button_label }};
}

.fw-form-actions {
  margin-top: 12px;
}
