
/* FS GLOBAL PARTS CART START */
.fs-global-cart-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 16000;
  min-width: 178px;
  min-height: 58px;
  border-radius: 20px;
  border: 1px solid rgba(36,171,14,.45);
  background: linear-gradient(135deg, rgba(36,171,14,.96), rgba(57,224,27,.94));
  color: #07120A;
  box-shadow: 0 20px 58px rgba(0,0,0,.42), 0 0 0 7px rgba(36,171,14,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 1000;
  cursor: pointer;
}

.fs-global-cart-count {
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(7,18,10,.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fs-global-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 17000;
  background: rgba(4,8,15,.76);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: flex-end;
  padding: 18px;
}

.fs-global-cart-overlay.is-open {
  display: flex;
}

.fs-global-cart-panel {
  width: min(520px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(36,171,14,.20), transparent 34%),
    linear-gradient(180deg, rgba(24,30,42,.98), rgba(8,12,20,.98));
  color: #fff;
  box-shadow: 0 36px 120px rgba(0,0,0,.58);
  font-family: "Manrope", Arial, sans-serif;
}

.fs-global-cart-head {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 12px;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.fs-global-cart-head h3 {
  margin: 0;
  font-family: "Jura", "Manrope", Arial, sans-serif;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -.055em;
}

.fs-global-cart-close {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.fs-global-cart-body {
  padding: 18px 22px 22px;
}

.fs-global-cart-empty {
  color: #A8B3C7;
  line-height: 1.5;
}

.fs-global-cart-item {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(7,12,22,.54);
  padding: 14px;
  margin-bottom: 10px;
}

.fs-global-cart-item-title {
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 8px;
}

.fs-global-cart-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.fs-global-cart-chip {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(36,171,14,.11);
  border: 1px solid rgba(36,171,14,.22);
  color: #B9FFAE;
  font-size: 12px;
  font-weight: 900;
}

.fs-global-cart-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.fs-global-cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fs-global-cart-qty button,
.fs-global-cart-remove {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  border-radius: 12px;
  min-width: 36px;
  height: 36px;
  cursor: pointer;
  font-weight: 900;
}

.fs-global-cart-remove {
  padding: 0 12px;
  color: #ffb6b6;
}

.fs-global-cart-form {
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 16px;
}

.fs-global-cart-form label {
  display: block;
  margin: 0 0 6px;
  color: #DCE7F5;
  font-size: 13px;
  font-weight: 900;
}

.fs-global-cart-form input,
.fs-global-cart-form textarea {
  width: 100%;
  min-height: 50px;
  margin-bottom: 10px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(6,10,17,.72);
  color: #fff;
  padding: 12px 13px;
  font: inherit;
  outline: none;
}

.fs-global-cart-form textarea {
  min-height: 92px;
  resize: vertical;
}

.fs-global-cart-submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg,#24AB0E,#39E01B);
  color: #07120A;
  font: inherit;
  font-weight: 1000;
  cursor: pointer;
}

.fs-global-cart-status {
  min-height: 18px;
  margin-top: 10px;
  color: #A8B3C7;
  font-size: 13px;
}

@media (max-width: 760px) {
  .fs-global-cart-float {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }

  .fs-global-cart-overlay {
    padding: 10px;
    align-items: flex-end;
  }

  .fs-global-cart-panel {
    border-radius: 24px;
    max-height: calc(100vh - 20px);
  }
}
/* FS GLOBAL PARTS CART END */
