* {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  box-sizing: border-box;
}
body {
  background-color: #FAF0E6;
  padding-bottom: 60px;
}
h1, button, .cart-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
}
a{
  text-decoration: none;
}
.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 122px;
  border-top: 2px solid #111111;
  border-bottom: 2px solid #111111;
}
.cart-header-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-navbar-title {
  text-align: center;
  font-size: 30px;
  line-height: 1;
}
.hero-navbar-subtitle {
  margin-top: 10px;
  font-size: 10px;
  word-spacing: 3px;
  letter-spacing: 2px;
  color: grey;
}
.continue-shopping-header {
  position: absolute;
  left: 10%;
}
.continue-shopping-header a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111111;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}
.continue-shopping-header a:hover { color: #E8923A; }
.continue-arrow {
  font-size: 20px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.lang-toggle-btn {
  position: absolute;
  right: 10%;
  background: transparent;
  border: 2px solid #111111;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.lang-toggle-btn:hover {
  background-color: #111111;
  color: #FAF0E6;
}

#your-cart-header {
  margin: 60px auto 30px;
  text-align: center;
  font-size: 52px;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  padding: 0 20px;
}

.cart-outer {
  width: min(800px, 94%);
  margin: 0 auto;
}

.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #111;
  padding: 50px 30px;
  gap: 16px;
}
.cart-logo { width: 80px; height: 80px; }
.subheader-cart-logo { font-size: 22px; font-weight: 900; }
.cart-description {
  font-size: 16px;
  color: #555;
  text-align: center;
  max-width: 420px;
}
.shop-coffee-button {
  margin-top: 4px;
  color: #111111;
  background-color: #E8923A;
  font-size: 14px;
  font-weight: bold;
  border: 2px solid #111111;
  padding: 15px 36px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.shop-coffee-button:hover {
  background-color: #111111;
  color: #FAF0E6;
}

.cart-items-wrapper {
  border: 2px solid #111;
  overflow: hidden;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  background-color: #FAF0E6;
}
.cart-item:last-of-type { border-bottom: none; }

.cart-item-info { display: flex; flex-direction: column; gap: 3px; }
.cart-item-name {
  font-size: 18px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
}
.cart-item-roast {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #666;
  text-transform: uppercase;
}
.cart-item-qty { font-size: 14px; color: #444; margin-top: 2px; }

.cart-item-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cart-item-price {
  font-size: 18px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
}
.cart-delete-btn {
  background: transparent;
  border: 1.5px solid #111;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
  color: #111;
}
.cart-delete-btn:hover { background-color: #111; color: #FAF0E6; }

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111111;
  color: #FAF0E6;
  padding: 22px 28px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
  font-family: 'Poppins', sans-serif;
}

.pay-whatsapp-btn {
  width: 100%;
  background-color: #25D366;
  color: #fff;
  border: none;
  padding: 22px;
  font-size: 16px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.2s ease;
}
.pay-whatsapp-btn:hover { background-color: #1ebe5b; }

[dir="rtl"] .continue-shopping-header {
  left: auto;
  right: 10%;
}
[dir="rtl"] .continue-arrow { transform: translateY(-1px) scaleX(-1); }
[dir="rtl"] .lang-toggle-btn {
  right: auto;
  left: 10%;
}
[dir="rtl"] .cart-item-info { align-items: flex-end; text-align: right; }
[dir="rtl"] .cart-subtotal-row { direction: rtl; }

@media (max-width: 768px) {
  .navbar { height: auto; padding: 20px; gap: 16px; }
  .continue-shopping-header { position: static; }
  .lang-toggle-btn { position: static; }
  #your-cart-header { font-size: 44px; }
}
@media (max-width: 480px) {
  #your-cart-header { font-size: 38px; }
  .cart-item { padding: 18px 16px; }
  .cart-subtotal-row { padding: 18px 16px; font-size: 16px; }
  .cart-item-name { font-size: 16px; }
  .cart-item-price { font-size: 16px; }
}
