﻿/* CART & FAVORITES PAGES STYLES */

.cart-page {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(146, 127, 187, 0.35);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 16px;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(242, 216, 226, 0.95);
  border-radius: 14px;
  padding: 10px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cart-item-image {
  width: 110px;
  height: 88px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffeef5, #ffd2e4);
}

.cart-item-image-2 {
  background: linear-gradient(135deg, #eef6ff, #cfe3ff);
}

.cart-item-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.cart-item-meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-remove-btn {
  border: none;
  background: transparent;
  color: #b91c1c;
  font-size: 12px;
  cursor: pointer;
}

.cart-item-price {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  white-space: nowrap;
}

.cart-summary {
  background: #fff;
  border: 1px solid rgba(242, 216, 226, 0.95);
  border-radius: 14px;
  padding: 12px;
  height: fit-content;
  position: sticky;
  top: 90px;
}


.cart-summary-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}

.cart-summary-row,
.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 8px 0;
}

.cart-summary-row {
  border-bottom: 1px dashed rgba(242, 216, 226, 0.95);
}

.cart-summary-total {
  font-size: 15px;
  font-weight: 800;
  padding-top: 10px;
}

.cart-discount {
  color: #b91c1c;
}

.cart-checkout-btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

.cart-continue-link {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* CLIENT PAGES OVERRIDES & EXTENSIONS */
.cart-item-actions-wrap .btn-add-cart {
  width: auto !important;
  height: auto !important;
  border-radius: 8px !important;
  flex: initial !important;
  display: inline-flex !important;
  padding: 8px 16px !important;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  .cart-item {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .cart-item-image {
    width: 84px;
    height: 70px;
  }

  .cart-item-price {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }
}
