/* چای‌خانه سبز — Green Tea House custom styles */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #F5F1E8;
  -webkit-font-smoothing: antialiased;
}

/* Line clamp helper for product descriptions */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pop animation for toast & modal */
@keyframes pop {
  0%   { transform: scale(.85) translateY(10px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Elegant scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #EAE3D2; }
::-webkit-scrollbar-thumb {
  background: #C9A55C;
  border-radius: 6px;
  border: 2px solid #EAE3D2;
}
::-webkit-scrollbar-thumb:hover { background: #B08F45; }

/* Selection color */
::selection { background: #C9A55C; color: #1B3B2F; }

/* Text justify with better spacing for Persian */
.text-justify { text-align: justify; }

/* Smooth image fade-in */
img { transition: opacity .4s ease; }

/* Fix RTL number inputs alignment */
input[dir="ltr"]::placeholder { text-align: right; }