/* Scroll down header bg color */
body.page-contact .header {
  transition: background var(--motion-hover), padding var(--motion-hover), border-color var(--motion-hover);
}
body.page-contact .header.is-scrolled {
  background: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-3) 0;
}

/* ============ SECTION 1: THE HERO (A Malha Global) ============ */
.contact-hero {
  background: var(--boi-verde-deep);
  color: var(--text-on-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--space-8);
}

/* Dark gradient overlay at the top to make white menu items readable */
.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(180deg, rgba(10, 50, 21, 0.95) 0%, rgba(10, 50, 21, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.contact-hero .container {
  position: relative;
  z-index: 3; /* Content container stays below map wrapper (z-index 4) for overlay lines */
}

/* Vertical 2-column Split Grid */
.hero-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-8);
  align-items: center;
  min-height: calc(100vh - 120px);
}



.hero-right-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-hero .h-mono {
  color: var(--detalhes);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: var(--space-4);
  display: block;
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 76px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  color: var(--text-on-dark);
}

.contact-hero .hero-sub {
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.9;
  max-width: 620px;
  margin-bottom: var(--space-7);
}

.contact-hero .scroll-indicator-contact {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-on-dark);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  z-index: 5; /* Sit above the draggable map overlay */
  pointer-events: auto;
}

.contact-hero .scroll-indicator-contact .indicator-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.contact-hero .scroll-indicator-contact .indicator-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--detalhes);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--motion-hover);
}

.contact-hero .scroll-indicator-contact:hover .indicator-line::after {
  transform: scaleX(1);
}

/* Centered Map Wrapper at the Background, but z-index 4 so lines pass on top of text */
.contact-hero .map-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4; /* Higher than content (.container at z-index 3) so lines go over the text */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: auto; /* Enable clicks/drags */
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
}

.contact-hero .map-wrapper:active {
  cursor: grabbing;
}

.contact-hero .map-wrapper .dot-map-container {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.contact-hero #worldMapSVG {
  position: absolute;
  width: 250%; /* Increased zoom to highlight Brazil */
  height: 250%;
  max-width: none;
  left: 25%; /* Aligns reference point to the center of the left column */
  top: 50%;
  transform: translate(-36%, -71%); /* Centering Brazil (x: 286, y: 580) */
  background: transparent;
  pointer-events: none; /* Let container handle the drag events */
  user-select: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-grid-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .hero-left-col {
    display: none;
  }
  .contact-hero #worldMapSVG {
    left: 50%;
    opacity: 0.15; /* Dim background map on mobile so text is readable */
  }
}

/* Map paths matching home.php illustrative map style */
.contact-hero #worldMapSVG path:not(.arc-line) {
  fill: rgba(244, 232, 204, 0.05) !important;
  stroke: rgba(244, 232, 204, 0.12) !important;
  stroke-width: 0.65 !important;
  opacity: 1 !important;
  pointer-events: none;
}

/* Highlight Brazil path */
.contact-hero #worldMapSVG #br,
.contact-hero #worldMapSVG g#br path {
  fill: rgba(244, 232, 204, 0.14) !important;
  stroke: rgba(254, 97, 0, 0.4) !important;
  stroke-width: 0.8 !important;
}

/* Show the connections only on the map */
.contact-hero .illustrative-arcs {
  display: block !important;
}

/* Staggered connection line animations exactly like home.php */
.contact-hero .illustrative-arcs .arc-line {
  fill: none !important;
  stroke: var(--detalhes) !important;
  stroke-width: 1.2 !important;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0.7;
  animation: drawArc 4s cubic-bezier(.4, 0, .2, 1) forwards infinite;
}

.contact-hero .illustrative-arcs .arc-line:nth-child(1) { animation-delay: 0.0s; }
.contact-hero .illustrative-arcs .arc-line:nth-child(2) { animation-delay: 0.3s; }
.contact-hero .illustrative-arcs .arc-line:nth-child(3) { animation-delay: 0.6s; }
.contact-hero .illustrative-arcs .arc-line:nth-child(4) { animation-delay: 0.9s; }
.contact-hero .illustrative-arcs .arc-line:nth-child(5) { animation-delay: 1.2s; }
.contact-hero .illustrative-arcs .arc-line:nth-child(6) { animation-delay: 1.5s; }
.contact-hero .illustrative-arcs .arc-line:nth-child(7) { animation-delay: 1.8s; }

/* Origin Hub Pulse (Brazil) */
.contact-hero .illustrative-arcs .origin-pulse {
  fill: none;
  stroke: var(--detalhes);
  stroke-width: 1.5;
  transform-origin: center;
  animation: pulseDot 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.contact-hero .illustrative-arcs .origin-dot {
  fill: var(--detalhes);
}

/* Destination Ticker Dots */
.contact-hero .illustrative-arcs .dest-dot {
  fill: var(--detalhes);
}

.connection-arcs circle.dest-pulse {
  fill: none;
  stroke: var(--detalhes);
  stroke-width: 1.5;
  transform-origin: center;
  animation: pulseDot 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* ============ SECTION 2: THE ARCHITECTS OF SCALE ============ */
.b2b-portal-section {
  background: #FFFFFF;
  color: var(--boi-verde);
  padding: var(--space-9) 0;
  border-bottom: 1px solid rgba(21, 81, 37, 0.1);
}

.b2b-portal-section .eyebrow {
  color: var(--detalhes);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: var(--space-4);
  display: block;
}

.b2b-portal-section h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  color: var(--boi-verde);
}

.b2b-portal-section .lead {
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.6;
  color: #333333;
  opacity: 0.85;
  max-width: 800px;
  margin-bottom: var(--space-8);
}

/* B2B Filter Console (White Theme) */
.b2b-console {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  border-bottom: 2px solid rgba(21, 81, 37, 0.15);
  padding-bottom: var(--space-5);
  align-items: center;
}

@media (max-width: 992px) {
  .b2b-console {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
}

.console-field {
  position: relative;
}

.console-field input,
.console-field select {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(21, 81, 37, 0.2);
  color: #000000;
  padding: var(--space-4) var(--space-4);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--motion-hover), background var(--motion-hover);
  border-radius: 0;
  appearance: none;
}

.console-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23155125' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: var(--space-6);
}

.console-field input:focus,
.console-field select:focus {
  border-color: var(--detalhes);
  background: rgba(254, 97, 0, 0.02);
}

.results-count {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--boi-verde);
  font-weight: bold;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--detalhes);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 13px var(--space-4);
  border: none;
  cursor: pointer;
  transition: background var(--motion-hover);
}

.download-btn:hover {
  background: var(--cta-dark);
}

/* Brutalist Table Structure (White Theme) */
.b2b-table-container {
  overflow-x: auto;
  border: 1px solid rgba(21, 81, 37, 0.1);
}

.b2b-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.b2b-table th {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(21, 81, 37, 0.7);
  padding: var(--space-4) var(--space-5);
  border-bottom: 2px solid rgba(21, 81, 37, 0.15);
  background: #FDFBF7;
}

.b2b-row {
  border-bottom: 1px solid rgba(21, 81, 37, 0.1);
  background: #FFFFFF;
  color: #000000;
  transition: background var(--motion-hover);
}

.b2b-row:hover {
  background: rgba(254, 97, 0, 0.06) !important;
  cursor: pointer;
}

.b2b-row.active {
  background: rgba(254, 97, 0, 0.08) !important;
}

.b2b-row td {
  padding: var(--space-5);
  vertical-align: middle;
}

.company-title-cell {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--boi-verde);
}

.city-cell, .state-cell {
  font-size: 14px;
  color: #333333;
}

.action-trigger {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--detalhes);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: bold;
}

.action-trigger svg {
  transition: transform var(--motion-hover);
}

.b2b-row.active .action-trigger svg {
  transform: rotate(180deg);
}

/* Accordion Row Details (White Theme) */
.b2b-details-row {
  display: none;
  background: #FAFAFA;
  border-bottom: 1px solid rgba(21, 81, 37, 0.1);
}

.b2b-details-row.active {
  display: table-row;
}

.details-wrapper {
  padding: var(--space-5) var(--space-5) var(--space-6);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-6);
  align-items: start;
}

@media (max-width: 768px) {
  .details-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* Logo Block */
.details-logo-block {
  width: 140px;
  height: 140px;
  background: #FFFFFF;
  border: 1px solid rgba(21, 81, 37, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.details-logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Grid of fields */
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

@media (max-width: 992px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .details-grid {
    grid-template-columns: 1fr;
  }
}

.details-block h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(21, 81, 37, 0.5);
  margin-bottom: var(--space-1);
  letter-spacing: 0.1em;
}

.details-block p {
  line-height: 1.5;
  color: #222222;
  font-size: 14px;
}

.details-block a {
  color: var(--detalhes);
  font-weight: 600;
  transition: color var(--motion-hover);
}

.details-block a:hover {
  text-decoration: underline;
}

/* ============ SECTION 3: INSTITUTIONAL COMMAND ============ */
.hubs-section {
  background: var(--boi-verde);
  color: var(--text-on-dark);
  padding: var(--space-9) 0;
  position: relative;
  overflow: hidden;
}

.hubs-section h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}

.hubs-section .lead {
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.6;
  opacity: 0.85;
  max-width: 750px;
  margin-bottom: var(--space-8);
}

.hubs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .hubs-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
}

.hub-card {
  position: relative;
  background: var(--boi-verde-deep);
  border: 1px solid var(--border-medium-dark);
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  overflow: hidden;
}

/* Outlined Background Text inside card */
.hub-card-bg-text {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 232, 204, 0.05);
  position: absolute;
  bottom: -20px;
  right: -10px;
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
}

.hub-meta {
  position: relative;
  z-index: 3;
}

.hub-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  color: var(--detalhes);
}

.hub-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(244, 232, 204, 0.6);
  margin-bottom: var(--space-5);
  display: block;
}

.hub-address {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: var(--space-4);
  max-width: 240px;
}

.hub-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  display: block;
  margin-bottom: var(--space-5);
}

.hub-link {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-on-dark);
  border-bottom: 1px solid var(--text-on-dark);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color var(--motion-hover), border-color var(--motion-hover);
  position: relative;
  z-index: 3;
}

.hub-link:hover {
  color: var(--detalhes);
  border-color: var(--detalhes);
}

/* ============ SECTION 4: DIRECT INQUIRIES ============ */
.inquiries-section {
  background: #FFFFFF;
  color: #155125;
  padding: var(--space-9) 0;
}

.inquiries-section h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  color: #155125;
}

.inquiries-section .lead {
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.6;
  opacity: 0.85;
  max-width: 700px;
  margin-bottom: var(--space-7);
}

.executive-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6) var(--space-5);
  margin-bottom: var(--space-7);
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
}

.form-field-full {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .form-field-full {
    grid-column: span 1;
  }
}

.exec-field {
  position: relative;
}

.exec-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(21, 81, 37, 0.7);
  display: block;
  margin-bottom: var(--space-2);
}

.exec-field input,
.exec-field select,
.exec-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(21, 81, 37, 0.3);
  color: #155125;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  border-radius: 0;
  transition: border-color var(--motion-hover);
}

.exec-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23155125' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: var(--space-5);
}

.exec-field textarea {
  min-height: 120px;
  resize: vertical;
}

/* Floating expanding line on focus */
.exec-field::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--detalhes);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.exec-field:focus-within::after {
  transform: scaleX(1);
}

.exec-field:focus-within label {
  color: var(--detalhes);
}

.exec-field input:focus,
.exec-field select:focus,
.exec-field textarea:focus {
  border-bottom-color: transparent;
}

.btn-solid-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--detalhes);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 18px 40px;
  transition: background 0.25s, transform 0.25s;
  border-radius: 0;
  border: none;
  cursor: pointer;
}

.btn-solid-orange:hover {
  background: var(--cta-dark);
}

.btn-solid-orange:active {
  transform: scale(0.98);
}

/* ============ PARALLAX BANNER (Navio & Dots) ============ */
.parallax-banner {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #000;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140%; /* slightly taller for parallax scroll offset */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 1;
}

.parallax-dots-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  z-index: 2;
  pointer-events: none;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
  pointer-events: none;
}

.relative-z {
  position: relative;
  z-index: 3;
}

/* ============ CUSTOM PREMIUM SELECT DROPDOWNS ============ */
.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--motion-hover);
}

/* Specific trigger styles inside b2b-console */
.b2b-console .custom-select-trigger {
  background: #FFFFFF;
  border: 1px solid rgba(21, 81, 37, 0.2);
  color: #000000;
  padding: 13px var(--space-4);
  font-family: var(--font-body);
  font-size: 14px;
}

.b2b-console .custom-select-wrapper.open .custom-select-trigger {
  border-color: var(--detalhes);
}

/* Specific trigger styles inside executive-form */
.executive-form .custom-select-trigger {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(21, 81, 37, 0.3);
  color: #155125;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 15px;
}

/* Arrow indicator inside triggers */
.custom-select-trigger::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23155125' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--motion-hover);
  margin-left: 8px;
}

.custom-select-wrapper.open .custom-select-trigger::after {
  transform: rotate(180deg);
}

/* Options Container styling */
.custom-options-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid rgba(21, 81, 37, 0.2);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-height: 280px;
  overflow-y: auto;
}

/* Scrollbar for option list */
.custom-options-container::-webkit-scrollbar {
  width: 6px;
}
.custom-options-container::-webkit-scrollbar-track {
  background: #FAF6EE;
}
.custom-options-container::-webkit-scrollbar-thumb {
  background: rgba(21, 81, 37, 0.2);
}

.custom-select-wrapper.open .custom-options-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(2px);
}

/* Custom Option Item */
.custom-option-item {
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #155125;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(21, 81, 37, 0.05);
}

.custom-option-item:last-child {
  border-bottom: none;
}

.custom-option-item:hover {
  background: #155125;
  color: #FFFFFF;
}

.custom-option-item.selected {
  background: rgba(21, 81, 37, 0.08);
  color: #155125;
  font-weight: bold;
}
