/* ============================================
   Gadgets-X Utilities
   ============================================ */

/* Container */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

/* Section */
.section { padding-block: var(--sp-24); }
.section--dark  { background: var(--gx-dark);  color: var(--gx-white); }
.section--mid   { background: var(--gx-dark-2); color: var(--gx-white); }
.section--light { background: var(--gx-white); }

/* Buttons */
.btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-decoration: none;
}
.btn--primary {
  background: var(--gx-accent);
  color: var(--gx-white);
}
.btn--primary:hover { background: var(--gx-accent-dark); color: var(--gx-white); }
.btn--outline {
  border-color: var(--gx-accent);
  color: var(--gx-accent);
  background: transparent;
}
.btn--outline:hover { background: var(--gx-accent); color: var(--gx-white); }

/* Badge / Category label */
.badge {
  display: inline-block;
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--gx-accent);
  color: var(--gx-white);
}
