:root {
  --primary: #3d3b98;
  --primary-dark: #2f2d78;
  --accent: #8bc53f;
  --accent-dark: #76aa32;
  --text: #1a1d29;
  --muted: #626a80;
  --bg: #f7f8fc;
  --surface: #ffffff;
  --line: rgba(61, 59, 152, 0.12);
  --shadow: 0 10px 25px rgba(42, 51, 92, 0.10);
  --radius: 14px;
  --container: 1100px;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(139,197,63,0.12),transparent 28%),
    radial-gradient(circle at top right, rgba(61,59,152,0.12),transparent 26%),
    var(--bg);
  line-height: 1.6;
  padding-top: 70px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(100% - 1.5rem, var(--container));
  margin: auto;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: white;
  border-bottom: 1px solid var(--line);
  z-index: 1000;
  transition: all .3s ease;
  animation: slideDown .8s ease-out;
}

.brand-name {
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

.brand-tag {
  font-size: .75rem;
  color: #e4e6ff;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo {
  width: 44px;
}

/* NAV FONT CHANGE */ 
.nav-menu {
  list-style: none;
  display: flex;
  gap: 18px;
}

.nav-menu a {
  font-family: 'Myriad Pro', Arial, Helvetica, sans-serif; /* Myriad Pro with fallbacks */
  font-weight: 600; /* Medium/Bold style */
  font-size: 1rem; /* slightly larger for visibility */
  color: white;
  transition: color .3s ease, transform .3s ease;
}

.nav-menu a:hover {
  color: var(--accent); /* Keep accent hover color */
  transform: scale(1.05); /* subtle pop effect on hover */
}
.nav-menu.open {
  display: flex;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: white;
}

/* SECTIONS */
.section {
  padding: 1.5rem 0;
}

.hero-grid,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: center;
}

/* HERO */
.hero {
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.hero-copy h1 {
  font-size: clamp(1.6rem,4vw,2.2rem);
  line-height: 1.25;
  margin-bottom: .6rem;
}

.hero-text {
  color: #e0e0e0;
  font-size: .95rem;
  margin-bottom: .8rem;
}

/* HERO INFO PANEL */
.hero-info {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}

.point i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 3px;
}

.point p {
  font-size: .85rem;
  color: #e4e6ff;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 22px;
  font-weight: 700;
  font-size: .9rem;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
}

/* SEND MESSAGE BUTTON - BLUE VARIATIONS */ 
/* SEND MESSAGE BUTTON - BLUE GRADIENT ANIMATION */

.btn-secondary {
  background: white;
  border: 1px solid var(--line);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* CARDS */
.cards-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.info-card,
.product-card {
  background: var(--surface);
  padding: 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all .3s ease;
}

.info-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(139,197,63,.15);
}

.product-card img,
.info-card img {
  height: 120px;
  object-fit: contain;
  margin: auto;
  margin-bottom: 10px;
}

/* CONTACT FORM - GREEN ACCENT */ 
.contact-form {
  background: var(--accent); /* CHANGE */
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: white;
}

.contact-form label {
  color: white;
}

/* FORM */
.form-group {
  margin-bottom: 10px;
}

label {
  display: block;
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 4px;
}

input,
textarea {
  width: 100%;
  padding: 9px;
  border-radius: 8px;
  border: 1px solid rgba(61,59,152,.15);
  font-family: 'Inter', sans-serif;
}

.contact-form input,
.contact-form textarea {
  background: white;
  color: var(--text);
}

input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  border-color: transparent;
}

/* FOOTER */
.footer {
  background: #3d3b98;
  color: rgba(255,255,255,.7);
  padding: 2rem 0 1rem;
}

.footer-grid {
  grid-template-columns: repeat(3,1fr);
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 14px;
  text-align: center;
  font-size: .85rem;
}

/* WHATSAPP BUTTON */
.floating-whatsapp {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 12px 16px;
  border-radius: 40px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform .3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.05);
}

/* TOPBAR FIXES */
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.topbar-text {
  color: white;
  font-weight: 500;
}

/* SOCIAL ICONS */
.inline-socials{
  display:flex;
  align-items:center;
  gap:8px;
}

.inline-socials a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  border:2px solid #3d3b98;
  border-radius:50%;
  text-decoration:none;
  transition:all 0.3s ease;
}

.inline-socials a i{
  font-size:15px;
}
.inline-socials a .fa-facebook-f{
  color:#1877F2;
}

.inline-socials a .fa-whatsapp{
  color:#25D366;
}



.inline-socials a .fa-instagram{
  background: linear-gradient(
      45deg,
      #f58529,
      #feda77,
      #dd2a7b,
      #8134af,
      #515bd4
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.inline-socials a:hover{
  background:#3d3b98;
  transform:scale(1.1);
}

.inline-socials a:hover i{
  color:white;
  -webkit-text-fill-color:white;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .hero-grid,
  .contact-grid,
  .footer-grid,
  .cards-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: flex;
    padding-left: 10rem;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    background: var(--primary);
    padding: 14px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-menu a {
    color: white;
    padding: 6px 0;
  }

  .floating-whatsapp {
    bottom: 25px;
    right: 15px;
  }
}

/* MENU ANIMATION */
.nav-menu li {
  opacity: 0;
  transform: translateX(-20px);
  animation: menuSlide .6s ease forwards;
}

.nav-menu li:nth-child(1){animation-delay:.1s;}
.nav-menu li:nth-child(2){animation-delay:.2s;}
.nav-menu li:nth-child(3){animation-delay:.3s;}
.nav-menu li:nth-child(4){animation-delay:.4s;}
@keyframes menuSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

::selection {
  background: var(--accent);
  color: white;
}

/* FORCE CARD TEXT BLACK */
.hero-info *,
.info-card *,
.product-card *,
.cards-grid *,
.product-grid * {
    color: #000000 !important;
}

.hero-info strong,
.info-card strong,
.product-card strong {
    color: #000000 !important;
}

.info-card a,
.product-card a {
    color: #000000 !important;
}

.topbar-inner span {
    color: #000000 !important;
}

.nav-menu a[href="#about"]:hover {
    color: var(--accent) !important;
}

.hero-actions .btn-secondary {
    color: #000000 !important;
}

.hero-actions .btn-secondary:hover {
    color: #fff !important;
    background: var(--primary) !important;
}
.footer a {
  color: rgba(255,255,255,0.7); /* keep default color */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--accent); /* glow color */
  text-shadow: 0 0 8px var(--accent), 0 0 12px var(--accent);
  transform: scale(1.05); /* subtle pop effect */
}
#get-in-touch.btn-primary {
  background: var(--accent); /* Green like contact section */
  color:white ;
  font-weight: 700;
  border-radius: 999px;
  padding: 9px 22px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

#get-in-touch.btn-primary:hover,
#get-in-touch.btn-primary:active {
  background: #3d3b98; /* Blue like menu bar */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  color: white;
}


/* EXPLORE PRODUCTS BUTTON */
#explore-products.btn-secondary {
  background: #3d3b98; /* Default blue */
  color: white;        /* Text always white */
  font-weight: 700;
  border-radius: 999px;
  padding: 9px 22px;
  cursor: pointer;
  border: none; 
  transition: all 0.3s ease;
}

#explore-products.btn-secondary:hover,
#explore-products.btn-secondary:active {
  background: var(--accent); /* Hover green like contact section */
  color: white;              /* Text stays white */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
/* EXPLORE PRODUCTS BUTTON */
#explore-products {
  background: #3d3b98; /* Default blue */
  color: white !important; /* Force white text */
  font-weight: 700;
  border-radius: 999px;
  padding: 9px 22px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
 #explore-products:hover,
#explore-products:active {
  background: var(--accent) !important; /* Green on hover */
  color: white !important;               /* Keep text white */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
} */
/* SEND MESSAGE BUTTON FIX - ALWAYS BLUE */
.btn-primary.btn-full {
  background: #3d3b98; /* Blue like navbar */
  color: white;        /* Text always white */
  font-weight: 700;
  border-radius: 999px;
  padding: 9px 22px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary.btn-full:hover,
.btn-primary.btn-full:active {
  background: #3d3b98; /* Keep blue on hover */
  color: white;        /* Text stays white */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
/* FACEBOOK ICON BORDER GREEN */
.inline-socials a {
  border: 2px solid #3d3b98; /* default border for all */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
}

.inline-socials a i.fa-facebook-f {
  /* no change to icon color */
}

/* Target only the <a> that contains Facebook icon */
.inline-socials a i.fa-facebook-f {
  /* nothing here, keep icon color */
}

/* Correct parent selector to change border of Facebook icon */
.inline-socials a:has(i.fa-facebook-f) {
  border-color: var(--accent); /* green border */
}
/* Make only Facebook icon turn green on hover */
.inline-socials a.facebook i {
  color: #1877F2; /* normal Facebook blue */
  transition: color 0.3s ease;
}

.inline-socials a.facebook:hover i {
  color: #8bc53f !important; /* green on hover */
  -webkit-text-fill-color: #8bc53f !important; /* for WebKit browsers */
}
.hero-info {
  background: var(--accent); /* GREEN box */
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* White text */
.hero-info strong,
.hero-info p {
  color: white !important;
}

/* Blue icons */
.hero-info .point i {
  color: var(--primary) !important;
  font-size: 1.3rem;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel {
    grid-column: 1;
  }
  .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* side by side */
  gap: 20px;
  align-items: center;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr; /* stack on mobile */
  }
}
.hero-section {
  display: flex;
  justify-content: space-between; /* text on left, widget on right */
  align-items: flex-start; /* aligns top edges */
  gap: 20px; /* space between text and widget */
  position: relative;
  padding: 20px;
}

.hero-text {
  flex: 1; /* takes remaining space */
  max-width: 60%; /* optional to limit text width */
}

.hero-widget {
  background-color: #a0e45a; /* your green widget */
  padding: 15px;
  border-radius: 10px;
  min-width: 250px; /* keeps it compact */
}

.widget-item + .widget-item {
  margin-top: 10px; /* space between items */
}
/* EXPLORE PRODUCTS BUTTON */
#explore-products {
  background: #3d3b98;   /* Blue (same as navbar) */
  color: white !important; /* Text always white */
  font-weight: 700;
  border-radius: 999px;
  padding: 9px 22px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

#explore-products:hover,
#explore-products:active {
  background: #8bc53f !important; /* Green on hover (accent color) */
  color: white !important;         /* Keep text white */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
/* SEND MESSAGE BUTTON - ALWAYS BLUE */
.btn-primary.btn-full {
  background: #3d3b98;  /* navbar blue */
  color: white;         /* text always white */
  font-weight: 700;
  border-radius: 999px;
  padding: 9px 22px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary.btn-full:hover,
.btn-primary.btn-full:active {
  background: #3d3b98;  /* stays blue on hover */
  color: white;         /* text stays white */
  transform: translateY(-2px); /* subtle hover effect */
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

#purple-header {
  color: #3d3b98; /* #3d3b98 */
}
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

/** Variables **/

:root {
  --color-background: #cbd5e1;
  --color-background-alt: #64748b;
  --color-border-active: #64748b;
  --color-border-default: #94a3b8;
  --color-highlight: #cbd5e1;
  --color-primary: #1e293b;
  --color-primary-active: #090f1d;
  --color-text-default: #0f172a;
  --color-text-muted: #475569;

  --font-family-body: "Work Sans", system-ui, sans-serif;
  --font-family-display: "IBM Plex Serif", system-ui, sans-serif;
}

/** Base **/

*,
::before,
::after {
  box-sizing: border-box;
}

* {
  border: 0;
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-family-body);
  font-optical-sizing: auto;
  font-style: normal;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

[type="checkbox"],
[type="radio"],
[type="range"] {
  appearance: none;
  flex-shrink: 0;
  padding: 0;
  user-select: none;
}

[type="checkbox"]:focus,
[type="radio"]:focus,
[type="range"]:focus {
  outline: none;
}

/** Components **/

.fs-form {
  display: grid;
  row-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) {
  column-gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}

fieldset {
  display: grid;
  margin: 1.5rem 0;
  row-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) fieldset {
  column-gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  grid-column: 1 / -1;
}

.fs-fieldset-title {
  color: var(--color-text-default);
  font-family: var(--font-family-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
  grid-column: 1 / -1;
}

.fs-field {
  display: flex;
  flex-direction: column;
  row-gap: 0.375rem;
}

.fs-label {
  color: var(--color-text-default);
  display: block;
  font-family: var(--font-family-display);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.fs-description {
  color: var(--color-text-muted);
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.fs-button-group {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) .fs-button-group {
  grid-column: 1 / -1;
}

.fs-button {
  background-color: var(--color-primary);
  border-radius: 0.375rem;
  color: white;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1rem;
  padding: 1rem 2rem;
  transition-duration: 200ms;
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fs-button:hover {
  background-color: var(--color-primary-active);
}

.fs-button:focus-visible {
  background-color: var(--color-primary-active);
  outline: 3px solid var(--color-highlight);
}

.fs-input,
.fs-select {
  appearance: none;
  border-radius: 0.375rem;
  border-width: 0;
  box-shadow: var(--color-border-default) 0 0 0 1px inset;
  color: var(--color-text-default);
  font-size: 1rem;
  height: 2.5rem;
  line-height: 1.5rem;
  outline: none;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.fs-input:focus-visible,
.fs-select:focus-visible {
  box-shadow: var(--color-border-active) 0 0 0 1.5px inset;
  outline: 3px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-input::placeholder {
  color: var(--color-text-muted);
}

.fs-checkbox-group,
.fs-radio-group {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.fs-checkbox-field,
.fs-radio-field {
  column-gap: 0.5rem;
  display: flex;
}

:is(.fs-checkbox-field, .fs-radio-field) .fs-label + .fs-description {
  margin-top: 0.125rem;
}

.fs-checkbox-wrapper,
.fs-radio-wrapper {
  align-items: center;
  display: flex;
  height: 1.25rem;
}

.fs-checkbox,
.fs-radio {
  background-color: #fff;
  border: 1px solid var(--color-text-default);
  height: 1rem;
  width: 1rem;
}

.fs-checkbox {
  border-radius: 0.25rem;
}

.fs-radio {
  border-radius: 100%;
}

.fs-checkbox:checked,
.fs-radio:checked {
  background-color: var(--color-primary);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-color: transparent;
}

.fs-checkbox:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

.fs-radio:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

.fs-checkbox:focus-visible,
.fs-radio:focus-visible {
  outline: 3px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-select {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.fs-slider {
  background: transparent;
  cursor: pointer;
  height: 1.25rem;
  width: 100%;
}

.fs-slider::-moz-range-track {
  background-color: var(--color-background);
  border-radius: 0.5rem;
  height: 0.5rem;
}

.fs-slider::-webkit-slider-runnable-track {
  background-color: var(--color-background);
  border-radius: 0.5rem;
  height: 0.5rem;
}

.fs-slider::-moz-range-thumb {
  background-color: var(--color-primary);
  border: none; /* Removes extra border that FF applies */
  border-radius: 50%;
  height: 1.25rem;
  width: 1.25rem;
}

.fs-slider::-webkit-slider-thumb {
  appearance: none;
  background-color: var(--color-primary);
  border-radius: 50%;
  height: 1.25rem;
  margin-top: -0.375rem; /* Centers thumb on the track */
  width: 1.25rem;
}

.fs-slider:focus-visible::-moz-range-thumb {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.fs-slider:focus-visible::-webkit-slider-thumb {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.fs-switch {
  background-color: var(--color-background-alt);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='white'/%3e%3c/svg%3e");
  background-position: left center;
  background-repeat: no-repeat;
  border-radius: 1.5rem;
  cursor: pointer;
  height: 1.5rem;
  transition-duration: 200ms;
  transition-property: background-color, background-position;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  width: 2.75rem;
}

.fs-switch:checked {
  background-color: var(--color-primary);
  background-position: right center;
}

.fs-switch:focus-visible {
  outline: 3px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-textarea {
  appearance: none;
  border-radius: 0.375rem;
  border-width: 0;
  box-shadow: var(--color-border-default) 0 0 0 1px inset;
  color: var(--color-primary);
  font-size: 1rem;
  line-height: 1.5rem;
  outline: none;
  padding: 0.5rem 0.75rem;
  resize: vertical;
}

.fs-textarea:focus-visible {
  box-shadow: var(--color-border-active) 0 0 0 1.5px inset;
  outline: 3px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-textarea::placeholder {
  color: var(--color-text-muted);
}

/** Utilities **/

.col-span-full {
  grid-column: 1 / -1;
}

.fs-textarea::placeholder {
  color: var(--color-text-muted);
}

.slider-label-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.25rem;
}

.slider-label-text {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  white-space: nowrap;
}