:root {
  --gold: #D4AF37;
  --gold-2: #C89C2F;
  --bg: #F5F1EB;
  --card-bg: #fff;
  --text-dark: #0b0b0b;
  --muted: #7a7a7a;
}

body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
}

.btn.gold {
  background: var(--gold);
  color: var(--text-dark);
  font-weight: 700;
  border-radius: 10px;
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(226, 188, 61, 0.966);
  color: var(--text-dark);
  border-radius: 10px;
}

.product img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cart-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
}

.size-btn, .addon-btn {
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
}

.size-btn.active, .addon-btn.active {
  background: var(--gold);
  color: var(--text-dark);
  font-weight: 700;
  border-color: var(--gold-2);
}

#langBtn {
  z-index: 1050;
}

.hero-section {
  height: 350px !important;
}

/* shrink animation للهيرو عند بدء الطلب */
.hero-section.shrink {
  height: 120px !important;
  overflow: hidden;
  transition: height 0.6s ease;
}

.hero-img {
  height: 350px !important;
   transition: height 0.6s ease;
}

.hero-text {
  transition: transform 0.6s ease, font-size 0.6s ease;
}

.hero-section.shrink .hero-text {
  transform: translate(-50%, -50%) scale(0.5);
}
