@charset "UTF-8";

/* ==========================================================================
   1. BASE, RESET & TYPOGRAPHY
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

* {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;

  &::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }

  &::-webkit-scrollbar-track {
    background: transparent;
  }

  &::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: content-box;

    &:hover {
      background-color: rgba(0, 0, 0, 0.4);
    }
  }
}

body {
  background: var(--body-background);
  font-size: var(--font-size);
  transition: var(--body-animation);
  font-family: var(--sc-font-family-primary);
  background-attachment: fixed;
  font-weight: var(--font-weight-normal);

  &[unresolved] {
    opacity: 0;
    display: block;
    overflow: hidden;
    position: relative;
  }
}

h1 {
  font-family: var(--sc-font-family-secondary);
  font-weight: bold;
  color: var(--footer-text);
}

h3,
h4 {
  color: var(--footer-text);
  font-weight: var(--font-weight-semi-bold);
}

p {
  margin: 0 0 0.8rem 0;
}

/* ==========================================================================
   2. UTILITIES & GLOBALS
   ========================================================================== */
.SC-Logo_image {
  width: var(--logo-width);
}

.sc-gap-md {
  gap: var(--sc-spacing-base);
}
.sc-bg-primary {
  background-color: var(--sc-color-primary);
}
.sc-border-bottom-none {
  border-bottom: none;
}
.sc-color-white {
  color: white;
}

.sc-container-wrap {
  max-width: var(--sc-max-width);
  margin-left: auto;
  margin-right: auto;
}

.sc-h-100,
.sc-height-100 {
  height: 100%;
}
.sc-display-inline-flex {
  display: inline-flex;
}
.sc-font-400 {
  font-weight: 400;
}
.sc-font-500 {
  font-weight: 500;
}
.sc-font-micro {
  font-size: 12px;
}

.sc-fit-cover {
  object-fit: cover;
  object-position: center;
}

.sc-fit-contain {
  object-fit: contain;
  object-position: center;
}

.sc-field-outline {
  border-radius: var(--sc-border-radius);
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: all 0.25s ease-in-out;

  &:focus-within {
    outline-color: var(--sc-color-primary);
  }
}

.sc-right-0 {
  right: 0;
}
.sc-ml-auto {
  margin-left: auto;
}
.no-scroll {
  overflow: hidden;
}

.SC-Colour {
  background-color: var(--sc-shade-neutral);
  border-radius: 50%;
  display: block;
  width: 25px;
  height: 25px;
}

.SC-Link {
  color: var(--footer-text);
  text-decoration: none;
  font-weight: var(--font-weight-semi-bold);

  &:hover {
    color: var(--footer-text-hover);
  }
}

/* ==========================================================================
   3. ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fadePulse {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes sc-fade-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sc-animate-in {
  opacity: 0;
  animation: sc-fade-up 0.7s ease-out forwards;

  &[data-animate-delay="1"] {
    animation-delay: 0.1s;
  }
  &[data-animate-delay="2"] {
    animation-delay: 0.25s;
  }
  &[data-animate-delay="3"] {
    animation-delay: 0.4s;
  }
  &[data-animate-delay="4"] {
    animation-delay: 0.55s;
  }
  &[data-animate-delay="5"] {
    animation-delay: 0.7s;
  }
  &[data-animate-delay="6"] {
    animation-delay: 0.85s;
  }
  &[data-animate-delay="7"] {
    animation-delay: 1s;
  }
  &[data-animate-delay="8"] {
    animation-delay: 1.15s;
  }
  &[data-animate-delay="9"] {
    animation-delay: 1.3s;
  }
  &[data-animate-delay="10"] {
    animation-delay: 1.45s;
  }
}

.spinner-overlay,
.popup-quoted {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.4s ease;

  &.hidden {
    opacity: 0;
    pointer-events: none;
  }
}

.popup-quoted {
  background: rgba(255, 255, 255, 1);
  text-align: center;
}

.spinner-container {
  max-width: 200px;
  width: 100%;
}

.spinner-svg {
  width: 100%;
  height: auto;
  animation: fadePulse 1.5s ease-in-out infinite;
}

.spinner-circle {
  stroke: #000;
  stroke-linecap: round;
  animation: rotate 1s linear infinite;
  transform-origin: center;
}

/* ==========================================================================
   4. BUTTONS & CONTROLS
   ========================================================================== */
.sc-button,
.Button,
.SC-Button {
  font-size: var(--sc-font-medium);
  transition: var(--button-transition);
  align-items: center;
  column-gap: var(--button-gap);
  justify-content: center;
  position: relative;
  text-decoration: none;
  border-radius: var(--button-radius);
  padding: var(--button-padding);
  font-weight: var(--button-font-weight);
  color: var(--button-color);
  background: var(--footer-text);

  &:hover:not(:disabled),
  &:hover:not(.disabled) {
    box-shadow: var(--box-shadow);
    background: var(--button-background-hover-color);
    cursor: pointer;
    color: var(--button-color);
    transform: translateY(-4px);
  }

  &:disabled, &.disabled {
    pointer-events: none;
    transform: translateY(0px);
  }
}

.SC-Button-subtle,
.Button-subtle {
  color: var(--black-color);
  border: var(--small-button-border);
  padding: var(--small-button-padding);
  background: var(--white-color);

  &:hover:not(:disabled),
  &:hover:not(.disabled) {
    color: var(--button-color);
    background: var(--button-background-color);
  }
}

.SC-Button-small {
  border-radius: 25px;
  font-size: var(--sc-font-small);
  font-weight: 500;
}

.SC-Button-add,
.Button-add {
  background-color: var(--cart-button-dark-bg);

  &:hover:not(:disabled),
  &:hover:not(.disabled) {
    background-color: var(--cart-button-darker-bg);
  }
}

.SC-Button-buy {
  background-color: var(--cart-button-darker-bg);
}

.sc-button-outline,
.Button-outline,
.SC-Button-outline,
.SC-Button-primary {
  background: var(--button-background-color);

  &:hover:not(:disabled),
  &:hover:not(.disabled) {
    background: var(--button-background-hover-color);
  }

  span {
    width: 100%;
    height: 100%;
    text-align: center;

    a {
      width: 100%;
      height: 100%;
      display: block;
    }
  }
}

.sc-button_input {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: var(--sc-font-small);
  color: var(--button-color);
}

.custom-empty-cart-btn {
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
}

/* Slider Controls */
.tns-controls button {
  background-color: transparent;
  transition: all 0.25s ease-in-out;
  width: 25px;
  height: 25px;

  &:hover {
    background-color: transparent;
  }
}

.tns-nav button {
  background: hsla(
    var(--sc-color-primary-h),
    var(--sc-color-primary-s),
    92%,
    1
  );

  &.tns-nav-active {
    background: var(--sc-color-primary);
  }
}

.irs--storeconnect .irs-from,
.irs--storeconnect .irs-single,
.irs--storeconnect .irs-to {
  background-color: var(--button-background-color);

  &:before {
    border-top: 3px solid var(--button-background-color);
  }
}

.irs--storeconnect .irs-bar {
  background-color: var(--button-background-color);
}

/* ==========================================================================
   5. FORMS & INPUTS
   ========================================================================== */
.SC-Field {
  position: relative;
  margin-top: 1.75rem;
  max-width: unset;

  &.sc-mt-micro {
    margin-top: 3px;
  }

  input {
    width: 100%;
  }

  /* Dropdown Triangle */
  &:has(.SC-Field_select) {
    position: relative;

    &:after {
      content: "";
      position: absolute;
      right: 15px;
      top: 0;
      bottom: 0;
      margin: auto;
      width: 0;
      height: 0;
      pointer-events: none;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 5px solid #9e9e9e;
    }
  }

  &:has(.SC-Field_select:focus):after {
    transform: rotate(180deg);
    border-top-color: var(--footer-text);
  }

  /* Floating Labels */
  &:has(.SC-Field_input:focus) .SC-Field_label,
  &:has(.SC-Field_select:focus) .SC-Field_label,
  &:has(.SC-Field_textarea:focus) .SC-Field_label,
  &:has(.SC-Field_input:not(:placeholder-shown)) .SC-Field_label,
  &:has(.SC-Field_select:not([value=""])) .SC-Field_label,
  &:has(.SC-Field_textarea:not(:placeholder-shown)) .SC-Field_label,
  &:has(.SC-Field_input:-webkit-autofill) .SC-Field_label {
    top: -5px;
    font-size: 0.75rem;
    left: 0;
    z-index: 1;
  }

  &:has(.SC-Field_select:focus) .SC-Field_label,
  &:has(.SC-Field_input:focus) .SC-Field_label {
    color: var(--footer-text);
  }

  &:has(.SC-Field_select:focus) .SC-Field_select {
    border-bottom: 2px solid var(--footer-text);
    box-shadow: 0 1px 0 0 var(--footer-text);
    background: transparent;
    outline: none;
  }
}

.Field_label,
.SC-Field_label {
  font-weight: var(--font-weight-normal);
}

.SC-Field_label {
  position: absolute;
  left: 10px;
  top: 1.25rem;
  z-index: 1;
  font-size: 1rem;
  color: #9e9e9e;
  pointer-events: none;
  transition: all 0.2s ease;
}

.SC-Field_input,
.SC-Field_textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #9e9e9e;
  background: transparent;
  font-size: 1rem;
  padding: 0.25rem 0 0.25rem 10px;
  outline: none;
  box-shadow: unset;

  &.error {
    border-bottom: solid 2px var(--error-red-form-border-color);
  }

  &:focus {
    border-bottom: 2px solid var(--footer-text);
    box-shadow: 0 1px 0 0 var(--footer-text);
    background: transparent;
    outline: none;
  }

  &[type="file"] {
    border-bottom: 0;
    padding: 20px 0 0 0;
    height: unset;

    &::file-selector-button {
      color: var(--black-color);
      border: var(--small-button-border);
      padding: var(--small-button-padding);
      background: var(--white-color);
      font-size: var(--sc-font-medium);
      transition: var(--button-transition);
      align-items: center;
      column-gap: var(--button-gap);
      justify-content: center;
      position: relative;
      text-decoration: none;
      border-radius: var(--button-radius);
      cursor: pointer;
    }
  }
}

.SC-Field_textarea {
  resize: none;
  z-index: 0;
  position: relative;
  padding-top: 15px;
  border: solid 1px transparent;
  outline: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(to bottom, transparent 20px, #9e9e9e 20px) border-box;

  &:focus {
    border: 2px solid transparent;
    background:
      linear-gradient(#ffffff, #ffffff) padding-box,
      linear-gradient(to bottom, transparent 20px, var(--footer-text) 20px)
        border-box;
  }
}

.SC-Field_select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #9e9e9e;
  background: transparent;
  font-size: 1rem;
  padding: 0.25rem 26px 0.25rem 10px;
  outline: none;
  box-shadow: unset;
  appearance: none;
  color: #212121;
  cursor: pointer;
  position: relative;
  max-width: unset;
}

.SC-Field_input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #212121 !important;
  background: transparent !important;
}

.SC-Field-special:not(.SC-Field-global) {
  input {
    font-size: var(--sc-font-small);
  }
  svg {
    height: 13px;
  }
}

.SC-Field_input-expanded {
  min-height: 60px;
}

.Field_error,
.SC-Field_error {
  color: var(--error-red-form-border-color);
  font-size: var(--sc-font-micro);
  margin-top: var(--sc-spacing-tiny);
}

/* Variant & Radio Inputs */
.SC-Variant_input:checked + .SC-Variant_label,
.SC-Variant_input:checked + .Variant_label,
.Variant_input:checked + .SC-Variant_label,
.Variant_input:checked + .Variant_label {
  color: var(--sc-menu-link-color-hover);

  &:after {
    border: 2px solid var(--sc-menu-link-color-hover);
    border-radius: calc(var(--button-radius) / 2);
  }
}

.SC-Variant_label,
.Variant_label {
  border-radius: calc(var(--button-radius) / 2);
  font-weight: var(--font-weight-normal);
}

/* Custom Selectors */
.custom-select-wrapper {
  position: relative;
  width: 100%;

  &[data-disabled="true"] .custom-select-trigger {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    pointer-events: none;
  }
}

.custom-select-trigger {
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;

  &.is-open {
    border-bottom: 2px solid var(--footer-text);
    box-shadow: 0 1px 0 0 var(--footer-text);
    background: transparent;
    outline: none;
  }
}

.custom-select-display {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
  padding-right: 15px;
}

.custom-select-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;

  &.is-open {
    display: block;
  }
}

.custom-select-search-box {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.custom-select-search-input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.custom-select-options {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 400px;
  overflow-y: auto;
}

.custom-option {
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.2s;

  &:hover {
    background-color: #f4f7fb;
    color: #0b0b5c;
  }

  &.hidden {
    display: none;
  }
}

.SC-Dropdown {
  .SC-Dropdown_button {
    border-radius: calc(var(--button-radius));
    color: var(--black-color);
    border: var(--small-button-border);
    padding: var(--small-button-padding);
    background: var(--white-color);

    &.is-active {
      border-radius: calc(var(--button-radius) / 3)
        calc(var(--button-radius) / 3) 0 0;
    }
  }

  .SC-Dropdown_body.SC-Dropdown_body-right.is-active {
    border-radius: calc(var(--button-radius) / 3) 0
      calc(var(--button-radius) / 3) calc(var(--button-radius) / 3);
  }
}

.Dropdown input:checked ~ .Dropdown_option,
.Dropdown input:checked ~ .SC-Dropdown_option,
.Dropdown_option:hover,
.SC-Dropdown input:checked ~ .Dropdown_option,
.SC-Dropdown input:checked ~ .SC-Dropdown_option,
.SC-Dropdown_option:hover {
  color: var(--selected-color);
}

/* ==========================================================================
   6. LAYOUT (HEADER, FOOTER, MENUS, CART, SEARCH)
   ========================================================================== */
/* Header */
.sc-header {
  background-color: var(--sc-header-bg);
  color: var(--sc-header-color);
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;

  .tier2.mega {
    padding-top: var(--sc-spacing-base);
  }

  .Menu_item.subtle,
  .Menu_item.tier2:not(.parent) > a,
  .Menu_item.tier3:not(.parent) > a,
  .SC-Menu_item.subtle,
  .SC-Menu_item.tier2:not(.parent) > a,
  .SC-Menu_item.tier3:not(.parent) > a {
    font-weight: var(--menu-font-weight);
    opacity: 1;
  }
}

.sc-header_inner {
  position: relative;
  top: 0;
  padding-left: var(--sc-spacing-small);
  padding-right: var(--sc-spacing-small);

  &.sticky {
    position: fixed !important;
    max-width: 100%;
    transition-duration: 1s;
    background: var(--sc-header-bg);
    box-shadow: var(--box-shadow-header);
    backdrop-filter: blur(10px);
    animation: slideDown 0.35s ease-out;

    .sc-cart {
      height: 100vh;
    }
  }
}

/* Menus */
.SC-Menu_link {
  font-weight: var(--menu-font-weight);
  &:hover {
    color: var(--footer-text-hover) !important;
  }
}

.SC-Menu.tier1 {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 0 !important;
}

.SC-Menu_item {
  position: relative;

  &.parent.parent {
    margin-bottom: 0;
    > a,
    ~ li > a {
      font-weight: var(--menu-font-weight);
    }
  }
}

.SC-Menu.tier2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 1000;

  .SC-Menu_item {
    margin-bottom: 0.5rem;
    &:last-child {
      margin-bottom: 0;
    }
  }
}

/* Footer */
.SC-Footer {
  --border-footer-top: solid 1px rgb(224, 230, 234);
  background: var(--footer-background);
  color: var(--footer-color);
  padding-top: var(--sc-spacing-base);
  z-index: 2;
  border-top: var(--border-footer-top);

  .SC-Footer_Bottom {
    padding-top: var(--sc-spacing-base);
    border-top: var(--border-footer-top);
    margin-top: var(--sc-spacing-base);
  }
}

.SC-Footer_Bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  padding: 0;
  gap: var(--footer-gap-desktop);
  font-size: 14px;
  line-height: 1.4;
}

.SC-Footer_Links {
  display: flex;
  gap: 8px 20px;
  justify-self: start;
  flex-wrap: wrap;

  a {
    color: var(--footer-text);
    text-decoration: none;
    font-weight: 500;
    transition:
      color 0.15s ease,
      text-decoration-color 0.15s ease;

    &:hover,
    &:focus-visible {
      color: var(--footer-text-hover);
      text-decoration: none;
    }
    &:focus-visible {
      outline: none;
    }
  }
}

.SC-Footer_Copyright {
  justify-self: center;
  color: var(--footer-muted);
  white-space: nowrap;
  font-weight: 400;
}

.SC-Footer_Socials {
  display: flex;
  gap: 12px;
  justify-self: end;

  a {
    i {
      color: var(--footer-text);
      font-size: 18px;
      line-height: 1;
      transition:
        color 0.15s ease,
        transform 0.15s ease;
      background: transparent;
    }

    &:hover i,
    &:focus-visible i {
      color: var(--footer-text-hover);
      transform: translateY(-1px);
    }
    &:focus-visible i {
      outline: none;
    }
  }
}

.SC-Footer_Inner_Left {
  display: flex;
  justify-content: center;

  .SC-Logo_image {
    transform: scale(2);
    transform-origin: center top;
  }
}

.footer-menu.menu-expanded {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "solutions products services"
    "solutions products research"
    "resources products research"
    "resources support research"
    "resources support research"
    "resources support about"
    "resources support about";
  list-style: none;
  gap: 0;

  ul {
    margin: 0;
    padding: 0;
  }
  .solutions {
    grid-area: solutions;
  }
  .products {
    grid-area: products;
  }
  .services {
    grid-area: services;
  }
  .resources {
    grid-area: resources;
  }
  .support {
    grid-area: support;
  }
  .research {
    grid-area: research;
  }
  .about {
    grid-area: about;
  }

  .SC-Menu_item.tier1 {
    list-style: none;

    .SC-Menu_link {
      display: inline-block;
      margin-bottom: 0;
      font-size: 20px;
      font-weight: 500;
      color: var(--footer-text);
      text-decoration: none;

      &:hover {
        text-decoration: none;
      }
    }
  }

  .SC-Menu.tier2 {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    opacity: 1;
    visibility: visible;
    top: unset;
    left: unset;
    transform: unset;
    min-width: unset;
    background: unset;
    border-radius: unset;
    box-shadow: unset;
  }

  .SC-Menu_item.tier2 {
    margin-bottom: 0;
    opacity: 1;

    .SC-Menu_link {
      font-size: 14px;
      font-weight: 400;
      text-decoration: none;
      color: var(--footer-muted);
      padding: 5px 0;
      opacity: 1;
      &:hover {
        text-decoration: none;
      }
    }
  }

  .SC-Menu.tier3 {
    margin: 0 0 0 15px;
    padding: 0;
    list-style: none;
    .SC-Menu_link {
      font-size: 14px;
      text-decoration: none;
      font-weight: 400;
      opacity: 1;
    }
  }
}

/* Search */
.sc-search {
  background-color: var(--sc-header-bg);
  color: var(--sc-header-color);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: -1;
  position: absolute;
  top: 0;

  &:not(.is-active) {
    -webkit-animation: fadeOut 0.2s ease-out both;
    animation: fadeOut 0.2s ease-out both;
  }

  &.is-active {
    background-color: var(--sc-header-bg);
    color: var(--sc-header-color);
    height: 100%;
    width: 100%;
    visibility: visible;
    z-index: var(--sc-depth-overlay);
    position: fixed;
    inset: 0;
    -webkit-animation: fadeIn 0.3s ease both;
    animation: fadeIn 0.3s ease both;
  }
}

.sc-search_input {
  background: var(--sc-header-bg);
  color: var(--sc-header-color);
  border-bottom: 1px solid var(--sc-shade-light);
  height: 100%;
  width: 100%;
  padding: var(--sc-spacing-medium) var(--sc-spacing-base);
  z-index: var(--sc-depth-neutral);

  &::placeholder {
    color: var(--sc-header-color);
    opacity: 0.9;
  }

  & + svg {
    fill: var(--sc-shade-light);
  }
}

#SC-GlobalSearch.SC-Field-icon {
  input {
    padding-left: var(--sc-spacing-base);
  }
  svg {
    height: 18px;
    width: 18px;
    left: unset;
    right: var(--sc-spacing-base);
  }
}

/* Cart */
.sc-cart {
  color: initial;
  z-index: 6;
  height: 100%;
  position: fixed;
  right: -380px;
  width: 380px;
  top: 0;
  transition: all 0.3s ease;
  max-width: calc(100% - 20px);

  &.is-active {
    right: 0;
    transition: all 0.3s ease;
  }
  &.is-active + .sc-cart_overlay {
    position: fixed;
  }
}

.sc-cart_header {
  display: flex;
  justify-content: space-between;

  h3 {
    font-weight: 500;
    color: var(--sc-menu-link-color-resting);
  }
}

.sc-cart_header_section {
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}

.sc-cart_item img {
  max-width: 70px;
}

.sc-cart_total {
  position: relative;
  width: 100%;
  background-color: white;
}

.sc-cart_actions {
  display: grid;
  gap: 8px;
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: auto;
  padding: 8px;
}

.sc-cart_button {
  display: inline-flex;
  justify-content: center;
  color: currentColor;
  font-size: 12px;
  height: 60px;
  letter-spacing: 0.2em;
  line-height: 60px;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
  font-weight: 500;
  border-radius: 50px;

  &.sc-bg-dark {
    background-color: var(--cart-button-dark-bg);
  }
  &.sc-bg-light {
    background-color: var(--button-color-green-light);
  }
  &.sc-bg-darkest {
    background-color: var(--cart-button-darker-bg);
  }
}

.sc-cart_overlay {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 5;
}

/* ==========================================================================
   7. COMPONENTS (CARDS, MODALS, STEPS, ETC)
   ========================================================================== */

/* Product Cards */
.Filters,
.SC-Filters {
  display: flex;
  flex-direction: column;
  background: var(--white-color);
  box-shadow: var(--box-shadow);
  padding: 14px;
  border-radius: var(--cards-border-radius);
}

.ProductCard,
.SC-ProductCard {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  box-shadow: var(--box-shadow);
  padding: 14px;
  border-radius: var(--cards-border-radius);
  overflow: hidden;
  background-color: var(--body-background);
  background-image: var(--body-background-image) !important;
}

.SC-ProductCard_image {
  aspect-ratio: 1 / 1;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: var(--cards-border-radius);
  border: solid 1px rgba(0, 0, 0, 0.1);

  img {
    object-fit: cover;
    position: absolute;
    object-position: center top;
  }
}

.SC-ProductCard_image_points {
  background-color: rgba(242, 242, 242, 0.7);
  margin-bottom: 0;
}
.SC-ProductCard_image_actions .SC-Button {
  font-size: var(--sc-font-base);
}
.SC-ProductCard_tag {
  font-size: var(--sc-font-small);
}

.SC-ProductCard_compare input {
  height: 20px;
  width: 20px;
  border-width: 2px;
  border-color: var(--sc-shade-dark);
}

/* Articles */
.SC-Article {
  font-size: var(--sc-font-medium);
  line-height: 1.7;
  max-width: var(--sc-article-width);
}

.SC-Article_data > span:not(:last-child)::after {
  position: absolute;
  content: "";
  background: var(--sc-shade-light);
  top: 7px;
  height: 35%;
  width: 1px;
  margin-left: 10px;
}

.SC-Article_hero_image,
.SC-Article_placeholder {
  display: block;
  height: 350px;
}

.SC-Article_hero_image img,
.SC-Article_hero_image svg,
.SC-Article_placeholder img,
.SC-Article_placeholder svg {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.SC-Article_cta {
  display: block;
}
.SC-Article_cta_body {
  max-width: 600px;
}
.SC-Article_image {
  aspect-ratio: 1/1;
}
.SC-Article_image img,
.SC-Article_image svg {
  object-fit: cover;
  height: 100%;
}

/* Steps & Progress (The red circle component) */
.sc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;

  &:hover {
    .sc-step__icon .card-container {
      transform: translate(-50%, 15%) scale(1.25);
    }
    .sc-step__icon .circle {
      transform: scaleY(1.02);
    }
  }

  &--success .sc-step__icon {
    background: #16a34a;
  }
  &--success .sc-step__badge {
    background: #dcfce7;
    color: #166534;
  }
  &--error .sc-step__icon {
    background: #dc2626;
  }
  &--error .sc-step__badge {
    background: #fee2e2;
    color: #991b1b;
  }
  &--disabled {
    opacity: 0.6;
    pointer-events: none;
  }
}

.sc-step__icon {
  position: relative;
  width: 80%;
  aspect-ratio: 3 / 1;
  margin: 0 auto;
  z-index: 2;
  overflow: visible;

  .il-stroke {
    stroke: #000000 !important;
  }

  .card-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-39%, 15%) rotate(-15deg);
    transform-origin: center bottom;
    padding: 10px;
    width: 150px;
    height: auto;
    background-color: #ffffff;
    z-index: 3;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 15px;
    border: solid 1px #000;

    svg {
      width: 100%;
      height: auto;
      display: block;
    }
  }

  .circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250%;
    background-color: #45bfbd;
    border-radius: 50%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 40%, 0% 40%);
    z-index: 1;
    transition: all 0.4s ease;
  }
}

.sc-step__icon__container {
  display: flex;
  align-items: center;
  justify-content: center;
  .sc-step__icon {
    margin: 10px;
  }
}

.step-icon {
  position: absolute;
  object-fit: cover;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  object-position: center;
  margin: auto;
  width: 100%;
  height: 100%;
}

.sc-step__badge {
  display: inline-block;
  background: #e9f0ff;
  color: #1e5bff;
  font-size: 18px;
  font-weight: bold;
  padding: 8px 17px;
  border-radius: 999px;
  border: solid 1px #1e5bff;
  margin-bottom: 12px;
  max-width: max-content;
  margin-inline: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: -33px;
  text-align: center;
  text-transform: uppercase;
}

.sc-step__title {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
  text-align: center;
}

.sc-step__description {
  font-size: 14px;
  line-height: 1.5;
  color: #475569;
  margin: 0 0 20px;
  text-align: center;
}

.sc-step__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  border: none;
  background: #1e5bff;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.1s ease,
    box-shadow 0.1s ease;

  &:hover {
    background: #1649d8;
  }
  &:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12) inset;
  }
}

.SC-step-title {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
}

/* Modals */
.sc-modal {
  width: calc(100% - 2rem);
  max-width: 500px;
  max-height: 80vh;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #e5efff;
  background: #ffffff;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.08);
  overflow-y: auto;

  &::backdrop {
    background: rgba(15, 23, 42, 0.45);
  }
}

.sc-modal__header {
  position: relative;
  padding-bottom: 1rem;
}
.sc-modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.25rem;
}
.sc-modal__description {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

.sc-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border: none;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: #475569;
  opacity: 0.7;

  &:hover {
    opacity: 1;
  }
}

.sc-modal__body {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Specific Cards & Containers */
.content-square {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px 20px;
  box-shadow: 0px 9px 24px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 4;
  margin-top: 0;

  .SC-Link {
    margin: 0 auto;
    display: block;
    text-align: center;
  }
}

.sc-preview-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.25s ease;

  &:hover {
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
    .sc-preview-card__media img {
      transform: scale(1.08);
    }
  }

  &.sc-animate-in {
    animation-duration: 0.85s;
  }
}

.sc-preview-card__media {
  position: relative;
  overflow: hidden;
  padding-bottom: 129%;
  img {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
    position: absolute;
    transition: transform 0.4s ease;
  }
}

.sc-preview-card__footer {
  padding: 12px;
  background-color: transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.sc-preview-card__cta {
  width: 100%;
  text-align: center;
  justify-content: center;

  &.sc-preview-darker-green {
    background: var(--cart-button-darker-bg);
  }
  &.sc-preview-dark-green {
    background: var(--cart-button-dark-bg);
  }
  &.sc-preview-light-green {
    background: var(--button-color-green-light);
  }
  &.sc-preview-light-blue {
    background: var(--button-color-blue-light);
  }
}

.school-info-card {
  background: #f6faff !important;
}

.school-info-header {
  border-bottom: solid 1px #c9c9c9;
  margin-bottom: 15px;

  .school-info-title {
    margin-bottom: 0;
    font-size: 20px;
    color: var(--footer-text);
    font-weight: 600;
  }
  .school-info-subtitle {
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--footer-text);
    font-weight: 400;
  }
}

.school-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}

.info-item {
  .info-label {
    display: block;
    font-weight: 600;
    font-size: 15px;
  }
  .info-value {
    font-size: 14px;
  }
}
.info-item-full {
  grid-column: 1 / -1;
}

.sc-success-box {
  max-width: 100%;
  margin: 24px 16px;
  padding: 24px 20px;
  background-color: var(--success-green-bg-color);
  border: 1px solid var(--success-green-border-color);
  border-radius: 16px;
  text-align: center;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

  &.is-error {
    background-color: var(--error-red-bg-color);
    border-color: var(--error-red-border-color);
    .sc-success-title {
      color: var(--error-red-title-color);
    }
    p {
      color: var(--error-red-text-color);
    }
  }
}

.sc-success-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--success-green-title-color);
}
.sc-success-lead {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--success-green-text-color);
}
.sc-success-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--success-green-text-color);
}

.Card__login {
  background: var(--white-color);
  box-shadow: var(--box-shadow);
  padding: 24px;
  border-radius: var(--cards-border-radius);
}

.Card__login__body ul {
  padding: 0 0 0 20px;
  list-style: none;

  li {
    position: relative;
    margin-bottom: 5px;

    &:before,
    &:after {
      content: "";
      width: 6px;
      height: 1px;
      background: var(--selected-color);
      position: absolute;
      left: -15px;
      top: 0;
      bottom: 0;
      margin: auto;
    }
    &:after {
      rotate: 90deg;
    }
  }
}

.register-title-section,
.custom_register_form_container .card {
  text-align: center;
  background: var(--white-color);
  box-shadow: var(--box-shadow);
  padding: 24px;
  border-radius: var(--cards-border-radius);
  max-width: 600px;
  margin-bottom: 25px;
  margin-inline: auto;

  h1 {
    margin-bottom: 5px;
  }
  sub {
    font-size: var(--font-size);
    margin-bottom: 25px;
    margin-top: 0;
    display: block;
    color: var(--footer-text);
  }
  p {
    font-size: var(--sc-font-tiny);
  }
}

.custom_register_form_container .card {
  text-align: left;
  &.hidden {
    display: none;
  }

  .card_title {
    color: var(--footer-text);
    border-bottom: solid 1px #c9c9c9;
    margin-bottom: 15px;
    padding-bottom: 5px;

    .card_title_head {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 0;
    }
    sub {
      margin-bottom: 0;
      font-size: 14px;
      color: var(--footer-text);
      font-weight: 400;
      display: block;
      bottom: 0;
      line-height: unset;
    }
  }
}

/* Other Sections */
.SC-BannerOverlay {
  background: #ffffff;
}

.SC-Breadcrumb_item::after {
  content: "•";
  font-size: 8px;
}
.SC-Breadcrumb_item a {
  font-size: 12px;
  text-transform: uppercase;
}

.SC-ProductDisplay_details {
  background: #fcfcfc;
  padding: 0 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.SC-QuantityPicker_trigger {
  border-radius: var(--button-radius);
}
.SC-QuantityPicker ul {
  border-radius: calc(var(--button-radius) / 2);
  padding: 10px;
  top: calc(100% + 6px);
  box-shadow: var(--box-shadow);
}

.SC-FeaturedCategories_header,
.SC-FeaturedCategories_wrapper,
.SC-FeaturedCategories_footer {
  max-width: calc(100% - 30px);
  margin-left: auto;
  margin-right: auto;
}

.SC-FeaturedProducts_header,
.SC-FeaturedProducts_wrapper,
.SC-FeaturedProducts_footer {
  max-width: calc(100% - 30px);
  margin-left: auto;
  margin-right: auto;
}

.sc-image {
  width: 100%;
  height: 200px;
  background: rgb(247, 247, 247);
}
.sc-image img,
.sc-image svg {
  object-fit: contain;
  width: 100%;
  max-height: 100%;
}

.SC-PageBanner {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sc-review {
  display: grid;
}
.sc-review_wrapper {
  gap: var(--sc-spacing-base);
  padding: 50px;
  height: -webkit-fill-available;
  text-align: center;
}
.sc-review_rating svg {
  fill: var(--sc-color-golden);
}
.sc-review_message {
  font-style: italic;
}

.SC-CategorySubcategories {
  font-size: var(--sc-font-small);
}

.SC-Tab_button {
  flex-grow: 2;
  padding: var(--sc-spacing-medium);
  text-align: center;
  box-shadow: 0 -1px 0 #eee inset;
  background-color: #f2f2f2;
  transition:
    0.3s background-color ease,
    0.3s box-shadow ease;

  &.is-active {
    box-shadow: -1px 0 #fff inset;
    background-color: #ffffff;
  }
}

.SC-TabPanel_body:not(.sc-hide) {
  border-top-width: 2px;
}

.SC-Traits_title h5 {
  color: var(--sc-shade-darkest);
  font-weight: var(--sc-font-bold);
  text-transform: initial;
  margin-bottom: var(--sc-spacing-tiny);
}

.sc-container-capsule {
  background: var(--white-color);
  box-shadow: var(--box-shadow);
  border-radius: calc(var(--button-radius) / 2);
}

.sc-login-container {
  display: grid;
  place-items: center;
  height: 100%;
  position: relative;
  min-height: calc(
    100vh - var(--header-height, 70px) - var(--footer-height, 120px)
  );
}

.pagination .page {
  color: var(--sc-shade-dark);
  font-size: var(--sc-font-micro);
  border-radius: calc(var(--button-radius) / 4);
  font-weight: 500;

  &.current {
    background-color: var(--button-background-hover-color);
  }
}

.pagination .first,
.pagination .last,
.pagination .next,
.pagination .prev {
  font-weight: var(--font-weight-normal);
  color: var(--button-background-hover-color);

  &:hover:not(:disabled) a {
    color: var(--button-background-color);
  }
}

.SC-Card {
  background: var(--white-color);
}

.SC-PageNav_content {
  background: var(--white-color);
  padding: var(--button-padding);
  box-shadow: var(--box-shadow);
  border-radius: calc(var(--button-radius) / 4);
  font-weight: var(--font-weight-semi-bold);
}

.SC-PageNav_link {
  color: var(--sc-menu-link-color-resting);
  &:hover,
  &.is-current {
    color: var(--footer-text-hover);
  }
}

.SC-Grid_main {
  form:not(.SC-ProductCard_action),
  table,
  .sc-shade-neutral,
  [data-cart-page-cart] {
    background: var(--white-color);
    padding: var(--button-padding);
    box-shadow: var(--box-shadow);
    border-radius: calc(var(--button-radius) / 4);
  }

  th {
    color: var(--sc-menu-link-color-resting);
  }

  td a {
    color: var(--sc-menu-link-color-resting);
    font-weight: bold;
    &:hover {
      color: var(--footer-text-hover);
    }
  }
}

[data-cart-page-cart],
.SC-Grid_summary {
  background: var(--white-color);
  padding: var(--button-padding);
  box-shadow: var(--box-shadow);
  border-radius: calc(var(--button-radius) / 4);
}

.SC-LineItem {
  [data-currency] {
    font-weight: bold;
  }
  a:hover {
    color: var(--footer-text-hover);
  }

  .SC-Field {
    margin-top: 0;
  }
}

.icon-svg-quote {
  width: 30px;
  height: 30px;
  fill: #0022aa;
  display: block;
  margin: auto;
}

.SC-margin-align {
  margin-top: 1.75rem;
  margin-bottom: var(--sc-spacing-base);
}

.SC-OrderTotal .SC-OrderTotal_line_label {
  font-weight: bold;
}
.SC-Panel_header_heading {
  color: var(--footer-text);
  font-weight: var(--font-weight-semi-bold);
}

.sc-payment-option {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 14px;
  border: 2px solid #dbeafe;
  background: #f8fbff;

  h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
  }
  p {
    font-size: 0.875rem;
    color: #475569;
    margin: 0.25rem 0;
  }
}

.sc-payment-option__icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.sc-payment-steps {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  counter-reset: step;

  li {
    display: block;
    align-items: flex-start;
    font-size: 0.875rem;
    color: #475569;
    flex-wrap: wrap;
    padding-left: 30px;
    position: relative;
    strong {
      display: block;
    }
    &::before {
      content: counter(step);
      counter-increment: step;
      width: 24px;
      height: 24px;
      border-radius: 999px;
      background: #2563eb;
      color: #ffffff;
      font-size: 0.75rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: absolute;
      left: 0;
    }
  }
}

.steps-section-title,
.sc-home-header {
  text-align: center;
}

.sc-home-header {
  margin-bottom: 30px;
  h1 {
    margin-bottom: 1px;
    font-weight: bold;
  }
  p {
    font-size: 18px;
    color: var(--footer-text);
    font-weight: 300;
    font-style: italic;
  }
}

.steps-section-title {
  margin-bottom: 30px;
  h2,
  p {
    color: var(--footer-text);
    margin-bottom: 0;
  }
  h2 {
    font-weight: 500;
  }
  p {
    font-weight: 300;
  }
}

section[data-cb="homepage-steps"] {
  background: var(--home-steps-background);
  background-position: 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: contain;
}

.sc-covered {
  padding: 2rem 1rem 3rem;
  background: transparent;
}
.sc-covered_start {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.sc-covered__inner {
  display: flex;
  justify-content: center;
}

.sc-covered__content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  background: var(--footer-text);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sc-covered__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;

  svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
  }
}

.sc-covered__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.sc-covered__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}
.sc-covered__description {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.9;
}

div[data-flash-container] {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  max-width: 500px;
  z-index: 3;

  .sc-container {
    transition:
      opacity 0.3s ease,
      max-height 0.3s ease;
    &.sc-hide {
      opacity: 0;
      max-height: 0;
      overflow: hidden;
    }
  }
}

.lastBlock {
  text-align: center;
  margin-block: 30px;

  .lastBlock_title {
    color: var(--footer-text);
    font-weight: bold;
    font-size: 3.5rem;
    margin-bottom: 20px;
  }
  .lastBlock_lead {
    color: var(--footer-text);
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 0;
  }
}

.quote-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  grid-template-rows: auto;
  grid-row-gap: 10px;
  grid-column-gap: 5px;
  background: #f6faff;
  color: var(--footer-text);
  margin-bottom: 15px;
  padding: var(--button-padding);
  box-shadow: var(--box-shadow);
  border-radius: calc(var(--button-radius) / 4);

  .quote-title {
    font-weight: bold;
  }
}

[data-bundle-add-to-cart-form] {
  align-self: center;
  display: flex;
  margin-bottom: 15px;
  .SC-QuantityPicker {
    height: 100%;
  }
  .SC-Button-primary {
    height: 47px;
    margin-bottom: 0;
  }
}

.info-list {
  margin: 0;
  padding-inline: 20px;
  list-style: none;
  padding-inline-end: 0;

  li {
    display: block;
    position: relative;
    margin-bottom: 5px;

    &:before,
    &:after {
      content: "";
      width: 6px;
      height: 1px;
      background: var(--selected-color);
      top: 0;
      bottom: 0;
      margin: auto;
      position: absolute;
      left: -15px;
    }
    &:after {
      rotate: 90deg;
    }
  }
}

.disclaimer {
  text-align: center;
  margin-block: 20px;
  font-style: italic;
  font-weight: var(--sc-font-bold);
  color: var(--button-background-color);
}

.SC-qty_input {
  width: 100%;
  text-align: center;
}
.SC-bundle-qty {
  max-width: 80px;
}
.SC-bundle-qty .sc-font-small {
  font-size: 15px !important;
}

.quote-new-cart {
  background-color: #f4f7fb;
  border-left: 4px solid #0b0b5c;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 24px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);

  p {
    margin: 0;
    font-size: 15px;
    color: #333344;
    line-height: 1.5;
    font-family: inherit;
  }
  a {
    color: #92278f;
    font-weight: 600;
    text-decoration: none;
    padding: 0 4px;
    transition: all 0.2s ease-in-out;
  }
  a:hover {
    text-decoration: underline;
    color: #701b6e;
  }
}

.custom-empty-cart-container {
  margin-top: 20px;
  text-align: right;
}

.account-shipping-information {
  padding: 10px 20px;
  border-radius: 8px;
  border-left: solid 3px #9228ce;
  background: #9228ce3f;
  margin-bottom: var(--sc-spacing-base);
  margin-top: var(--sc-spacing-base);
}

.morph-shape {
  width: 70px;
  height: 70px;
  background-color: #0056b3;
  margin-bottom: 25px;
  transition:
    background-color 0.6s ease,
    clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.6s ease;
  animation: rotate-shape 4s linear infinite;
}

.requestAccountLink {
  color: #92278f;
  font-weight: 600;
  padding: 0 4px;
  transition: all 0.2s ease-in-out;
  font-size: 14px;
  text-decoration: underline;

  &:hover {
    color: #00007c;
  }
}

.sc-bundle-details {
  margin-top: 4px;
}

.sc-bundle-details summary {
  cursor: pointer;
  list-style: none; 
  display: inline-flex;
  align-items: center;
  user-select: none;
  font-style: italic; 
  transition: opacity 0.2s ease;
}

.sc-bundle-details summary:hover {
  opacity: 0.7;
}

.sc-bundle-details summary::-webkit-details-marker {
  display: none;
}

.sc-bundle-details summary::before {
  content: "▶";
  font-size: 0.7em;
  margin-right: 6px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.sc-bundle-details[open] summary::before {
  transform: rotate(90deg);
}

.sc-bundle-details[open] ul {
  animation: scFadeInDown 0.3s ease-out forwards;
}

/* Contenedor principal de la tabla falsa */
.sc-table-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Fila genérica */
.cart-row {
  display: flex;
  align-items: center;
  padding: 12px 8px;
  border-bottom: 1px solid #e2e8f0;
}

/* Fila de encabezados */
.cart-header {
  font-weight: bold;
  background-color: #f8fafc;
  border-bottom: 2px solid #cbd5e1;
}

/* Columnas */
.cart-col {
  flex: 1 1 0; /* Todas las columnas toman el mismo espacio disponible */
  padding: 0 8px;
  min-width: 80px;
}

/* Columnas centradas (iconos y botones) */
.cart-col-center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* RESPONSIVIDAD PARA MÓVILES */
@media (max-width: 768px) {
  .cart-header {
    display: none; /* Ocultamos los títulos de arriba en móvil */
  }
  .cart-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 16px;
  }
  .cart-col {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
  }
  .cart-col:last-child {
    border-bottom: none;
  }
  /* Inyecta el título de la columna antes del valor en móviles */
  .cart-col::before {
    content: attr(data-label);
    font-weight: 600;
    color: #64748b;
  }
  .cart-col-center {
    justify-content: space-between; /* En móvil, el icono queda a la derecha y el título a la izquierda */
  }
}

@keyframes scFadeInDown {
  0% { 
    opacity: 0; 
    transform: translateY(-5px); 
  }
  100% { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* ==========================================================================
   8. RESPONSIVE / MEDIA QUERIES (Ordered from smallest to largest)
   ========================================================================== */

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
  .sc-animate-in {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Hover Interactions */
@media (hover: hover) and (pointer: fine) {
  .SC-Menu_item.parent:hover > .SC-Menu.tier2 {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* Mobile Specific (Max-width 768px) */
@media (max-width: 768px) {
  .SC-Menu.tier1 {
    flex-direction: column;
    gap: 0;
  }

  .SC-Menu_item.parent > .SC-Menu.tier2 {
    position: static;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 0 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.3s ease;
  }

  .SC-Menu_item.parent.is-open > .SC-Menu.tier2 {
    max-height: 1000px;
  }

  .footer-menu.menu-expanded {
    grid-template-columns: 1fr;
    grid-template-areas:
      "solutions"
      "resources"
      "products"
      "support"
      "services"
      "research"
      "about";
    row-gap: 40px;
  }

  .school-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Small Devices (Min-width 640px) */
@media (min-width: 640px) {
  .sc-modal {
    padding: 2rem;
  }

  .sc-modal__title {
    font-size: 1.75rem;
  }
}

/* Tablet & Up (Min-width 768px) */
@media screen and (min-width: 768px) {
  .SC-Article_hero_image,
  .SC-Article_placeholder {
    height: 450px;
  }

  .SC-CardGrid.is-offset-by-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .SC-Field_input-expanded {
    font-size: 17px;
  }

  .sc-search_button svg {
    width: 30px;
    height: 30px;
  }

  .sc-align-items-end-md {
    align-items: flex-end;
  }

  .sc-text-right-md {
    text-align: right;
  }

  .sc-success-box {
    max-width: 720px;
    margin: 40px auto;
    padding: 32px 40px;
  }

  .sc-success-title {
    font-size: 24px;
  }

  .sc-success-lead {
    font-size: 16px;
  }

  .sc-success-text {
    font-size: 15px;
  }

  .sc-step {
    padding: 0;
  }

  .sc-step__title {
    font-size: 22px;
  }

  .sc-step__description {
    font-size: 15px;
  }

  .sc-covered {
    padding: 3rem 2rem 4rem;
  }

  .sc-covered__content {
    padding: 1.5rem 2rem;
  }

  .sc-covered__title {
    font-size: 1.125rem;
    color: var(--white-color);
  }

  .sc-covered__description {
    font-size: 0.95rem;
  }
}

/* Tablet Max (Max-width 991px) */
@media (max-width: 991px) {
  .SC-Footer_Bottom {
    grid-template-columns: 1fr;
    grid-template-areas:
      "socials"
      "links"
      "copyright";
    gap: var(--footer-gap-mobile);
    text-align: center;
  }

  .SC-Footer_Socials {
    grid-area: socials;
    justify-self: center;
    margin-bottom: 4px;
  }

  .SC-Footer_Links {
    grid-area: links;
    justify-content: center;
    width: 100%;
  }

  .SC-Footer_Copyright {
    grid-area: copyright;
    justify-self: center;
  }
}

/* Tablet strictly below Desktop (Max-width 992px) */
@media screen and (max-width: 992px) {
  .SC-Count {
    top: unset;
  }

  .SC-Menu.dropdown:not(.SC-Cart) {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    flex-wrap: nowrap;
    flex-direction: column;
    overflow-y: auto;
    padding: var(--sc-spacing-large);
    opacity: 0;
    pointer-events: none;
    background-color: white;
    z-index: var(--sc-depth-overlay);
    transform: scale(0.9);
    transition:
      100ms transform ease,
      100ms opacity ease;
  }

  .SC-Menu.dropdown.is-active {
    opacity: 1;
    pointer-events: inherit;
    transform: scale(1);
    margin-left: 0;

    .Menu_button,
    .SC-Menu_button {
      display: block;
      position: absolute;
      right: 10px;
      width: 25px;
      height: 25px;
      font-size: 30px;
      text-align: center;
      top: 10px;
      line-height: 25px;
      padding: 0;
      margin: 0;
      color: var(--sc-menu-link-color-resting);
    }
  }

  .SC-Menu.center {
    justify-content: start;
  }

  .sc-ps-small-sm {
    padding-left: var(--sc-spacing-small);
    padding-right: var(--sc-spacing-small);
  }
}

/* Desktop (Min-width 992px) */
@media screen and (min-width: 992px) {
  .SC-ArticleCard_image {
    max-height: 450px;
    width: 100%;
  }

  .SC-CardGrid.is-offset-by-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .SC-Count {
    position: absolute;
    right: -15px;
    top: -5px;
  }

  .SC-FeaturedCategories_header,
  .SC-FeaturedCategories_wrapper,
  .SC-FeaturedCategories_footer,
  .SC-FeaturedProducts_header,
  .SC-FeaturedProducts_wrapper,
  .SC-FeaturedProducts_footer {
    max-width: calc(100% - 60px);
  }

  .sc-header_inner {
    padding-left: var(--sc-spacing-large);
    padding-right: var(--sc-spacing-large);
  }

  .sc-header {
    border-bottom: 1px solid var(--sc-shade-lightest);
  }

  .sc-header .tier2.mega {
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }

  .sc-image {
    height: 300px;
  }
}

/* Large Desktop (Min-width 1400px) */
@media only screen and (min-width: 1400px) {
  .SC-Icon-large {
    width: var(--sc-icon-size-large);
    height: var(--sc-icon-size-large);
  }
}

/* Extra Large Desktop (Min-width 1440px) */
@media screen and (min-width: 1440px) {
  .SC-Article_hero_image,
  .SC-Article_placeholder {
    height: 550px;
  }

  .SC-CardGrid.is-offset-by-sidebar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .SC-Footer .container {
    overflow: hidden;

    .SC-Footer_Inner {
      display: block;

      .SC-Menu.tier1.footer-menu.menu-expanded {
        margin-top: 30px;
      }

      .SC-Menu_item.parent > .SC-Menu.tier2 {
        max-height: unset;
        padding: 0;
      }
    }
  }
}
