/* تخصيصات إضافية فوق Tailwind - معرض الواحة للديكور */

html { scroll-behavior: smooth; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #F7F3EE; }
::-webkit-scrollbar-thumb { background: #B8925A; border-radius: 10px; }

.hero-gradient {
  background: linear-gradient(135deg, rgba(28,28,30,.92) 0%, rgba(43,38,33,.88) 60%, rgba(184,146,90,.55) 100%);
}

.product-card { transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 18px 30px -12px rgba(0,0,0,.25); }

.badge-instock {
  background: #ECFDF5; color: #047857; border: 1px solid #A7F3D0;
}
.badge-outstock {
  background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA;
}

.gold-underline {
  position: relative; display: inline-block;
}
.gold-underline::after {
  content: ""; position: absolute; right: 0; bottom: -8px; height: 3px; width: 60px;
  background: #B8925A; border-radius: 4px;
}

img { max-width: 100%; }
