.cart-btn { position: relative; }

/* Product card price label */
.product-name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.product-name-row h3 { margin-bottom: 0; }
.product-price {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  background: #ffffff;
  color: #050505;
  font-size: 10px;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}

/* Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(90vw, 420px);
  height: 100dvh;
  background: #0e0e0e;
  z-index: 200;
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.cart-drawer.open { right: 0; }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

/* Header */
.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.cart-drawer-header h3 {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}
.cart-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.cart-close:hover { background: #ffffff; color: #050505; }

/* Items */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-empty {
  color: #a6a6a6;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  margin-top: 48px;
}
.cart-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-item:last-child { border-bottom: none; padding-bottom: 0; }
.cart-item-img {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  background: #181818 center / contain no-repeat;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price {
  font-size: 13px;
  color: #a6a6a6;
  margin-bottom: 10px;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-item-qty button {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.cart-item-qty button:hover { background: rgba(255,255,255,0.16); }
.cart-item-qty span {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  min-width: 22px;
  text-align: center;
}
.cart-item-remove {
  background: none;
  border: none;
  color: #606060;
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
  flex-shrink: 0;
  margin-top: 2px;
}
.cart-item-remove:hover { color: #ffffff; }

/* Footer */
.cart-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.cart-total-row span:first-child {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #a6a6a6;
}
.cart-total-row span:last-child {
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  color: #ffffff;
}
.cart-checkout {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 13px;
  background: #ffffff;
  color: #050505;
  border: 1px solid #ffffff;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
}
.cart-checkout:hover { background: transparent; color: #ffffff; transform: translateY(-2px); }
