/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 7rem 5% 4rem;
  position: relative; overflow: hidden;
  gap: 3rem;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.orb1 {
  width: 500px; height: 500px;
  background: var(--gold);
  top: -150px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.orb2 {
  width: 300px; height: 300px;
  background: #8b4513;
  bottom: 0; left: 10%;
  animation: float 10s ease-in-out infinite reverse;
}
.orb3 {
  width: 200px; height: 200px;
  background: var(--gold-light);
  top: 40%; left: 40%;
  animation: float 6s ease-in-out infinite;
}

.grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative; z-index: 1;
  flex: 1; max-width: 600px;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 0.35rem 1rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero-sub {
  color: var(--text2);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
}

.hero-visual {
  position: relative; z-index: 1;
  flex: 1; display: flex; justify-content: flex-end;
  align-items: center;
  animation: fadeUp 1s 0.3s ease both;
}

.hero-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  width: 320px;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.hero-card-label {
  padding: 1.2rem;
  display: flex; flex-direction: column; gap: 0.2rem;
}

.hero-card-label span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.hero-card-label strong {
  font-family: var(--ff-display);
  font-size: 1.2rem;
}

.floating { animation: floating 5s ease-in-out infinite; }

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ===== CATEGORIES ===== */
.categories-section {
  padding: 5rem 5%;
}

.categories-section .section-header {
  text-align: center;
  display: block;
  margin-bottom: 3rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.cat-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid var(--border);
}

.cat-img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}

.cat-card:hover .cat-img { transform: scale(1.08); }

.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}

.cat-overlay h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
}

.cat-overlay span {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
}

/* ===== FEATURED ===== */
.featured-section {
  padding: 4rem 5%;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  margin: 4rem 5%;
  background: var(--bg2);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  padding: 4rem;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
}

.promo-content {
  position: relative; z-index: 1;
}

.promo-tag {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.promo-content h2 {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.promo-content h2 strong { color: var(--gold); }

.promo-content p {
  color: var(--text2);
  margin-bottom: 1.8rem;
  max-width: 400px;
}

.deco-circle, .deco-circle2 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
}

.deco-circle { width: 400px; height: 400px; right: -100px; top: -100px; }
.deco-circle2 { width: 250px; height: 250px; right: 50px; top: 50px; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 5rem 5%;
}

.testimonials .section-header {
  text-align: center; display: block;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.testi-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
}

.testi-card .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testi-card p {
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex; align-items: center; gap: 0.8rem;
}

.testi-author img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
}

.testi-author span {
  font-size: 0.75rem;
  color: var(--text3);
}

@media (max-width: 900px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero { flex-direction: column; padding-top: 8rem; }
  .hero-visual { display: none; }
  .promo-banner { flex-direction: column; gap: 2rem; text-align: center; }
}
