/* ==================== AMEZIA BOUTIQUE — SHARED STYLES ==================== */
:root {
  --maroon: #5e1224;
  --maroon-dark: #450c1b;
  --gold: #c9a24b;
  --gold-light: #e6c87e;
  --cream: #faf6ef;
  --text: #2b2320;
  --muted: #7a6f68;
  --white: #ffffff;
  --border: #e8ddd0;
  --green: #25d366;
  --nav-h: 74px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- Navbar ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(250,246,239,.97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 14px rgba(94,18,36,.07);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; height: 100%;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 46px; width: auto; }
.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links a {
  font-size: .98rem; letter-spacing: .04em; color: var(--text);
  padding: 6px 2px; position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--maroon); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--maroon); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 92vh;
  margin-top: var(--nav-h);
  display: flex; align-items: center;
  background:
    linear-gradient(rgba(69,12,27,.62), rgba(69,12,27,.45)),
    url("../images/hero.png") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}
.hero-content { max-width: 820px; margin: 0 auto; }
.hero img.hero-logo { height: 130px; width: auto; margin: 0 auto 18px; filter: drop-shadow(0 4px 14px rgba(0,0,0,.5)); }
.hero h1 { font-size: 2.6rem; font-weight: 600; letter-spacing: .06em; margin-bottom: 14px; }
.hero p.tagline { font-size: 1.2rem; font-style: italic; color: var(--gold-light); margin-bottom: 10px; }
.hero p.sub { font-size: 1.02rem; opacity: .95; max-width: 620px; margin: 0 auto 30px; }
.btn {
  display: inline-block; padding: 13px 34px; border-radius: 30px;
  font-size: 1rem; letter-spacing: .05em; font-weight: 600;
  transition: transform .2s, box-shadow .2s; cursor: pointer; border: none;
  font-family: inherit;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--maroon-dark); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(201,162,75,.45); }
.btn-outline { background: transparent; color: #fff; border: 2px solid var(--gold-light); margin-left: 12px; }
.btn-outline:hover { background: rgba(230,200,126,.15); }
.btn-whatsapp { background: var(--green); color: #fff; }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(37,211,102,.4); }
.btn-maroon { background: var(--maroon); color: #fff; }
.btn-maroon:hover { background: var(--maroon-dark); transform: translateY(-2px); }

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  margin-top: var(--nav-h);
  padding: 70px 24px 54px;
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  color: #fff; text-align: center;
}
.page-banner h1 { font-size: 2.3rem; letter-spacing: .08em; margin-bottom: 8px; }
.page-banner p { color: var(--gold-light); font-style: italic; }
.page-banner .logo-small { height: 64px; margin: 0 auto 12px; }

/* ---------- Sections ---------- */
section { max-width: 1180px; margin: 0 auto; padding: 70px 24px 20px; }
section h2 {
  text-align: center; font-size: 1.9rem; color: var(--maroon);
  letter-spacing: .05em; margin-bottom: 6px;
}
.section-sub { text-align: center; color: var(--muted); font-style: italic; margin-bottom: 42px; }
.divider {
  width: 80px; height: 3px; margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: none;
}

/* ---------- Product cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 30px; }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 14px 34px rgba(94,18,36,.16); }
.card .card-img { aspect-ratio: 2/3; overflow: hidden; }
.card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 22px 24px 26px; text-align: center; }
.card-body h3 { color: var(--maroon); font-size: 1.25rem; letter-spacing: .04em; margin-bottom: 4px; }
.card-body .arabic { color: var(--gold); font-size: 1.05rem; margin-bottom: 8px; }
.card-body p.desc { color: var(--muted); font-size: .94rem; margin-bottom: 14px; min-height: 3.2em; }
.price { font-size: 1.3rem; font-weight: 700; color: var(--maroon); margin-bottom: 16px; }
.price small { display: block; font-size: .8rem; color: var(--muted); font-weight: 400; }
.card-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.card-actions .btn { padding: 10px 20px; font-size: .9rem; }

/* ---------- 5-angle viewer ---------- */
.angle-viewer {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; margin-bottom: 46px;
  display: grid; grid-template-columns: 1.2fr 1fr;
}
.angle-main { background: #f3ece1; position: relative; }
.angle-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 2/3; }
.angle-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(94,18,36,.88); color: var(--gold-light);
  padding: 6px 14px; border-radius: 20px; font-size: .82rem; letter-spacing: .05em;
}
.angle-side { padding: 28px; display: flex; flex-direction: column; }
.angle-side h3 { color: var(--maroon); font-size: 1.4rem; margin-bottom: 2px; }
.angle-side .arabic { color: var(--gold); margin-bottom: 8px; }
.angle-side .price { text-align: left; margin-bottom: 6px; }
.angle-side p { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: auto; }
.thumbs button {
  border: 2px solid var(--border); border-radius: 8px; overflow: hidden;
  padding: 0; cursor: pointer; background: none; transition: border-color .2s, transform .2s;
}
.thumbs button img { width: 100%; aspect-ratio: 2/3; object-fit: cover; }
.thumbs button.active { border-color: var(--gold); transform: scale(1.04); }
.thumb-labels { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 6px; }
.thumb-labels span { font-size: .68rem; text-align: center; color: var(--muted); letter-spacing: .02em; }

/* ---------- Feature strip ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.feature {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 26px 22px; text-align: center;
}
.feature .icon { font-size: 2rem; margin-bottom: 10px; }
.feature h4 { color: var(--maroon); margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: .9rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.about-grid img { border-radius: 14px; box-shadow: 0 14px 34px rgba(94,18,36,.18); }
.about-text h3 { color: var(--maroon); font-size: 1.4rem; margin-bottom: 12px; }
.about-text p { color: var(--muted); margin-bottom: 14px; }
.about-text .highlight { color: var(--maroon); font-weight: 600; }
.credit-box {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  color: #fff; border-radius: 14px; padding: 34px;
  text-align: center; margin-top: 50px;
}
.credit-box h3 { color: var(--gold-light); letter-spacing: .06em; margin-bottom: 8px; }
.credit-box p { opacity: .92; }
.credit-box .big { font-size: 1.3rem; color: var(--gold-light); font-weight: 700; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.contact-info .info-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 22px; margin-bottom: 16px;
}
.contact-info .info-item .icon { font-size: 1.6rem; }
.contact-info .info-item h4 { color: var(--maroon); margin-bottom: 2px; }
.contact-info .info-item p { color: var(--muted); font-size: .95rem; }
.contact-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 30px;
}
.contact-form label { display: block; font-size: .9rem; font-weight: 600; color: var(--maroon); margin: 14px 0 6px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 11px 13px; border: 1px solid var(--border);
  border-radius: 8px; font-size: .95rem; font-family: inherit; background: #fffdf9;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,.18);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form button { margin-top: 18px; width: 100%; }
#form-status { margin-top: 12px; text-align: center; font-size: .92rem; min-height: 1.4em; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(37,211,102,.45);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Footer ---------- */
footer {
  margin-top: 80px;
  background: var(--maroon-dark); color: #e9d9c8;
  padding: 46px 24px 26px; text-align: center;
}
footer img { height: 56px; margin: 0 auto 14px; }
footer .foot-links { display: flex; gap: 22px; justify-content: center; margin-bottom: 16px; flex-wrap: wrap; }
footer .foot-links a { font-size: .92rem; opacity: .85; }
footer .foot-links a:hover { color: var(--gold-light); opacity: 1; }
footer .foot-note { font-size: .85rem; opacity: .7; }
footer .foot-credit { font-size: .85rem; color: var(--gold-light); margin-top: 6px; }

/* ---------- Mobile ---------- */
@media (max-width: 860px) {
  .angle-viewer { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); right: 0; left: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--cream); box-shadow: 0 10px 20px rgba(94,18,36,.12);
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
  }
  .nav-links.open { max-height: 340px; }
  .nav-links li { padding: 13px 24px; border-top: 1px solid var(--border); }
  .hero h1 { font-size: 1.9rem; }
  .hero img.hero-logo { height: 92px; }
  .btn-outline { margin-left: 0; margin-top: 10px; }
}
