* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif !important;
}

body {
  background: #0a1322;
  color: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 30px;
  background: #070b14 !important;
}

a {
  text-decoration: none;
  color: white;
}

.logo {
  font-weight: 600;
}

.search {
  flex: 1;
  /* background: #111827 !important; */
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  color: white;
}

nav a {
  margin-left: 16px;
  text-decoration: none;
  color: #9ca3af;
}

nav a:hover {
  color: #fff;
}

/* Cart Layout */
.cart-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 30px;
}

.cart-header h1 {
  font-size: 28px;
}

.cart-header p {
  color: #9ca3af;
  margin-top: 6px;
}

.cart-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

/* Cart Items */
.cart-items {
  background: #0f172a;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #1f2937;
}

.cart-table-header,
.cart-row {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  align-items: center;
}

.cart-table-header {
  font-size: 14px;
  color: #9ca3af;
  padding-bottom: 14px;
  border-bottom: 1px solid #1f2937;
}

.cart-row {
  padding: 18px 0;
  border-bottom: 1px solid #1f2937;
}

.cart-row:last-child {
  border-bottom: none;
}

/* Product */
.product {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon {
  width: 40px;
  height: 40px;
  background: #111827;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product p {
  font-size: 14px;
  color: #9ca3af;
}

/* Quantity */
.quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity button {
  background: #111827;
  border: none;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  cursor: pointer;
}

/* Price */
.price {
  font-weight: 600;
}

/* Summary */
.summary {
  background: #0f172a;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #1f2937;
  height: fit-content;
}

.summary h2 {
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: #d1d5db;
}

.summary-row.total {
  font-size: 18px;
  font-weight: 600;
  border-top: 1px solid #1f2937;
  padding-top: 14px;
  margin-top: 20px;
}

/* Checkout */
.checkout {
  width: 100%;
  margin-top: 24px;
  padding: 14px;
  border: none;
  border-radius: 14px;
  background: #ff5a3c;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.checkout:hover {
  opacity: 0.9;
}
