* { font-family: 'Vazirmatn', sans-serif; }
html { scroll-behavior: smooth; }
body {
  background: #0f0f10;
  color: #f5f5f5;
}
.gradient-gold {
  background: linear-gradient(135deg, #c9a35c 0%, #f4d57a 50%, #b8860b 100%);
}
.text-gold {
  background: linear-gradient(135deg, #f4d57a 0%, #c9a35c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-gradient {
  background:
    radial-gradient(ellipse at top left, rgba(201,163,92,0.15), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(184,134,11,0.12), transparent 50%),
    linear-gradient(180deg, #0f0f10 0%, #1a1410 100%);
}
.card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(201, 163, 92, 0.2);
}
.category-card {
  background: linear-gradient(145deg, #1c1c1c 0%, #141414 100%);
  transition: all 0.3s ease;
}
.category-card:hover {
  background: linear-gradient(145deg, #2a2018 0%, #1a1410 100%);
  border-color: #c9a35c;
}
.shine {
  position: relative;
  overflow: hidden;
}
.shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244,213,122,0.2), transparent);
  transition: left 0.7s;
}
.shine:hover::before {
  left: 100%;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.float-anim { animation: float 3s ease-in-out infinite; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide-up { animation: slideUp 0.8s ease-out forwards; }

.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-content {
  display: flex;
  gap: 3rem;
  animation: scroll 25s linear infinite;
  flex-shrink: 0;
  padding-right: 3rem;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Bottom mobile nav */
.mobile-bottom-nav {
  display: none;
}
@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(15, 15, 16, 0.85);
    border-top: 1px solid rgba(201, 163, 92, 0.2);
    padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom));
  }
  body { padding-bottom: 70px; }
  .desktop-nav { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* Sticky top header style */
.sticky-header {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(15, 15, 16, 0.75);
  border-bottom: 1px solid rgba(201, 163, 92, 0.15);
}

.scroll-hide::-webkit-scrollbar { display: none; }
.scroll-hide { -ms-overflow-style: none; scrollbar-width: none; }

.product-image {
  background: linear-gradient(135deg, #2a2218 0%, #151010 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.badge {
  background: linear-gradient(135deg, #c9a35c 0%, #8b6914 100%);
}

.btn-gold {
  background: linear-gradient(135deg, #c9a35c 0%, #f4d57a 50%, #c9a35c 100%);
  color: #0f0f10;
  font-weight: 700;
  transition: all 0.3s;
}
.btn-gold:hover {
  box-shadow: 0 8px 30px rgba(201,163,92,0.4);
  transform: translateY(-2px);
}

.glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,163,92,0.1);
}

.nav-dot {
  transition: all 0.3s ease;
}
.mobile-nav-item.active .nav-dot {
  background: #f4d57a;
  width: 24px;
  border-radius: 999px;
  height: 3px;
  margin-bottom: 4px;
}

/* Mobile menu drawer */
.mobile-drawer {
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-drawer.active {
  transform: translateX(0);
}
.drawer-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.smoke {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,163,92,0.1) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* === Missing Tailwind responsive utilities (frontend) === */
@media(min-width:640px){
  .sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
  .sm\:items-center{align-items:center}
  .sm\:gap-2{gap:0.5rem}
  .sm\:h-8{height:2rem}
  .sm\:h-20{height:5rem}
  .sm\:p-4{padding:1rem}
  .sm\:p-8{padding:2rem}
  .sm\:text-right{text-align:right}
  .sm\:w-8{width:2rem}
  .sm\:w-10{width:2.5rem}
  .sm\:w-20{width:5rem}
  .sm\:w-64{width:16rem}
}
@media(min-width:768px){
  .md\:col-span-2{grid-column:span 2/span 2}
}
@media(min-width:1024px){
  .lg\:col-span-1{grid-column:span 1/span 1}
  .lg\:col-span-2{grid-column:span 2/span 2}
  .lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
  .lg\:text-3xl{font-size:1.875rem;line-height:2.25rem}
}
