/* GearedUpLabs Shop — cart & checkout styling, matches the site's cyan/black palette */

.gul-cart-app,
.gul-checkout-app {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 0;
  font-family: 'Manrope', sans-serif;
  color: #1B1D1F;
}

.gul-empty-msg {
  text-align: center;
  color: #6B6F73;
  font-size: 14.5px;
  padding: 40px 0;
}
.gul-empty-msg a {
  color: #0E9BAA;
  font-weight: 600;
}

.gul-cart-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #E6E3E0;
}

.gul-cart-line-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #07080A;
  border-radius: 6px;
  padding: 4px;
  flex-shrink: 0;
}

.gul-cart-line-info {
  flex: 1;
  min-width: 0;
}
.gul-cart-line-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.gul-cart-line-desc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #6B6F73;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.gul-cart-qty {
  width: 54px;
  padding: 6px 8px;
  border: 1px solid #E6E3E0;
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
}
.gul-cart-qty-static {
  font-size: 13px;
  color: #6B6F73;
  white-space: nowrap;
}

.gul-cart-line-total {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 14px;
  min-width: 64px;
  text-align: right;
}

.gul-cart-remove {
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: #6B6F73;
  cursor: pointer;
  padding: 4px 6px;
}
.gul-cart-remove:hover {
  color: #22DDEA;
}

.gul-cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 17px;
  border-top: 2px solid #07080A;
  margin-top: 6px;
}

.gul-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  letter-spacing: .02em;
  width: 100%;
  transition: transform .2s ease, box-shadow .2s ease, background .15s;
}
.gul-btn-primary {
  background: #22DDEA;
  color: #052226;
}
.gul-btn-primary:hover {
  background: #3EE6F0;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(34, 221, 234, .28);
}
.gul-btn-primary:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.gul-checkout-note {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #6B6F73;
  margin-top: 16px;
  line-height: 1.6;
}

.gul-checkout-error {
  text-align: center;
  color: #C41E2E;
  font-size: 13px;
  margin-top: 12px;
  padding: 10px;
  background: rgba(196, 30, 46, .07);
  border-radius: 6px;
}

.gul-order-received {
  max-width: 560px;
  margin: 60px auto;
  text-align: center;
  padding: 0 24px;
}
.gul-order-received h2 {
  font-family: 'Archivo', sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
  color: #1B1D1F;
}
.gul-order-received p {
  color: #6B6F73;
  font-size: 14.5px;
}

@media (max-width: 560px) {
  .gul-cart-line {
    flex-wrap: wrap;
  }
  .gul-cart-line-total {
    margin-left: auto;
  }
}
