@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&family=Assistant:wght@300;400;500;600;700;800&display=swap');

/* ══════════════════════════════════════════
   DESIGN TOKENS
   ══════════════════════════════════════════ */
:root {
  --primary: #0a0a0a;
  --primary-soft: #1a1a2e;
  --accent: #c8a45c;
  --accent-glow: rgba(200,164,92,0.35);
  --accent-light: #e8d5a3;
  --accent-dark: #a0833e;
  --bg: #faf9f6;
  --bg-alt: #f2f0ea;
  --bg-dark: #0c0c1a;
  --card: #ffffff;
  --text: #1a1a1a;
  --text-muted: #71717a;
  --text-on-dark: #eceae4;
  --border: #e8e6e0;
  --gold-gradient: linear-gradient(135deg, #c8a45c 0%, #e8d5a3 50%, #c8a45c 100%);
  --dark-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg);
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

body {
  font-family: 'Assistant', 'Heebo', -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  direction: rtl;
  text-align: right;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-dark); text-decoration: none; transition: all 0.4s var(--ease); }
a:hover { color: var(--accent); }

::selection { background: var(--accent); color: var(--primary); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 860px; }

/* ══════════════════════════════════════════
   DECORATIVE ELEMENTS
   ══════════════════════════════════════════ */
.gold-line {
  width: 60px; height: 3px; border-radius: 99px;
  background: var(--gold-gradient); margin-bottom: 1.5rem;
}
.gold-line--center { margin-left: auto; margin-right: auto; }

.decoration {
  position: absolute; pointer-events: none; z-index: 0;
}
.decoration--dots {
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, var(--accent) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.15;
}
.decoration--ring {
  width: 200px; height: 200px; border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.08;
}
.decoration--glow {
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.4;
}

/* Section separators */
.separator {
  height: 1px; border: none; margin: 0;
  background: linear-gradient(to left, transparent, var(--border) 20%, var(--accent) 50%, var(--border) 80%, transparent);
}

/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem;
  transition: all 0.5s var(--ease);
  background: transparent;
}
.header.scrolled {
  background: rgba(250,249,246,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 var(--border), 0 8px 40px rgba(0,0,0,0.04);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; max-width: 1200px; margin: 0 auto;
}
.header__logo {
  display: flex; align-items: center; gap: 0.85rem;
  transition: all 0.4s var(--ease);
}
.header__logo:hover { transform: translateY(-1px); }
.header__logo img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--accent);
  transition: all 0.5s var(--ease);
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.header__logo:hover img {
  box-shadow: 0 0 0 6px var(--accent-glow);
}
.header__logo span {
  font-family: 'Heebo', sans-serif; font-weight: 700; font-size: 1.05rem;
  color: var(--primary); letter-spacing: -0.01em;
  transition: color 0.4s var(--ease);
}
/* On hero (dark bg) header should be light */
.header:not(.scrolled) .header__logo span { color: #fff; }
.header:not(.scrolled) .header__nav a { color: rgba(255,255,255,0.85); }
.header:not(.scrolled) .header__nav a:hover { color: #fff; }
.header:not(.scrolled) .header__logo img { border-color: rgba(255,255,255,0.5); }

.header__nav { display: flex; align-items: center; gap: 2.5rem; }
.header__nav a {
  font-weight: 500; color: var(--text); font-size: 0.95rem;
  position: relative; padding: 0.3rem 0; letter-spacing: 0.02em;
}
.header__nav a::after {
  content: ''; position: absolute; bottom: -2px; right: 0;
  width: 0; height: 2px; border-radius: 99px;
  background: var(--gold-gradient);
  transition: width 0.45s var(--ease);
}
.header__nav a:hover::after, .header__nav a.active::after { width: 100%; }

.header__cta {
  background: var(--gold-gradient) !important;
  color: var(--primary) !important;
  padding: 0.55rem 1.5rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease);
  box-shadow: 0 2px 12px var(--accent-glow);
}
.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--accent-glow);
}
.header__cta::after { display: none !important; }
.header:not(.scrolled) .header__cta { box-shadow: 0 2px 16px rgba(200,164,92,0.4); }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.5rem; z-index: 1001;
}
.hamburger span {
  display: block; width: 26px; height: 2px; border-radius: 99px;
  background: var(--primary); margin: 6px 0;
  transition: all 0.4s var(--ease);
  transform-origin: center;
}
.header:not(.scrolled) .hamburger span { background: #fff; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(250,249,246,0.97);
  backdrop-filter: blur(30px);
  padding: 7rem 2rem 3rem;
  opacity: 0; transform: translateY(-20px);
  transition: all 0.5s var(--ease);
}
.mobile-menu.active {
  display: flex; flex-direction: column; gap: 0;
  opacity: 1; transform: translateY(0);
}
.mobile-menu a {
  font-family: 'Heebo', sans-serif;
  font-size: 1.5rem; font-weight: 700; color: var(--primary);
  display: block; padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.mobile-menu a:hover { padding-right: 1rem; color: var(--accent-dark); }

/* ══════════════════════════════════════════
   HERO — PARALLAX
   ══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: -20%; /* extra for parallax movement */
  background-size: cover; background-position: center;
  will-change: transform;
  transition: transform 0.1s linear;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200,164,92,0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.92) 100%);
}
.hero__content {
  position: relative; z-index: 2; text-align: center;
  padding: 6rem 1.5rem 4rem; max-width: 800px;
}
.hero__profile {
  width: 140px; height: 140px; border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(200,164,92,0.6);
  margin: 0 auto 2rem;
  box-shadow: 0 0 60px rgba(200,164,92,0.25), 0 0 120px rgba(200,164,92,0.1);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero__label {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}
.hero__title {
  font-family: 'Heebo', sans-serif; font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900; color: #fff; line-height: 1.15;
  margin-bottom: 1.25rem; letter-spacing: -0.02em;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}
.hero__subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,0.7);
  max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.9;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.7s forwards;
}
.hero__actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.9s forwards;
}
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,0.4);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Entrance animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2.2rem; border-radius: 50px; font-weight: 700;
  font-size: 1rem; cursor: pointer; border: none;
  transition: all 0.4s var(--ease); position: relative;
  overflow: hidden; letter-spacing: 0.02em;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.btn:hover::before { transform: translateX(100%); }

.btn--primary {
  background: var(--gold-gradient); color: var(--primary);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px var(--accent-glow);
  color: var(--primary);
}
.btn--outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn--outline:hover {
  border-color: var(--accent); color: var(--accent);
  background: rgba(200,164,92,0.08);
}
.btn--dark {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.btn--dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2); color: #fff;
}
.btn--whatsapp {
  background: #25d366; color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn--whatsapp:hover {
  background: #1eba5a; transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4); color: #fff;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════ */
.section {
  position: relative; padding: 7rem 0; overflow: hidden;
}
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: var(--text-on-dark); }

.section__label {
  font-size: 0.78rem; font-weight: 800; color: var(--accent);
  text-transform: uppercase; letter-spacing: 4px; margin-bottom: 0.75rem;
}
.section__title {
  font-family: 'Heebo', sans-serif; font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.25; margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section__subtitle {
  font-size: 1.1rem; color: var(--text-muted); max-width: 650px;
  line-height: 1.85; margin-bottom: 3rem;
}
.section__title--center,
.section__subtitle--center {
  text-align: center; margin-left: auto; margin-right: auto;
}

/* Scroll-triggered animations */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal-right {
  opacity: 0; transform: translateX(60px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-left {
  opacity: 0; transform: translateX(-60px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ══════════════════════════════════════════
   PROMO SECTIONS — PARALLAX
   ══════════════════════════════════════════ */
.promo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; position: relative;
}
.promo--reverse { direction: ltr; }
.promo--reverse .promo__text { direction: rtl; text-align: right; }

.promo__image {
  border-radius: var(--radius-xl); overflow: hidden;
  position: relative;
}
.promo__image img {
  width: 100%; height: auto; object-fit: contain;
  border-radius: var(--radius-xl);
  transition: transform 1.2s var(--ease);
  will-change: transform;
}
.promo__image:hover img { transform: scale(1.04); }
/* Gold corner accents */
.promo__image::before {
  content: ''; position: absolute; top: -8px; right: -8px;
  width: 60px; height: 60px; z-index: 2;
  border-top: 3px solid var(--accent); border-right: 3px solid var(--accent);
  border-radius: 0 var(--radius) 0 0;
  transition: all 0.5s var(--ease);
  opacity: 0.5;
}
.promo__image::after {
  content: ''; position: absolute; bottom: -8px; left: -8px;
  width: 60px; height: 60px; z-index: 2;
  border-bottom: 3px solid var(--accent); border-left: 3px solid var(--accent);
  border-radius: 0 0 0 var(--radius);
  transition: all 0.5s var(--ease);
  opacity: 0.5;
}
.promo__image:hover::before,
.promo__image:hover::after {
  width: 80px; height: 80px; opacity: 1;
}

.promo__text h2 {
  font-family: 'Heebo', sans-serif; font-size: 1.85rem; font-weight: 800;
  margin-bottom: 1.5rem; line-height: 1.3; letter-spacing: -0.01em;
}
.promo__text p {
  color: var(--text-muted); line-height: 2; margin-bottom: 1.75rem; font-size: 1.05rem;
}

/* ══════════════════════════════════════════
   CARD GRID
   ══════════════════════════════════════════ */
.grid { display: grid; gap: 2rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card); border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.03);
  transition: all 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 0 0 1px rgba(200,164,92,0.2);
}
/* Gold top accent line */
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold-gradient);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease);
  z-index: 2;
}
.card:hover::before { transform: scaleX(1); }

.card__image {
  aspect-ratio: 16/10; overflow: hidden; position: relative;
}
.card__image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.15) 0%, transparent 40%);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.card:hover .card__image::after { opacity: 1; }
.card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.card:hover .card__image img { transform: scale(1.1); }

.card__body { padding: 1.75rem 1.75rem 1rem; flex-grow: 1; }
.card__tag {
  display: inline-block; font-size: 0.72rem; font-weight: 800;
  color: var(--accent-dark); background: rgba(200,164,92,0.1);
  padding: 0.3rem 0.9rem; border-radius: 50px;
  margin-bottom: 0.85rem; letter-spacing: 1px;
  text-transform: uppercase;
}
.card__title {
  font-family: 'Heebo', sans-serif; font-size: 1.1rem; font-weight: 700;
  line-height: 1.45; margin-bottom: 0.6rem; color: var(--primary);
  transition: color 0.3s var(--ease);
}
.card:hover .card__title { color: var(--accent-dark); }
.card__desc {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.75;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__price {
  font-family: 'Heebo', sans-serif; font-size: 1.4rem; font-weight: 900;
  color: var(--accent-dark); margin-top: 1rem;
}
.card__footer {
  padding: 1.15rem 1.75rem; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.card__link {
  font-weight: 700; font-size: 0.88rem; color: var(--accent-dark);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: all 0.4s var(--ease);
}
.card__link svg { transition: transform 0.4s var(--ease); }
.card:hover .card__link { color: var(--accent); }
.card:hover .card__link svg { transform: translateX(-6px); }

/* Category cards */
.cat-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 3/2; cursor: pointer; display: block;
}
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.cat-card:hover img { transform: scale(1.12); }
.cat-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 100%);
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: flex-end; padding: 2.5rem;
  transition: all 0.5s var(--ease);
}
.cat-card:hover .cat-card__overlay { background: linear-gradient(0deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 60%); }
.cat-card__title {
  font-family: 'Heebo', sans-serif; color: #fff; font-size: 1.5rem;
  font-weight: 800; line-height: 1.3;
}
.cat-card__overlay::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--gold-gradient);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.6s var(--ease);
}
.cat-card:hover .cat-card__overlay::before { transform: scaleX(1); }

/* ══════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════ */
.about {
  display: grid; grid-template-columns: 320px 1fr; gap: 4rem; align-items: start;
}
.about__image { position: relative; }
.about__image img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform 0.6s var(--ease);
}
.about__image:hover img { transform: scale(1.02); }
/* Gold shadow block */
.about__image::after {
  content: ''; position: absolute;
  top: 20px; right: -16px; bottom: -16px; left: 20px;
  border-radius: var(--radius-xl);
  background: var(--gold-gradient); z-index: -1;
  opacity: 0.2;
  transition: all 0.6s var(--ease);
}
.about__image:hover::after { top: 16px; right: -20px; bottom: -20px; opacity: 0.3; }

.about__text h2 {
  font-family: 'Heebo', sans-serif; font-size: 2.2rem; font-weight: 900;
  margin-bottom: 0.75rem; line-height: 1.25; letter-spacing: -0.02em;
}
.about__text .gold-line { margin-bottom: 1.75rem; }
.about__text p {
  color: var(--text-muted); line-height: 2; margin-bottom: 1.25rem; font-size: 1.05rem;
}

/* ══════════════════════════════════════════
   BANNER CTA — PARALLAX
   ══════════════════════════════════════════ */
.banner {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  min-height: 380px; display: flex; align-items: center; justify-content: center;
}
.banner__bg {
  position: absolute; inset: -10%;
  will-change: transform;
}
.banner__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.banner__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85), rgba(26,26,46,0.8));
}
.banner__content {
  position: relative; z-index: 2; text-align: center; padding: 3.5rem 2rem;
}
.banner__content h2 {
  font-family: 'Heebo', sans-serif; font-size: 2.2rem; font-weight: 900;
  color: #fff; margin-bottom: 0.5rem;
}
.banner__content .gold-line { margin: 0 auto 1rem; }
.banner__content p { color: var(--accent-light); font-size: 1.1rem; margin-bottom: 2rem; }

/* ══════════════════════════════════════════
   PRODUCT / ARTICLE PAGES
   ══════════════════════════════════════════ */
.product-hero {
  position: relative; min-height: 55vh; display: flex; align-items: flex-end;
  overflow: hidden;
}
.product-hero__bg {
  position: absolute; inset: -15%;
  background-size: cover; background-position: center;
  will-change: transform;
}
.product-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.5) 100%);
}
.product-hero__content {
  position: relative; z-index: 2; padding: 4rem 0 3rem;
  width: 100%; max-width: 1200px; margin: 0 auto;
}
.product-hero__breadcrumb {
  font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.product-hero__breadcrumb a { color: var(--accent-light); }
.product-hero__breadcrumb a:hover { color: var(--accent); }
.product-hero__title {
  font-family: 'Heebo', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; color: #fff; line-height: 1.25;
  max-width: 750px; letter-spacing: -0.02em;
}
.product-hero__price {
  margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold-gradient); color: var(--primary);
  padding: 0.6rem 1.75rem; border-radius: 50px;
  font-family: 'Heebo', sans-serif; font-weight: 900; font-size: 1.35rem;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.product-body { padding: 4rem 0 6rem; }
.product-body .container {
  display: grid; grid-template-columns: 1fr 340px; gap: 4rem;
}

.product-content { font-size: 1.05rem; line-height: 2.1; }
.product-content h2 {
  font-family: 'Heebo', sans-serif; font-size: 1.5rem; font-weight: 800;
  margin-top: 3rem; margin-bottom: 1rem; color: var(--primary);
  padding-bottom: 0.6rem; position: relative;
  letter-spacing: -0.01em;
}
.product-content h2::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 50px; height: 3px; border-radius: 99px;
  background: var(--gold-gradient);
}
.product-content h3 {
  font-family: 'Heebo', sans-serif; font-size: 1.25rem; font-weight: 700;
  margin-top: 2rem; margin-bottom: 0.75rem; color: var(--primary);
}
.product-content p { margin-bottom: 1.35rem; color: #444; }
.product-content strong { color: var(--primary); font-weight: 700; }
.product-content a {
  color: var(--accent-dark);
  background: linear-gradient(var(--accent-light), var(--accent-light)) no-repeat bottom left;
  background-size: 100% 1px;
  transition: background-size 0.3s var(--ease);
}
.product-content a:hover { background-size: 100% 100%; }
.product-content blockquote {
  border-right: 4px solid var(--accent);
  padding: 1.5rem 2rem; margin: 2rem 0;
  background: linear-gradient(135deg, rgba(200,164,92,0.06), rgba(200,164,92,0.02));
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--text-muted);
  position: relative;
}
.product-content blockquote::before {
  content: '\201F'; position: absolute; top: -0.5rem; right: 1rem;
  font-size: 4rem; color: var(--accent); opacity: 0.2;
  font-family: serif; line-height: 1;
}

.product-sidebar { position: sticky; top: 110px; align-self: start; }
.sidebar-card {
  background: var(--card); border-radius: var(--radius-lg);
  padding: 2rem; position: relative; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.03);
}
.sidebar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold-gradient);
}
.sidebar-card__title {
  font-family: 'Heebo', sans-serif; font-weight: 800; font-size: 1.1rem;
  margin-bottom: 1.5rem; padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-card__item {
  padding: 0.6rem 0; display: flex; align-items: center; gap: 0.65rem;
  transition: all 0.3s var(--ease);
}
.sidebar-card__item:hover { padding-right: 0.5rem; }
.sidebar-card__item svg { flex-shrink: 0; color: var(--accent-dark); width: 18px; height: 18px; }
.sidebar-card + .sidebar-card { margin-top: 1.5rem; }

/* ══════════════════════════════════════════
   INFO PAGE
   ══════════════════════════════════════════ */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3.5rem; }
.info-card {
  background: var(--card); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.03);
  transition: all 0.5s var(--ease);
}
.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 0 1px rgba(200,164,92,0.2);
}
.info-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold-gradient);
  transform: scaleX(0); transition: transform 0.5s var(--ease);
}
.info-card:hover::before { transform: scaleX(1); }
.info-card__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(200,164,92,0.1), rgba(200,164,92,0.05));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--accent-dark);
  transition: all 0.5s var(--ease);
}
.info-card:hover .info-card__icon {
  background: var(--gold-gradient); color: var(--primary);
  transform: scale(1.1);
}
.info-card__label { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.info-card__value {
  font-family: 'Heebo', sans-serif; font-weight: 700; font-size: 1.1rem; direction: ltr;
}
.info-card__value a { color: var(--primary); }
.info-card:hover .info-card__value a { color: var(--accent-dark); }

.social-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.75rem; border-radius: 50px;
  background: var(--card); font-weight: 700; color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.03);
  transition: all 0.5s var(--ease);
}
.social-link:hover {
  transform: translateY(-4px); color: var(--primary);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.social-link svg { width: 18px; height: 18px; }

/* ══════════════════════════════════════════
   CATEGORY PAGE HERO
   ══════════════════════════════════════════ */
.cat-hero {
  background: var(--dark-gradient); padding: 8rem 0 4rem; text-align: center;
  position: relative; overflow: hidden;
}
.cat-hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(80px); opacity: 0.3;
}
.cat-hero__title {
  font-family: 'Heebo', sans-serif; font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900; color: #fff; margin-bottom: 0.75rem; letter-spacing: -0.02em;
}
.cat-hero__desc {
  font-size: 1.1rem; color: rgba(255,255,255,0.6); max-width: 650px;
  margin: 0 auto; line-height: 1.85;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: var(--bg-dark); color: var(--text-on-dark);
  padding: 5rem 0 2.5rem; position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold-gradient);
}
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer__brand h4 {
  font-family: 'Heebo', sans-serif; font-weight: 800; font-size: 1.2rem;
  margin-bottom: 1rem;
  background: var(--gold-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.footer__brand p { color: rgba(255,255,255,0.5); line-height: 1.9; }
.footer h4 {
  font-family: 'Heebo', sans-serif; font-weight: 700; margin-bottom: 1.25rem;
  color: var(--accent); font-size: 0.95rem; letter-spacing: 1px;
  text-transform: uppercase;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.65rem; }
.footer__links a {
  color: rgba(255,255,255,0.5); font-size: 0.95rem;
  transition: all 0.3s var(--ease); display: inline-block;
}
.footer__links a:hover { color: var(--accent); transform: translateX(-4px); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2.5rem; text-align: center;
  color: rgba(255,255,255,0.3); font-size: 0.85rem;
}

/* ══════════════════════════════════════════
   WHATSAPP FAB
   ══════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed; bottom: 28px; left: 28px; z-index: 90;
  width: 62px; height: 62px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all 0.4s var(--ease); cursor: pointer;
  animation: fabPulse 3s ease-in-out infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 35px rgba(37,211,102,0.5); color: #fff;
}
.whatsapp-fab svg { width: 30px; height: 30px; }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .promo { grid-template-columns: 1fr; gap: 2.5rem; }
  .promo--reverse { direction: rtl; }
  .about { grid-template-columns: 1fr; }
  .about__image { max-width: 300px; margin: 0 auto; position: static; }
  .product-body .container { grid-template-columns: 1fr; }
  .product-sidebar { position: static; }
  .footer__inner { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .hamburger { display: block; }
  .hero { min-height: 90vh; }
  .hero__title { font-size: 2rem; }
  .hero__subtitle { font-size: 1rem; }
  .hero__profile { width: 110px; height: 110px; }
  .section { padding: 4.5rem 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .product-hero__title { font-size: 1.8rem; }
  .promo__text h2 { font-size: 1.5rem; }
  .cat-hero { padding: 7rem 0 3rem; }
  .cat-hero__title { font-size: 1.8rem; }
  .promo__image::before, .promo__image::after { display: none; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .container { padding: 0 1.25rem; }
  .hero__profile { width: 90px; height: 90px; }
}
