.cart-page {
  min-height: 100vh;
  padding: 120px 8%;
  background: radial-gradient(circle at top left, #3a003a, #050007);
  color: #fff;
}

.cart-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 50px;
}

.cart-wrapper {
  display: flex;
  gap: 40px;
}

/* CART ITEMS */
.cart-items {
  flex: 2;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  margin-bottom: 9px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  transition: 0.4s;
  /* box-shadow: 0 0 30px rgba(255,47,146,0.15); */
}

.cart-item:hover {
  /* box-shadow: 0 0 80px rgba(255,47,146,0.35); */
  transform: translateY(-4px);
}

.cart-item img {
  width: 100px;
}

.item-details h3 {
  margin-bottom: 5px;
}

.item-details p {
  font-size: 14px;
  opacity: 0.7;
}

/* QTY */
.qty {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.qty button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #ff2f92;
  color: #fff;
  cursor: pointer;
}

/* PRICE */
.item-price {
  font-size: 18px;
  text-align: right;
}

.remove {
  display: block;
  margin-top: 8px;
  cursor: pointer;
  color: #ff2f92;
}

/* SUMMARY */
.cart-summary {
  flex: 1;
  padding: 30px;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.cart-summary h2 {
  margin-bottom: 25px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  opacity: 0.9;
}

.summary-row.total {
  font-size: 20px;
  margin-top: 20px;
}

.checkout-btn {
  width: 100%;
  margin-top: 30px;
  padding: 15px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff2f92, #a855f7);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  /* box-shadow: 0 0 40px rgba(255,47,146,0.6); */
  transition: 0.4s;
}

/* .checkout-btn:hover {
  box-shadow: 0 0 80px rgba(255,47,146,0.9);
} */



/* =========================
   RESPONSIVE CART PAGE
========================= */

/* Large screens (4K, wide monitors) */
@media (min-width: 1600px) {
  .cart-page {
    padding: 140px 12%;
  }

  .cart-title {
    font-size: 3.5rem;
  }

  .cart-item img {
    width: 120px;
  }
}

/* Laptops & desktops */
@media (max-width: 1200px) {
  .cart-wrapper {
    gap: 25px;
  }

  .cart-item {
    padding: 18px;
  }
}

/* Tablets (iPad, small laptops) */
@media (max-width: 992px) {
  .cart-wrapper {
    flex-direction: column;
  }

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

  .cart-item {
    gap: 15px;
  }
}

/* Large mobiles (landscape phones) */
@media (max-width: 768px) {
  .cart-page {
    padding: 100px 5%;
  }

  .cart-title {
    font-size: 2.4rem;
  }

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

  .cart-item img {
    width: 90px;
  }

  .item-price {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  }

  .remove {
    font-size: 18px;
  }
}

/* Small mobiles */
@media (max-width: 576px) {
  .cart-title {
    font-size: 2rem;
  }

  .cart-item {
    padding: 15px;
    border-radius: 16px;
  }

  .item-details h3 {
    font-size: 16px;
  }

  .item-details p {
    font-size: 13px;
  }

  .qty button {
    width: 26px;
    height: 26px;
  }

  .cart-summary {
    padding: 20px;
    border-radius: 18px;
  }

  .checkout-btn {
    padding: 13px;
    font-size: 15px;
  }
}

/* Extra small devices (very small phones) */
@media (max-width: 400px) {
  .cart-title {
    font-size: 1.8rem;
  }

  .cart-item img {
    width: 75px;
  }

  .summary-row {
    font-size: 14px;
  }
}


/* =========================
   RESPONSIVE CART PAGE
========================= */

/* Large screens (4K, wide monitors) */
@media (min-width: 1600px) {
  .cart-page {
    padding: 140px 12%;
  }

  .cart-title {
    font-size: 3.5rem;
  }

  .cart-item img {
    width: 120px;
  }
}

/* Laptops & desktops */
@media (max-width: 1200px) {
  .cart-wrapper {
    gap: 25px;
  }

  .cart-item {
    padding: 18px;
  }
}

/* Tablets (iPad, small laptops) */
@media (max-width: 992px) {
  .cart-wrapper {
    flex-direction: column;
  }

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

  .cart-item {
    gap: 15px;
  }
}

/* Large mobiles (landscape phones) */
@media (max-width: 768px) {
  .cart-page {
    padding: 100px 5%;
  }

  .cart-title {
    font-size: 2.4rem;
  }

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

  .cart-item img {
    width: 90px;
  }

  .item-price {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  }

  .remove {
    font-size: 18px;
  }
}

/* Small mobiles */
@media (max-width: 576px) {
  .cart-title {
    font-size: 2rem;
  }

  .cart-item {
    padding: 15px;
    border-radius: 16px;
  }

  .item-details h3 {
    font-size: 16px;
  }

  .item-details p {
    font-size: 13px;
  }

  .qty button {
    width: 26px;
    height: 26px;
  }

  .cart-summary {
    padding: 20px;
    border-radius: 18px;
  }

  .checkout-btn {
    padding: 13px;
    font-size: 15px;
  }
}

/* Extra small devices (very small phones) */
@media (max-width: 400px) {
  .cart-title {
    font-size: 1.8rem;
  }

  .cart-item img {
    width: 75px;
  }

  .summary-row {
    font-size: 14px;
  }
}
