.shopping-cart {
  padding: 100px 20px;
  background: #0f0f0f;
  color: white;
}

.cart-wrapper {
  max-width: 1250px;
  margin: auto;

  display: grid;
  grid-template-columns: 2fr 1fr;

  gap: 30px;
}

/* LEFT */
.cart-left {
  background: #151515;

  border-radius: 20px;

  padding: 30px;

  border: 1px solid #222;
}

.cart-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 30px;
}

.cart-top h2 {
  font-size: 32px;
}

.cart-top span {
  color: #aaa;
}

/* EMPTY */
.empty-cart {
  text-align: center;
  padding: 60px 20px;
}

.empty-cart h3 {
  margin-bottom: 10px;
}

.empty-cart p {
  color: #888;
}

/* ITEMS */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;

  background: #101010;

  border-radius: 18px;

  padding: 18px;

  border: 1px solid #222;
}

/* IMAGE */
.cart-image {
  width: 110px;
  height: 130px;

  border-radius: 14px;

  overflow: hidden;
}

.cart-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* INFO */
.cart-info {
  flex: 1;
}

.cart-info h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.cart-info p {
  color: #aaa;
  margin-bottom: 18px;
}

/* QUANTITY */
.qty-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-controls button {
  width: 38px;
  height: 38px;

  border: none;

  border-radius: 10px;

  background: #222;

  color: white;

  cursor: pointer;

  font-size: 18px;

  transition: 0.3s ease;
}

.qty-controls button:hover {
  background: #f59e0b;
  color: black;
}

.qty-controls span {
  min-width: 20px;
  text-align: center;

  font-weight: bold;
}

/* RIGHT */
.cart-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;

  gap: 15px;
}

.cart-right strong {
  color: #f59e0b;
  font-size: 22px;
}

.remove-btn {
  border: none;
  background: transparent;

  color: #ff5f5f;

  cursor: pointer;

  font-size: 14px;
}

/* SUMMARY */
.cart-summary {
  background: #151515;

  border-radius: 20px;

  padding: 30px;

  border: 1px solid #222;

  height: fit-content;

  position: sticky;
  top: 100px;
}

.cart-summary h3 {
  font-size: 24px;
  margin-bottom: 30px;
}

.summary-row {
  display: flex;
  justify-content: space-between;

  margin-bottom: 20px;
}

.summary-row strong {
  color: #f59e0b;
  font-size: 22px;
}

/* BUTTON */
.checkout-btn {
  width: 100%;

  margin-top: 25px;

  padding: 16px;

  border: none;

  border-radius: 12px;

  background: linear-gradient(
    90deg,
    #f59e0b,
    #f97316
  );

  color: black;

  font-weight: bold;

  cursor: pointer;

  transition: 0.3s ease;
}

.checkout-btn:hover {
  transform: translateY(-2px);
}

.checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* TABLET */
@media (max-width: 992px) {
  .cart-wrapper {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: relative;
    top: 0;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .shopping-cart {
    padding: 80px 15px;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-image {
    width: 100%;
    height: 280px;
  }

  .cart-right {
    width: 100%;

    flex-direction: row;

    justify-content: space-between;

    align-items: center;
  }

  .cart-top h2 {
    font-size: 26px;
  }
}