
* {
  font-family: "Vazirmatn", sans-serif;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fad901;
  color: #000000;
}

.navbar {
  backdrop-filter: blur(10px);
}

.navbar-brand {
  color: #e4bb31 !important;
}

.btn-gold {
  background: linear-gradient(135deg, #b5a87f, #b88d1d);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 12px 26px rgba(212, 175, 55, 0.35);
}

.text-gold {
  color: #c4b070;
}

.hero-section {
  min-height: 100vh;
  position: relative;
  background: url("https://images.unsplash.com/photo-1491553895911-0055eca6402d?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  padding-top: 90px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,.45));
}

.hero-title, .hero-text, .hero-badge {
  color: #fff;
}

.hero-badge {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 10px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.glass-card {
  background: rgba(228, 211, 21, 0.08);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  color: white;
}

.hero-img {
  transition: transform 0.5s ease;
}

.hero-img:hover {
  transform: scale(1.03);
}

.price-tag,
.product-badge {
  background: #e0b72f;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.section-title h2 {
  color: #111;
}

.category-card {
  position: relative;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 24px;
  color: #fff;
  transition: transform 0.35s ease;
}

.category-card:hover {
  transform: translateY(-6px);
}

.cat-jewel {
  background: url("image/jeweljpg.jpg") center/cover no-repeat;
}

.cat-perfume {
  background: url("image/per.jpg.png") center/cover no-repeat;
}

.cat-glasses {
  background: url("image/glass.jpg") center/cover no-repeat;
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.15));
}

.category-content {
  position: relative;
  z-index: 2;
}

.product-card {
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.35s ease;
  background: #fff;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12) !important;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
}

.product-img {
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
}

.about-img {
  transition: transform 0.4s ease;
}

.about-img:hover {
  transform: scale(1.02);
}

.info-box {
  background: rgba(227, 220, 25, 0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
}

.info-box h4 {
  color: #fbca2a;
  margin-bottom: 6px;
}

.testimonial-card {
  border-radius: 20px;
  background: #fff;
  transition: all 0.3s ease;
  border-top: 3px solid #deb93f;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.contact-form .form-control {
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid #ddd;
}

.contact-form .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.18);
  border-color: #e2d6af;
}

.footer {
  letter-spacing: .2px;
}

@media (max-width: 991px) {
  .hero-section {
    text-align: center;
  }
}
