/* ===== Reset ===== */
* {
  margin:0;
  padding:0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat' !important;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input {
  font-family: inherit;
  outline: none;
}
a {
  text-decoration: none;
  color: #005eb1;
  font-weight: 550;
}

/* ===== Icons (shared base sizing/behavior for inline SVG icons) ===== */
.icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  transition: transform 0.3s ease;
  fill:none
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 100px;
  box-sizing: border-box;
}

.section-spacing {
  margin-bottom: 2rem;
}

/* ===== Feedback ===== */
.repair-feedback {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: left;
}

.repair-feedback__prompt {
  color: #1f2937;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.repair-feedback__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.feedback-btn {
  min-width: 74px;
  padding: 0.3rem 0.2rem;
  color: #000;
  border: 1px solid #000;
  border-radius: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.feedback-btn:hover {
  background: #000;
  color: #fff;
}

.feedback-btn--active {
  background: #000;
  color: #fff;
}

.repair-feedback__thanks {
  margin-top: 0.75rem;
  color: #059669;
  font-size: 0.9rem;
}

/* btn styles */

.btn {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  display: inline-block;
}

.btn--primary {
  border: none;
  background: #000;
  color: #fff;
}

.btn--primary:hover {
  background: #1f2937;
}

.btn--secondary {
  border: 1px solid #d1d5db;
  background: #fff;
  color: #1f2937;
}

.btn--secondary:hover {
  background: #f3f4f6;
}

.important-notice {
  background: #FBF9F7; 
  text-align: center;
  padding:1.2rem 5rem;
  margin-top:2rem;
  font-size: 0.875rem;
}

/* ===== text secondary  ===== */
.text-secondary{
  color: #4b5563;
}

/* ===== Shared family tag group ===== */
.tag-group {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px;
  background: #fff;
  border-radius: 40px;
}
.tag {
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  background: transparent;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}
.tag:hover {
  color: #333;
  background: rgba(0, 0, 0, 0.04);
}
.tag.active {
  color: #1a1a1a;
  background: #f0ede9;
}
.tag.tag-hidden {
  display: none;
}
.tag-icon {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px 12px;
}
.tag-icon .dot {
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.6;
}

a[target="_blank"]:focus-visible::after {
  content: "Opens a new tab";
  position: absolute;
  background: #fff;
  color: #000;
  font-size: 14px;
  border: 1px solid #000;
  padding: 5px 10px;
  z-index: 2000;
  display: block;
  pointer-events: auto;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 6px;
  white-space: nowrap;
}

button {
  font-size: 1rem;
}

@media (min-width: 1600px) {
  .container {
    width: 1440px;
    padding: 2rem 0;
  }
}

@media screen and (max-width: 899px) {
  .container {
    padding: 1rem;
  }
  .important-notice {
    padding: 1rem;
  }
}

@media (max-width: 599px) {
  .feedback-btn {
    flex: 1 1 auto;
    min-width: 0;
  }
}

/* ===== Accessibility ===== */
.skip-to-content {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 3000;
  padding: 12px 16px;
  transform: translateY(-150%);
  background-color: #005eb1;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.skip-to-content:focus-visible {
  transform: translateY(0);
  outline: 3px solid #1f2937;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .skip-to-content {
    transition: none;
  }
}
