/* ============================================================
   HELORAH – Women & Kids Fashion Lounge
   style.css — Premium Luxury Fashion Boutique
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --black:        #111111;
  --gold:         #E50057;
  --gold-light:   #ff2d76;
  --gold-dark:    #c4004c;
  --ivory:        #FAF8F4;
  --beige:        #EFE6DD;
  --beige-dark:   #e0d4c8;
  --white:        #ffffff;
  --text-dark:    #1a1a1a;
  --text-muted:   #6b6b6b;
  --text-light:   #9a9a9a;

  --font-serif:   'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:    'Poppins', 'Manrope', sans-serif;

  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --shadow:       0 8px 40px rgba(0,0,0,0.08);
  --shadow-md:    0 16px 60px rgba(0,0,0,0.12);
  --shadow-gold:  0 8px 30px rgba(229,0,87,0.25);
  --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s 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;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--ivory);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }

/* ---------- Loading Screen ---------- */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-sub {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(200,169,106,0.6);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 6px;
}
.loader-bar {
  width: 120px;
  height: 1px;
  background: rgba(200,169,106,0.2);
  margin-top: 28px;
  overflow: hidden;
  border-radius: 2px;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  animation: loaderFill 1.8s ease forwards;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}
@keyframes loaderFill {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* ---------- Scroll Reveal Utility ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Section Base ---------- */
section { width: 100%; position: relative; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

/* ---------- Section Labels & Headings ---------- */
.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

.section-title span { color: var(--gold); }

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-top: 14px;
  line-height: 1.8;
}

.title-center { text-align: center; }
.title-center .section-subtitle { margin-left: auto; margin-right: auto; }

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 20px;
}
.gold-line.center { margin-left: auto; margin-right: auto; background: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(229,0,87,0.4);
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #1eb857;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.45);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.75rem;
}

/* ---------- NAVIGATION ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 22px 0;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-logo span {
  color: var(--gold);
}
#navbar.scrolled .nav-logo { color: var(--black); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  position: relative;
  transition: var(--transition);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-menu a:hover::after { width: 100%; }
.nav-menu a:hover { color: var(--gold); }

#navbar.scrolled .nav-menu a { color: var(--text-dark); }
#navbar.scrolled .nav-menu a:hover { color: var(--gold); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-wa-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-wa-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--black); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  transform: translateX(100%);
  transition: var(--transition-slow);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.08em;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
}
.mobile-close:hover { color: var(--gold); transform: rotate(90deg); }

/* ---------- HERO SECTION ---------- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero/hero-1.png');
  background-size: cover;
  background-position: center top;
  opacity: 0.55;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,17,17,0.75) 0%,
    rgba(17,17,17,0.35) 60%,
    rgba(200,169,106,0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border: 1px solid rgba(200,169,106,0.5);
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  animation: fadeDown 1s ease 0.2s both;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  animation: fadeUp 1s ease 0.4s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin: 22px 0 40px;
  max-width: 520px;
  animation: fadeUp 1s ease 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.8s both;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s ease 1.2s both;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s ease infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

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

/* ---------- MARQUEE STRIP ---------- */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 30px;
}
.marquee-track span::before {
  content: '✦';
  margin-right: 30px;
  opacity: 0.6;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- ABOUT SECTION ---------- */
#about {
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  height: 580px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img-main img {
  height: 100%;
  transition: transform 0.8s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-badge-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 28px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border-top: 3px solid var(--gold);
}
.about-badge-card .big-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-badge-card p {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.value-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--beige);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.value-chip:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
.value-chip i {
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition);
}
.value-chip:hover i { color: var(--white); }
.value-chip span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: var(--transition);
}
.value-chip:hover span { color: var(--white); }

/* ---------- COLLECTIONS SECTION ---------- */
#collections {
  background: var(--beige);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.collection-card img {
  height: 100%;
  transition: transform 0.8s ease;
}
.collection-card:hover img { transform: scale(1.08); }

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.collection-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.collection-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.collection-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.collection-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}
.collection-card:hover .collection-btn {
  transform: translateY(0);
  opacity: 1;
}
.collection-btn i { transition: var(--transition); }
.collection-btn:hover i { transform: translateX(4px); }

/* ---------- WHY CHOOSE SECTION ---------- */
#why {
  background: var(--ivory);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--gold);
}
.why-icon i {
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}
.why-card:hover .why-icon i { color: var(--white); }

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---------- FEATURED LOOKS SECTION ---------- */
#featured {
  background: var(--black);
  padding: 100px 0;
}

#featured .section-title { color: var(--white); }
#featured .section-label { color: var(--gold); }
#featured .section-subtitle { color: rgba(255,255,255,0.55); }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.featured-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.featured-card:first-child {
  grid-column: span 2;
  height: 520px;
}
.featured-card:not(:first-child) {
  height: 380px;
}
.featured-card:nth-child(4) {
  grid-column: span 2;
  height: 380px;
}

.featured-card img {
  height: 100%;
  transition: transform 0.8s ease;
}
.featured-card:hover img { transform: scale(1.06); }

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17,17,17,0.8) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition);
}
.featured-card:hover .featured-overlay {
  background: linear-gradient(0deg, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.2) 70%);
}

.featured-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.featured-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

/* ---------- GALLERY SECTION ---------- */
#gallery {
  background: var(--beige);
}

.gallery-grid {
  columns: 3;
  column-gap: 20px;
  margin-top: 60px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i {
  font-size: 2rem;
  color: var(--white);
  transform: scale(0.8);
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay i { transform: scale(1); }

/* ---------- FASHION STORY SECTION ---------- */
#story {
  background: var(--ivory);
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 580px;
}

.story-image {
  position: relative;
  overflow: hidden;
}
.story-image img {
  height: 100%;
  object-position: center;
  transition: transform 0.8s ease;
}
.story-image:hover img { transform: scale(1.04); }

.story-content {
  background: var(--black);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-content .section-label { color: var(--gold); }
.story-content .section-title { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.8rem); }
.story-content .section-subtitle { color: rgba(255,255,255,0.6); max-width: 100%; margin-top: 20px; }

.story-quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  margin-top: 32px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  line-height: 1.7;
}

/* ---------- TESTIMONIALS SECTION ---------- */
#testimonials {
  background: var(--beige);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: 3.5rem;
  line-height: 0.8;
  color: var(--gold);
  font-family: Georgia, serif;
  margin-bottom: 16px;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars i {
  color: var(--gold);
  font-size: 0.8rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--black);
}
.author-location {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ---------- VISIT OUR STORE SECTION ---------- */
#store {
  background: var(--ivory);
}

.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.store-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 550px;
  box-shadow: var(--shadow-md);
}
.store-image-wrap img {
  height: 100%;
  transition: transform 0.8s ease;
}
.store-image-wrap:hover img { transform: scale(1.04); }

.store-info { padding-top: 20px; }

.store-detail {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--beige-dark);
}
.store-detail:first-child { border-top: 1px solid var(--beige-dark); }

.store-icon {
  width: 46px;
  height: 46px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.store-icon i {
  color: var(--gold);
  font-size: 1rem;
}

.store-detail-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.store-detail-value {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.store-detail-value a {
  color: var(--text-dark);
  transition: var(--transition);
}
.store-detail-value a:hover { color: var(--gold); }

.store-map {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  box-shadow: var(--shadow);
}
.store-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%);
  transition: var(--transition);
}
.store-map:hover iframe { filter: grayscale(0%); }

.store-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ---------- CONTACT SECTION ---------- */
#contact {
  background: var(--beige);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info { padding-top: 10px; }

.contact-highlight {
  margin-top: 36px;
}
.contact-highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--beige-dark);
}
.contact-highlight-item i {
  color: var(--gold);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}
.contact-highlight-item a {
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
}
.contact-highlight-item a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--ivory);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,169,106,0.1);
}
.form-group textarea {
  height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ---------- INSTAGRAM SECTION ---------- */
#instagram {
  background: var(--black);
  padding: 100px 0;
  text-align: center;
}

#instagram .section-label { color: var(--gold); }
#instagram .section-title { color: var(--white); }
#instagram .section-subtitle { color: rgba(255,255,255,0.5); margin: 14px auto 0; }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 50px 0 44px;
}

.insta-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.insta-item img {
  height: 100%;
  transition: transform 0.6s ease;
}
.insta-item:hover img { transform: scale(1.1); }

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,169,106,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay i {
  font-size: 1.4rem;
  color: var(--white);
}

.insta-handle {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  letter-spacing: 0.1em;
}

/* ---------- FOOTER ---------- */
#footer {
  background: #0a0a0a;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .footer-logo {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-top: 18px;
  max-width: 270px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
}
.footer-contact-item a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
  transition: var(--transition);
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}
.footer-copyright span { color: var(--gold); }

.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ---------- BACK TO TOP ---------- */
#backTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
#backTop.show {
  opacity: 1;
  transform: translateY(0);
}
#backTop:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 500;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  background: #1eb857;
  transform: scale(1.1);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid    { grid-template-columns: repeat(2, 1fr); }
  .featured-card:first-child { grid-column: span 2; }
  .featured-card:nth-child(4) { grid-column: span 1; }
  .instagram-grid   { grid-template-columns: repeat(4, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .contact-grid     { grid-template-columns: 1fr; gap: 40px; }
  .about-grid       { grid-template-columns: 1fr; gap: 50px; }
  .about-img-main   { height: 420px; }
  .story-grid       { grid-template-columns: 1fr; }
  .story-image      { height: 400px; }
  .story-content    { padding: 60px 48px; }
  .store-grid       { grid-template-columns: 1fr; gap: 40px; }
  .store-image-wrap { height: 380px; }
}

@media (max-width: 768px) {
  .section-pad   { padding: 70px 0; }
  .nav-menu      { display: none; }
  .nav-cta       { display: none; }
  .hamburger     { display: flex; }

  .collections-grid { grid-template-columns: 1fr; }
  .collection-card  { height: 380px; }
  .why-grid         { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .featured-grid    { grid-template-columns: 1fr; }
  .featured-card,
  .featured-card:first-child,
  .featured-card:nth-child(4) { grid-column: span 1; height: 300px; }
  .gallery-grid     { columns: 2; }
  .instagram-grid   { grid-template-columns: repeat(3, 1fr); }
  .footer-grid      { grid-template-columns: 1fr; gap: 36px; }
  .form-row         { grid-template-columns: 1fr; }
  .contact-form     { padding: 32px 24px; }
  .story-content    { padding: 48px 28px; }
  .hero-actions     { flex-direction: column; align-items: flex-start; }
  .about-badge-card { right: 0; bottom: -16px; }
  .about-values     { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid   { columns: 1; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .store-actions  { flex-direction: column; }
  .store-actions .btn { justify-content: center; }
  .form-actions   { flex-direction: column; }
  .form-actions .btn { justify-content: center; }
}

/* ---------- MOBILE BOTTOM NAV (mobile only) ---------- */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  max-width: 380px;
  background: #E50057;
  border-radius: 50px;
  padding: 0 32px;
  height: 62px;
  align-items: center;
  justify-content: space-between;
  z-index: 1001;
  box-shadow: 0 8px 32px rgba(229,0,87,0.45);
}

@media (max-width: 768px) {
  .mobile-bottom-nav { display: flex; }

  /* Extra bottom padding so footer content isn't hidden behind nav */
  body { padding-bottom: 90px; }

  /* Hide the floating WA and back-to-top on mobile — bottom nav covers them */
  .wa-float   { display: none; }
  #backTop    { bottom: 90px; right: 18px; width: 40px; height: 40px; font-size: 0.85rem; }
}

.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: all 0.25s ease;
  min-width: 60px;
}
.mob-nav-item i {
  font-size: 1.3rem;
}
.mob-nav-item span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mob-nav-item:hover,
.mob-nav-item:active {
  color: var(--white);
  transform: translateY(-2px);
}

/* Centre raised WhatsApp button */
.mob-nav-wa {
  width: 58px;
  height: 58px;
  background: #c4004c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.7rem;
  margin-top: -38px;
  border: 3px solid rgba(255,255,255,0.25);
  box-shadow: 0 6px 24px rgba(196,0,76,0.6);
  transition: all 0.25s ease;
  flex-shrink: 0;
  text-decoration: none;
}
.mob-nav-wa:hover {
  background: #E50057;
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 32px rgba(229,0,87,0.7);
}
