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

:root {
  --black:   #0A0A0A;
  --gold:    #C9A961;
  --gold-lt: #E2C97E;
  --gold-dk: #9E7A3A;
  --beige:   #F5F1E6;
  --beige2:  #EDE8D8;
  --white:   #FFFFFF;
  --text-muted: #888;
  --border-gold: 1px solid rgba(201,169,97,.35);
}

html { scroll-behavior: smooth; }
body  { font-family: 'Cairo', sans-serif; background: var(--black); color: var(--beige); overflow-x: hidden; }

/* ─── TOP BAR ─────────────────────────────────────── */
#top-bar {
  background: #050505;
  border-bottom: 1px solid rgba(201,169,97,.2);
  padding: 8px 20px;
  font-size: 12px;
  color: #bbb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
#top-bar .tb-left  { display: flex; align-items: center; gap: 14px; }
#top-bar .tb-right { display: flex; align-items: center; gap: 14px; }
#top-bar a { color: #bbb; text-decoration: none; display: flex; align-items: center; gap: 5px; transition: color .2s; }
#top-bar a:hover { color: var(--gold); }
#top-bar .divider { color: rgba(201,169,97,.3); }
#top-bar .flag { font-size: 16px; }
#top-bar .ship-txt { color: var(--gold); font-weight: 600; }

/* ─── HEADER / NAV ───────────────────────────────── */
#main-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(12px);
  border-bottom: var(--border-gold);
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: box-shadow .3s;
}
#main-header.scrolled { box-shadow: 0 4px 30px rgba(201,169,97,.12); }

.logo {
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .5px;
  line-height: 1.2;
  text-align: right;
}
.logo small { display: block; font-size: 10px; font-weight: 400; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }

.header-actions { display: flex; align-items: center; gap: 22px; }
.header-actions button {
  background: none; border: none; cursor: pointer;
  color: var(--beige); font-size: 18px;
  transition: color .2s; position: relative;
}
.header-actions button:hover { color: var(--gold); }
.cart-badge {
  position: absolute; top: -6px; right: -7px;
  background: var(--gold); color: var(--black);
  font-size: 9px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ─── HERO ───────────────────────────────────────── */
#hero {
  position: relative; height: 100vh; min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
#hero-bg {
  position: absolute; inset: 0;
  background: url('images/hero.jpg') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero:hover #hero-bg { transform: scale(1); }
#hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(5,5,5,.88) 0%, rgba(10,7,0,.72) 60%, rgba(15,10,2,.92) 100%);
}
.hero-ornament {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: min(600px, 90vw); height: min(600px, 90vw);
  border: 1px solid rgba(201,169,97,.08); border-radius: 50%;
  pointer-events: none;
}
.hero-ornament::before {
  content: ''; position: absolute; inset: 20px;
  border: 1px solid rgba(201,169,97,.05); border-radius: 50%;
}
.hero-content { position: relative; z-index: 2; padding: 20px; max-width: 800px; }
.hero-eyebrow {
  display: inline-block; margin-bottom: 20px;
  font-size: 11px; letter-spacing: 4px; color: var(--gold);
  text-transform: uppercase; border-bottom: 1px solid rgba(201,169,97,.4); padding-bottom: 8px;
}
.hero-title {
  font-size: clamp(28px, 5.5vw, 62px);
  font-weight: 900; color: var(--white); line-height: 1.15;
  text-shadow: 0 4px 30px rgba(0,0,0,.6);
  margin-bottom: 18px;
}
.hero-title span { color: var(--gold); }
.hero-sub { font-size: clamp(14px, 1.8vw, 18px); color: rgba(245,241,230,.7); margin-bottom: 36px; font-weight: 300; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: var(--black); font-family: 'Cairo', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 15px 38px; border: none; border-radius: 2px; cursor: pointer;
  letter-spacing: .5px; transition: all .3s; text-decoration: none;
  box-shadow: 0 4px 24px rgba(201,169,97,.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,169,97,.45); filter: brightness(1.08); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--gold);
  font-family: 'Cairo', sans-serif; font-size: 14px; font-weight: 600;
  padding: 13px 30px; border: 1px solid rgba(201,169,97,.5); border-radius: 2px;
  cursor: pointer; transition: all .3s; text-decoration: none;
}
.btn-ghost:hover { background: rgba(201,169,97,.08); border-color: var(--gold); }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
  color: rgba(201,169,97,.6); font-size: 11px; letter-spacing: 2px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(6px); } }

/* ─── SECTION BASE ───────────────────────────────── */
section { padding: 90px 20px; }
.container { max-width: 1180px; margin: 0 auto; }
.section-label {
  text-align: center; margin-bottom: 56px;
}
.section-eyebrow {
  display: inline-block; font-size: 11px; letter-spacing: 4px;
  color: var(--gold); text-transform: uppercase;
  border-bottom: 1px solid rgba(201,169,97,.35); padding-bottom: 8px; margin-bottom: 14px;
}
.section-title { font-size: clamp(24px, 3.5vw, 40px); font-weight: 900; color: var(--white); }
.gold-divider {
  width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 14px auto 0;
}

/* ─── HERITAGE ───────────────────────────────────── */
#heritage { background: var(--black); }
.heritage-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.heritage-img {
  position: relative; border-radius: 2px; overflow: hidden;
  border: var(--border-gold);
}
.heritage-img img { width: 100%; height: 420px; object-fit: cover; display: block; filter: brightness(.85) sepia(.15); }
.heritage-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,7,0,.6) 100%);
}
.heritage-year {
  position: absolute; bottom: 20px; right: 20px; z-index: 1;
  font-size: 11px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase;
}
.heritage-text p {
  font-size: 16px; line-height: 2.0; color: rgba(245,241,230,.75);
  font-weight: 300; margin-bottom: 18px;
}
.heritage-text p strong { color: var(--gold); font-weight: 700; }
.heritage-stats {
  display: flex; gap: 36px; margin-top: 36px; padding-top: 28px;
  border-top: var(--border-gold);
}
.stat-item { text-align: center; }
.stat-num { font-size: 32px; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-lbl { font-size: 11px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

/* ─── PRODUCTS ───────────────────────────────────── */
#products { background: #060606; border-top: var(--border-gold); border-bottom: var(--border-gold); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.product-card {
  background: #0F0F0F; border: var(--border-gold); border-radius: 2px;
  overflow: hidden; transition: transform .3s, box-shadow .3s;
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(201,169,97,.14); }
.product-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--gold); color: var(--black);
  font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 1px; letter-spacing: 1px;
}
.product-img {
  width: 100%; height: 240px; object-fit: cover; display: block;
  filter: brightness(.88) saturate(.9);
  transition: filter .4s;
}
.product-card:hover .product-img { filter: brightness(.95) saturate(1); }
.product-info { padding: 20px; }
.product-origin { font-size: 10px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 6px; }
.product-name { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.product-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: var(--border-gold); }
.product-price { font-size: 20px; font-weight: 900; color: var(--gold); }
.product-price small { font-size: 12px; font-weight: 400; color: var(--text-muted); }
.btn-cart {
  background: transparent; border: 1px solid rgba(201,169,97,.45);
  color: var(--gold); font-family: 'Cairo', sans-serif;
  font-size: 12px; font-weight: 600; padding: 8px 16px;
  border-radius: 1px; cursor: pointer; letter-spacing: .5px;
  transition: all .25s; display: flex; align-items: center; gap: 6px;
}
.btn-cart:hover { background: var(--gold); color: var(--black); }

/* ─── WHY US ──────────────────────────────────────── */
#why-us { background: var(--black); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-card {
  background: #0E0E0E; border: var(--border-gold);
  border-radius: 2px; padding: 40px 30px; text-align: center;
  transition: box-shadow .3s, border-color .3s;
}
.feature-card:hover { box-shadow: 0 8px 40px rgba(201,169,97,.1); border-color: rgba(201,169,97,.6); }
.feature-icon {
  width: 68px; height: 68px;
  border: 1px solid rgba(201,169,97,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; font-size: 26px; color: var(--gold);
  background: rgba(201,169,97,.06);
}
.feature-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* ─── REVIEWS ─────────────────────────────────────── */
#reviews { background: #060606; border-top: var(--border-gold); }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.review-card {
  background: #0F0F0F; border: var(--border-gold); border-radius: 2px; padding: 32px;
}
.review-stars { color: var(--gold); font-size: 15px; margin-bottom: 14px; }
.review-text { font-size: 15px; color: rgba(245,241,230,.75); line-height: 1.9; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--black); flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 700; color: var(--white); }
.review-date { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.google-badge {
  display: flex; align-items: center; gap: 6px; margin-top: 14px;
  font-size: 11px; color: var(--text-muted);
}
.google-badge i { color: #EA4335; }

/* ─── VISIT US ────────────────────────────────────── */
#visit { background: var(--black); }
.visit-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.visit-map {
  border: var(--border-gold); border-radius: 2px; overflow: hidden; height: 340px;
}
.visit-map iframe { width: 100%; height: 100%; border: none; display: block; filter: grayscale(1) invert(1) brightness(.85) sepia(.15); }
.visit-info { padding: 8px 0; }
.info-block { margin-bottom: 28px; padding-bottom: 28px; border-bottom: var(--border-gold); }
.info-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.info-block-title { font-size: 12px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.info-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 8px; color: rgba(245,241,230,.8); font-size: 15px; }
.info-row i { color: var(--gold); margin-top: 3px; width: 16px; flex-shrink: 0; }
.hours-table { width: 100%; }
.hours-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; color: rgba(245,241,230,.7); border-bottom: 1px solid rgba(255,255,255,.04); }
.hours-row.open .h-time { color: var(--gold); }
.hours-row.closed .h-time { color: #555; }

/* ─── FOOTER ──────────────────────────────────────── */
#footer {
  background: #050505; border-top: 1px solid rgba(201,169,97,.25);
  padding: 60px 20px 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.4fr 1.6fr;
  gap: 48px; max-width: 1180px; margin: 0 auto;
}
.footer-logo { font-size: 20px; font-weight: 900; color: var(--gold); margin-bottom: 14px; }
.footer-about { font-size: 13px; color: var(--text-muted); line-height: 1.9; margin-bottom: 18px; }
.footer-tax { font-size: 11px; color: #555; }
.footer-tax span { color: var(--text-muted); }

.footer-col h4 {
  font-size: 12px; letter-spacing: 3px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,169,97,.2);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); font-size: 14px; text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: ''; width: 4px; height: 1px; background: var(--gold); display: inline-block; transition: width .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-links a:hover::before { width: 12px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 13px; color: var(--text-muted); }
.footer-contact-item i { color: var(--gold); margin-top: 2px; width: 14px; }
.footer-contact-item a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.footer-contact-item a:hover { color: var(--gold); }

/* Payment Icons */
.payment-grid {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px;
}
.pay-icon {
  background: #111; border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px; padding: 5px 8px;
  display: flex; align-items: center; justify-content: center;
  min-width: 52px; height: 32px;
}
.pay-icon svg { width: auto; height: 18px; display: block; }
.pay-icon span { font-size: 9px; font-weight: 700; letter-spacing: .5px; }

.footer-bottom {
  max-width: 1180px; margin: 48px auto 0;
  padding: 20px 0; border-top: 1px solid rgba(201,169,97,.12);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 12px; color: #555; }
.footer-powered { font-size: 12px; color: #444; }

/* ─── WHATSAPP FLOAT ─────────────────────────────── */
#wa-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201,169,97,.4);
  text-decoration: none; color: var(--black); font-size: 24px;
  transition: transform .3s, box-shadow .3s;
  animation: waPulse 3s infinite;
}
#wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(201,169,97,.55); }
@keyframes waPulse {
  0%,100%{ box-shadow: 0 4px 20px rgba(201,169,97,.4); }
  50%{ box-shadow: 0 4px 30px rgba(201,169,97,.65), 0 0 0 8px rgba(201,169,97,.08); }
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  #main-header { padding: 0 18px; }
  .heritage-inner { grid-template-columns: 1fr; gap: 36px; }
  .heritage-img img { height: 280px; }
  .features-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .visit-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  #top-bar { font-size: 10.5px; flex-direction: column; gap: 4px; text-align: center; }
  .hero-title { font-size: 26px; }
  section { padding: 60px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #wa-float { width: 50px; height: 50px; font-size: 20px; bottom: 20px; left: 20px; }
  .heritage-stats { gap: 20px; }
}

/* ─── SCROLL REVEAL ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
