body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #000000;
      color: white;
    }
    header {
      background-color: #000000 !important;
      width: 100%;
      color: white;
      text-align: center;
    }
    header h1 {
      margin: 0;
      font-size: 28px;
    }
    .logo {
      margin-top: 15px;
      max-width: 150px;
      height: auto;
    }
    .container {
      max-width: 900px;
      margin: auto;
      padding: 20px;
    }
    .address {
      color: white;
      text-decoration-color: rgba(60, 249, 174, 0.5);
      text-underline-offset: 4px;
    }
    .hero {
      background: #0a0a0a;
      color: white;
      padding: 8px;
      text-align: center;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .hero h2 {
      margin-top: 0;
    }
    .social-buttons {
      margin:15px
    }
    .button {
      margin: 5px;
      width: 183px;
      display: inline-block;
      padding: 12px 20px;
      color: white;
      text-decoration: none;
      border-radius: 55px;
      font-weight: bold;
      transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }
    .button:hover {
      filter: brightness(1.08);
      transform: translateY(-1px);
    }
    .button.whatsapp {
      background: #25d366;
    }
    .button.instagram {
      background: #c725d3;
    }
    .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    .product {
      background: #0a0a0a;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
      color: white;
      overflow: hidden;
      padding: 14px;
      text-align: left;
    }
    .product h3 {
      margin: 16px 8px 8px;
      font-size: 1.35rem;
      line-height: 1.05;
      color: white;
    }
    .product p {
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 8px 18px;
    }
    .product img.gallery-img {
      width: 400px;
      height: 400px;
      object-fit: contain;
      border-radius: 5px;
    }
    footer {
      text-align: center;
      padding: 20px;
      font-size: 20px;
      font-weight: bolder;
      color: white;
    }
    .carousel {
      position: relative;
      width: 100%;
      max-width: none;
      aspect-ratio: 1;
      height: auto;
      margin: 0 auto 10px;
      overflow: hidden;
      border-radius: 18px;
      background: #050505;
    }

    .carousel-img {
      display: none;
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 18px;
    }

    .carousel-img.active {
      display: block;
    }

    .carousel button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(60, 60, 62, 0.2);
      color: rgb(244, 244, 244);
      border: none;
      font-size: 30px;
      cursor: pointer;
      padding: 8px 12px;
      border-radius: 4px;
      z-index: 1;
    }

    .carousel button:hover {
      background-color: rgba(255,255,255,0.4);
    }

    .carousel .prev {
      left: 10px;
    }

    .carousel .next {
      right: 10px;
    }

    /* Random Carousel Styles */
    #random-carousel-container {
      width: 100%;
      display: flex;
      justify-content: center;
      padding: 20px 0 56px;
      margin-top: 1rem;
      background-color: #000;
    }

    .random-products-section {
      text-align: center;
      width: min(100% - 32px, 760px);
    }

    .random-products-section h2 {
      font-size: clamp(1.8rem, 4vw, 3rem);
      letter-spacing: -0.04em;
      line-height: 1;
      margin: 0 0 24px;
    }

    .random-carousel {
      position: relative;
      width: 100%;
      max-width: 460px;
      height: 460px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 28px;
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
      margin: 0 auto;
    }

    .random-carousel-slide {
      color: white;
      display: none;
      height: 100%;
      inset: 0;
      position: absolute;
      text-decoration: none;
      width: 100%;
    }

    .random-carousel-slide::after {
      background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.86));
      content: "";
      inset: 0;
      position: absolute;
    }

    .random-carousel-slide.active {
      display: block;
    }

    .random-carousel-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 28px;
    }

    .random-carousel-caption {
      bottom: 26px;
      display: grid;
      gap: 4px;
      left: 28px;
      position: absolute;
      text-align: left;
      z-index: 1;
    }

    .random-carousel-caption span {
      color: #3CF9AE;
      font-size: 0.86rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .random-carousel-caption strong {
      font-size: 1.7rem;
      line-height: 1;
    }

    .random-carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(60, 60, 62, 0.5);
      color: white;
      border: none;
      font-size: 24px;
      cursor: pointer;
      padding: 10px 15px;
      border-radius: 50%; /* Make them round */
      z-index: 1;
      transition: background-color 0.3s ease;
    }

    .random-carousel-btn:hover {
      background-color: rgba(255, 255, 255, 0.4);
    }

    .random-carousel-btn.prev {
      left: 10px;
    }

    .random-carousel-btn.next {
      right: 10px;
    }

    #footer-container {
      width: 100%;
    }

/* Navigation Styles */
.main-nav {
  width: 100%;
  background-color: #1a1a1a;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
  background-color: #3CF9AE;
  color: #1a1a1a;
}

/* Style for active link */
.nav-link.active {
    background-color: #3CF9AE;
    color: #1a1a1a;
    pointer-events: none; /* Disables clicking on the active link */
}

/* Homepage */
.home-page {
  min-height: 100vh;
}

.home-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 24px 0 56px;
}

.home-hero-copy {
  text-align: left;
}

.home-logo {
  width: min(260px, 70vw);
  height: auto;
  margin-bottom: 28px;
}

.eyebrow {
  color: #3CF9AE;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.home-hero h1 {
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 0;
  max-width: 820px;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
  margin: 24px 0 0;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions .button {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  margin: 0;
  width: auto;
}

.primary-cta {
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.28);
  font-size: 1.05rem;
  padding: 16px 24px;
}

.secondary-cta {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
}

.secondary-cta:hover {
  background: rgba(255, 255, 255, 0.08) !important;
}

.request-hero-cta {
  background: #3CF9AE;
  border: 0;
  color: #07110d;
  cursor: pointer;
  font-family: inherit;
}

.home-address {
  display: inline-flex;
  gap: 8px;
  margin-top: 18px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.trust-list li {
  border: 1px solid rgba(60, 249, 174, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  padding: 8px 12px;
}

.home-hero-media {
  min-height: 520px;
  position: relative;
}

.home-hero-media::before {
  background: radial-gradient(circle, rgba(60, 249, 174, 0.3), transparent 65%);
  content: "";
  inset: 5% 0 0;
  position: absolute;
}

.hero-product {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
  object-fit: cover;
  position: absolute;
}

.hero-product-main {
  border-radius: 36px;
  height: min(470px, 76vw);
  right: 12%;
  top: 0;
  width: min(350px, 62vw);
}

.hero-product-accent {
  border-radius: 28px;
  bottom: 0;
  height: 250px;
  left: 4%;
  width: 250px;
}

.category-section {
  padding: 12px 0 56px;
  text-align: center;
}

.category-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 auto 28px;
  max-width: 760px;
}

.category-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.category-card {
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  color: white;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  position: relative;
  text-align: left;
  text-decoration: none;
}

.category-card::after {
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.88));
  content: "";
  inset: 0;
  position: absolute;
}

.category-card img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 0.35s ease;
  width: 100%;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card-content {
  align-self: end;
  display: grid;
  gap: 8px;
  padding: 28px;
  position: relative;
  z-index: 1;
}

.category-kicker {
  color: #3CF9AE;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-card strong {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.category-card-content span:last-child {
  color: #3CF9AE;
  font-weight: 800;
}

/* Category pages */
.category-page .main-nav {
  margin-bottom: 0;
}

.category-header {
  padding: 24px 0 8px;
}

.category-header .logo {
  margin-top: 0;
  max-width: 180px;
}

.category-main {
  margin: 0 auto;
  width: min(1120px, calc(100% - 32px));
}

.category-hero {
  align-items: center;
  display: grid;
  gap: clamp(24px, 5vw, 58px);
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  padding: 34px 0 44px;
}

.category-hero-copy {
  text-align: left;
}

.category-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
  margin: 0;
}

.category-lead {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  line-height: 1.55;
  margin: 22px 0 0;
  max-width: 650px;
}

.category-hero-media {
  min-height: 460px;
  position: relative;
}

.category-hero-media::before {
  background: radial-gradient(circle, rgba(60, 249, 174, 0.24), transparent 66%);
  content: "";
  inset: 8% 0 0;
  position: absolute;
}

.category-hero-img {
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.62);
  object-fit: cover;
  position: absolute;
}

.category-hero-img-main {
  border-radius: 34px;
  height: min(420px, 72vw);
  right: 8%;
  top: 0;
  width: min(360px, 66vw);
}

.category-hero-img-accent {
  border-radius: 26px;
  bottom: 0;
  height: 210px;
  left: 4%;
  width: 230px;
}

.quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 4px 0 44px;
}

.quick-nav span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  padding: 10px 16px;
}

.products-intro {
  text-align: center;
}

.products-intro h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

.category-page .products {
  margin-bottom: 64px;
}

.product-cta {
  align-items: center;
  background: #25d366;
  border: 0;
  border-radius: 999px;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  gap: 8px;
  margin: 0 8px 8px;
  padding: 12px 16px;
  text-decoration: none;
}

.product-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* Customer product request */
.request-modal-open {
  overflow: hidden;
}

.request-float {
  align-items: center;
  background: #3CF9AE;
  border: 0;
  border-radius: 999px;
  bottom: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38), 0 0 28px rgba(60, 249, 174, 0.34);
  color: #07110d;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 900;
  gap: 8px;
  padding: 14px 18px;
  position: fixed;
  right: 18px;
  z-index: 20;
}

.request-modal[aria-hidden="true"] {
  display: none;
}

.request-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 50;
}

.request-backdrop {
  background: rgba(0, 0, 0, 0.76);
  inset: 0;
  position: absolute;
}

.request-panel {
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.72);
  color: white;
  max-height: min(760px, 92vh);
  overflow: auto;
  padding: clamp(22px, 4vw, 38px);
  position: relative;
  width: min(680px, 100%);
}

.request-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
  height: 40px;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 40px;
}

.request-panel h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 0;
}

.request-subtitle {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
  margin: 14px 0 0;
}

.request-progress {
  color: #3CF9AE;
  font-size: 0.88rem;
  font-weight: 900;
  margin-top: 18px;
  text-transform: uppercase;
}

.request-form {
  margin-top: 20px;
}

.request-choice-group {
  border: 0;
  margin: 0 0 18px;
  padding: 0;
}

.request-choice-group legend {
  font-size: 1.12rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.request-choice-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
}

.request-choice input {
  position: absolute;
  opacity: 0;
}

.request-choice span {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  font-weight: 800;
  min-height: 54px;
  padding: 12px 14px;
}

.request-choice-icon {
  flex: 0 0 34px;
  height: 34px;
  object-fit: contain;
  width: 34px;
}

.request-choice-multiple span {
  gap: 10px;
}

.request-choice-multiple span::before {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  content: "";
  display: inline-flex;
  flex: 0 0 20px;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.request-choice input:checked ~ span,
.request-choice.selected span {
  background: rgba(60, 249, 174, 0.16);
  border-color: #3CF9AE;
  color: #3CF9AE;
}

.request-choice-multiple input:checked ~ span::before,
.request-choice-multiple.selected span::before {
  background: #3CF9AE;
  border-color: #3CF9AE;
  box-shadow: inset 0 0 0 5px #080808;
}

.request-product-section {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  margin-bottom: 16px;
  padding: 18px;
}

.request-product-section h3 {
  color: #3CF9AE;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.request-selection-summary {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px;
}

.request-selection-summary-head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.request-selection-summary h3 {
  color: #3CF9AE;
  font-size: 1.05rem;
  margin: 0;
}

.request-inline-action {
  background: rgba(60, 249, 174, 0.12);
  border: 1px solid rgba(60, 249, 174, 0.38);
  border-radius: 999px;
  color: #3CF9AE;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  padding: 9px 12px;
}

.request-selection-item {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: grid;
  gap: 8px;
  padding: 12px;
}

.request-selection-item strong {
  color: white;
}

.request-selection-item dl {
  display: grid;
  gap: 6px;
  margin: 0;
}

.request-selection-item dl div {
  display: flex;
  gap: 8px;
}

.request-selection-item dt {
  color: rgba(255, 255, 255, 0.58);
  flex: 0 0 72px;
  font-weight: 800;
}

.request-selection-item dd,
.request-selection-item span {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.request-label {
  color: rgba(255, 255, 255, 0.76);
  display: grid;
  font-weight: 800;
  gap: 8px;
  margin-bottom: 14px;
}

.request-label input,
.request-label textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: white;
  font: inherit;
  padding: 13px 14px;
}

.request-help {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
  margin: 12px 0;
}

.request-honeypot {
  display: none;
}

.request-privacy {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.72);
  display: grid;
  gap: 10px;
  line-height: 1.45;
  margin-top: 8px;
  padding: 14px;
}

.request-privacy p {
  margin: 0;
}

.request-privacy-check {
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  display: flex;
  font-weight: 800;
  gap: 10px;
}

.request-privacy-check input {
  accent-color: #3CF9AE;
  flex: 0 0 auto;
  height: 18px;
  margin-top: 2px;
  width: 18px;
}

.request-privacy-details summary {
  color: #3CF9AE;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
}

.request-privacy-details p {
  margin-top: 8px;
}

.request-actions {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 20px;
}

.request-primary,
.request-secondary {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 13px 18px;
}

.request-primary {
  background: #3CF9AE;
  color: #07110d;
}

.request-primary:disabled {
  cursor: wait;
  opacity: 0.7;
}

.request-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.request-error {
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.28);
  border-radius: 14px;
  color: #ffb7b7;
  padding: 12px;
}

.request-success {
  background: rgba(60, 249, 174, 0.12);
  border: 1px solid rgba(60, 249, 174, 0.34);
  border-radius: 20px;
  display: grid;
  gap: 6px;
  padding: 22px;
}

.request-success strong {
  color: #3CF9AE;
  font-size: 1.4rem;
}

@media (max-width: 820px) {
  .main-nav {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
  }

  .nav-link {
    font-size: 1rem;
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 12px;
  }

  .home-hero-copy {
    text-align: center;
  }

  .hero-actions,
  .trust-list {
    justify-content: center;
  }

  .home-hero-media {
    min-height: 380px;
  }

  .hero-product-main {
    right: 50%;
    transform: translateX(50%);
  }

  .hero-product-accent {
    left: 50%;
    transform: translateX(-95%);
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-hero {
    grid-template-columns: 1fr;
    padding-top: 18px;
  }

  .category-hero-copy {
    text-align: center;
  }

  .category-hero-media {
    min-height: 360px;
  }

  .category-hero-img-main {
    right: 50%;
    transform: translateX(50%);
  }

  .category-hero-img-accent {
    left: 50%;
    transform: translateX(-95%);
  }
}

@media (max-width: 520px) {
  .home-main {
    width: min(100% - 20px, 1120px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .home-address {
    align-items: center;
    justify-content: center;
  }

  .home-hero-media {
    min-height: 310px;
  }

  .hero-product-main {
    height: 300px;
    width: 230px;
  }

  .hero-product-accent {
    height: 170px;
    width: 170px;
  }

  .category-card {
    min-height: 300px;
  }

  .random-products-section {
    width: min(100% - 20px, 760px);
  }

  .random-carousel {
    height: 340px;
  }

  .category-main {
    width: min(100% - 20px, 1120px);
  }

  .category-hero-media {
    min-height: 300px;
  }

  .category-hero-img-main {
    height: 285px;
    width: 230px;
  }

  .category-hero-img-accent {
    height: 150px;
    width: 160px;
  }

  .product {
    border-radius: 20px;
    padding: 10px;
  }

  .request-float {
    bottom: 12px;
    justify-content: center;
    left: 12px;
    right: 12px;
  }

  .request-actions {
    flex-direction: column-reverse;
  }

  .request-selection-summary-head {
    align-items: stretch;
    flex-direction: column;
  }

  .request-inline-action {
    width: 100%;
  }
}

.request-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: normal;
  margin-left: 8px;
  padding: 2px 6px;
  text-transform: uppercase;
  vertical-align: middle;
}

.request-modality-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.request-modality-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.request-group-title {
  color: #3CF9AE;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 12px;
}
