.cart-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Instrument Sans', sans-serif;
  min-height: 60vh;
}
.page-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: -0.5px;
}
.empty-cart {
  text-align: center;
  padding: 60px 20px;
}
.empty-cart i {
  font-size: 60px;
  color: #ddd;
  margin-bottom: 20px;
}
.empty-cart h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.empty-cart p {
  color: #666;
  margin-bottom: 30px;
}
.btn-black {
  background-color: black;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
}
.cart-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}
.cart-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  font-size: 13px;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 1px;
  text-align: center;
}
.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #eee;
  align-items: center;
}
.product-info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}
.item-image {
  width: 100px;  
  min-width: 100px; 
  height: 100px;    
  border-radius: 8px;
  overflow: hidden;
  background-color: #f9f9f9;
}
.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center;
}
.item-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.item-name {
  display: block;
  font-weight: bold;
  color: black;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 5px;
}
.item-variant {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}
.btn-remove {
  font-size: 12px;
  color: #999;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  transition: color 0.3s;
}
.btn-remove:hover { color: #dc2626; border-color: #dc2626; }
.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  width: fit-content;
}
.qty-selector button {
  background: white;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
}
.qty-selector button:hover { background: #f5f5f5; }
.qty-selector span {
  width: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
.item-total {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}
.stripe-badge {
  margin-top: 20px;
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
}
.stripe-badge p {
  font-size: 11px;
  color: #999;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stripe-badge img {
  height: 25px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.stripe-badge img:hover {
  opacity: 1;
}
.item-price-mobile { display: none; }
.cart-summary {
  background-color: #f9f9f9;
  padding: 30px;
  height: fit-content;
  position: sticky;
  top: 100px;
}
.cart-summary h3 {
  margin-bottom: 20px;
  font-size: 18px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 15px;
  color: #555;
}
.item-quantity {
  display: flex;
  align-items: center;
  justify-content: center;
}
.shipping-text { font-size: 12px; color: #888; font-style: italic; }
.divider { height: 1px; background: #ddd; margin: 20px 0; }
.summary-row.total {
  color: black;
  font-weight: 700;
  font-size: 20px;
}
.taxes-note {
  font-size: 12px;
  color: #999;
  margin-bottom: 25px;
  text-align: center;
}
.btn-checkout {
  display: block;
  background-color: black;
  color: white;
  text-align: center;
  padding: 18px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  transition: background 0.3s;
}
.btn-checkout:hover { background-color: #333; }
.payment-methods {
  margin-top: 20px;
  text-align: center;
  font-size: 24px;
  color: #ccc;
  display: flex;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 768px) {
  .cart-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cart-header { display: none; }
  .cart-item {
    grid-template-columns: 1fr; 
    gap: 20px;
    position: relative;
  }
  .product-info {
    width: 100%;
  }
  .item-image {
    width: 80px;
    min-width: 80px;
    height: 80px;
  }
  .item-quantity {
    justify-content: flex-start;
    padding-left: 100px;
  }
  .item-total {
    position: absolute;
    top: 25px;
    right: 0;
  }
}