/* ===== Buy Now buttons ===== */
.sqc-buy-btn {
  display: inline-block;
  background: #2e7d32;
  color: #fff !important;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.sqc-buy-btn:hover {
  background: #256428;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ===== Floating cart toggle ===== */
.sqc-cart-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 20px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.sqc-cart-count {
  background: #e53935;
  border-radius: 50%;
  padding: 2px 8px;
  font-size: 13px;
  margin-left: 6px;
}

/* ===== Slide-in cart panel ===== */
.sqc-cart-panel {
  position: fixed;
  top: 0;
  right: -380px;
  width: 360px;
  max-width: 90vw;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: right 0.25s ease;
  display: flex;
  flex-direction: column;
}
.sqc-cart-panel.sqc-open {
  right: 0;
}
.sqc-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
}
.sqc-cart-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
.sqc-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px;
}
.sqc-cart-item {
  display: grid;
  grid-template-columns: 1fr auto 60px auto;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}
.sqc-qty-input {
  width: 55px;
  padding: 4px;
}
.sqc-remove-btn {
  background: none;
  border: none;
  color: #e53935;
  font-size: 18px;
  cursor: pointer;
}
.sqc-empty {
  color: #888;
  text-align: center;
  margin-top: 40px;
}
.sqc-cart-error {
  margin: 0 20px 12px;
  padding: 12px;
  background: #fdecea;
  color: #b71c1c;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
}
.sqc-cart-footer {
  padding: 16px 20px;
  border-top: 1px solid #eee;
}
.sqc-cart-total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 12px;
}
.sqc-checkout-btn {
  width: 100%;
  background: #2e7d32;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.sqc-checkout-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
