/* ══ CART DRAWER ══ */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 200;
}
.cart-overlay.open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: #fff;
  z-index: 201;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  border-left: 1px solid #e8e8e8;
}

.cart-drawer.open { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 36px 24px;
  border-bottom: 1px solid #e8e8e8;
}

.cart-title {
  font-family: 'YeezyTstar', sans-serif;
  font-size: 20px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
}

.cart-close {
  background: none;
  border: none;
  font-family: 'YeezyTstar', sans-serif;
  font-size: 20px;
  cursor: pointer;
  color: #aaa;
}

.cart-close:hover { color: #000; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 36px;
}

.cart-empty {
  font-family: 'YeezyTstar', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #bbb;
  text-transform: uppercase;
  text-align: center;
  margin-top: 60px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item-thumb {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f4f4f4;
  border: 1px solid #e8e8e8;
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info { flex: 1; }

.cart-size-divider {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: #ccc;
  margin: 0 8px;
  vertical-align: middle;
}

.cart-item-name {
  font-family: 'YeTest';
  font-size: 20px;
  color: #000;
  margin-bottom: 4px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.cart-item-sub {
  font-family: 'YeezyTstar', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #aaa;
  text-transform: uppercase;
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cart-item-price {
  font-family: 'YeezyTstar', sans-serif;
  font-size: 16px;
  color: #000;
}

.cart-item-remove {
  background: none;
  border: none;
  font-family: 'YeezyTstar', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #bbb;
  cursor: pointer;
  text-transform: uppercase;
}

.cart-item-remove:hover { color: #000; }

.cart-footer {
  padding: 24px 36px 36px;
  border-top: 1px solid #e8e8e8;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}

.cart-total-label {
  font-family: 'YeezyTstar', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #aaa;
}

.cart-total-amount {
  font-family: 'YeTest';
  font-size: 28px;
  color: #000;
}

.checkout-btn {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 18px;
  font-family: 'YeezyTstar', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-bottom: 10px;
}

.checkout-btn:hover { opacity: 0.65; }

.continue-btn {
  width: 100%;
  background: none;
  color: #000;
  border: 1px solid #000;
  padding: 16px;
  font-family: 'YeezyTstar', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}

.continue-btn:hover { opacity: 0.5; }
